Google Guice on Google Appengine: mapping with working _ah

后端 未结 4 942
孤独总比滥情好
孤独总比滥情好 2021-01-14 17:55

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:

<
4条回答
  •  时光说笑
    2021-01-14 18:48

    Just for reference, here is a way to do it with serveRegex

    serveRegex("/(?!_ah).*").with( WicketServlet.class, getWicketServletParams() );
    

提交回复
热议问题