I have a Google Appengine/Guice/Wicket Application. My problem is that due to the mapping I can't access the /_ah/admin Page anymore.
My Servlet Module says:
serve( "/*" ).with( WicketServlet.class, getWicketServletParams() );
so far it is more or less expected that accessing /_ah/admin gives a 404.
I problem is that I don't find a workaround.
I tried different combinations of serveRegex(), but even
serveRegex( "/.*" ).with( WicketServlet.class, getWicketServletParams() );
leads to problems, as the URL dispatching of Wicket gets broken. The application keeps on repeating the Path (e.g. /list becomes /list/list etc.).
Any ideas?