Re: WicketFilter without web.xml

2015-12-08 Thread Štefan Šimík
I can send you my configuration, that works in my project with Wicket 7.1 It really is empty - because all configuration information is contained in annotations above. import org.apache.wicket.protocol.http.WicketFilter; import javax.servlet.annotation.WebFilter; import javax.servlet.annotation

WicketFilter without web.xml

2015-12-08 Thread Tobias Soloschenko
Hi guys, I just wanted to ask if this approach is the one to go with if I don't use the web.xml (false): @WebFilter(displayName = "App", filterName = "app", urlPatterns = "/*", initParams = { @WebInitParam(name = "applicationClassName", value = "com.app.web.WebApplication") }) public class Wick