How to *not* handle a request

2014-11-29 Thread Stefan Renz
Hi, seems a simple thing to ask, but I can't seem to be able to find the solution: I have certain endpoints of Spring Boot (their actuator endpoints) that I want to make available under, say, /admin/manage/..., but I have a fronting wicket page mounted under /admin. I want to tell wicket *not*

Re: How to *not* handle a request

2014-11-29 Thread Martin Grigorov
Hi, See https://github.com/apache/wicket/blob/master/wicket-core/src/main/java/org/apache/wicket/protocol/http/WicketFilter.java#L802 I.e. you have to add init-paramparam-nameignorePaths/param-nameparam-valuemanage//param-value/init-param to WicketFilter in web.xml. Martin Grigorov Wicket

Re: How to *not* handle a request

2014-11-29 Thread Stefan Renz
Thanks, Martin. I knew there had to be a simple answer :-) Martin Grigorov schrieb: init-paramparam-nameignorePaths/param-nameparam-valuemanage//param-value/init-param to WicketFilter in web.xml. - To unsubscribe, e-mail: