Hi,

I am using wicket via tomcat integrated into spring using a filter with *

org*.*apache*.*wicket*.protocol.*http*.WicketFilter

The thing is that I want to map the wicket application to several url
patterns (to know which environment the user is coming from)



Is there a way to map the filter to several patterns? like the below which
does not work...

<filter-mapping>

<filter-name>WicketFilter</filter-name>

<url-pattern>/*a*/*</url-pattern>

</filter-mapping>

and

<filter-mapping>

<filter-name>WicketFilter</filter-name>

<url-pattern>/*b*/*</url-pattern>

</filter-mapping>

Reply via email to