The instructions that I followed were here:
http://agilewombat.blogspot.com/2010/01/wicket-on-google-app-engine.htmlSnippet from that post below. Note how he creates his own RequestCycle that
enables modification watching when in DevelopmentMode:
class MyWebRequestCycle extends WebRequestCycle {
MyWebRequestCycle(final WebApplication application,
final WebRequest request, final Response response) {
super(application, request, response);
}
@Override
protected void onBeginRequest() {
if (getApplication().getConfigurationType().equals(Application.DEVELOPMENT))
{
final GaeModificationWatcher resourceWatcher =
(GaeModificationWatcher) getApplication()
.getResourceSettings().getResourceWatcher(true);
resourceWatcher.checkResources();
}
}
}
-Clint
On Thu, Oct 21, 2010 at 9:54 PM, Ernesto Reinaldo Barreiro <
[hidden email]> wrote:
> Is you have success and-or find some easier solution can you ports
> here? I will start using GAE on a regular basis soon...
>
> Ernesto
>
> On Thu, Oct 21, 2010 at 11:51 PM, EC <
[hidden email]> wrote:
> > What a hack. Those things should be simple. I will give it a try.
> >
> > On Thu, Oct 21, 2010 at 4:37 AM, Ernesto Reinaldo Barreiro <
> >
[hidden email]> wrote:
> >
> >> Maybe [1] contains some info?
> >>
> >> Ernesto
> >>
> >> 1-
http://kimenye.blogspot.com/2009/06/google-app-engine-wicket.html> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail:
[hidden email]
> For additional commands, e-mail:
[hidden email]
>
>