I am a Wicket beginner, and I need to develop a Wicket application using WebSphere Application Server 7.0. I've searched Stack Overflow and Google, and found these resources
- http://apache-wicket.1842946.n4.nabble.com/Wicket-and-Websphere-td1917050.html#a1917051
- https://cwiki.apache.org/confluence/display/WICKET/Websphere
but I can't figure out how to run a "Hello, world!" app on WebSphere. Can anyone tell me how to run one, step by step, usin开发者_如何学运维g Wicket?
For example, for the step "Add a new property called com.ibm.ws.webcontainer.invokefilterscompatibility
," where will I add the property?
I have Wicket 1.4 in production on WAS 7.0 and it works just fine - with one exception. I had to use the WicketServlet instead of the WicketFilter.
Try the following:
- Create a Wicket Quickstart project
- Modify the
web.xml
to use the Servlet instead of the Filter. The second link you provided contains instructions on how to do do. - Deploy!
I don't recall having to do anything special beyond that.
Note: As I use the Servlet, I have no need to use the com.ibm.ws.webcontainer.invokefilterscompatibility
property.
精彩评论