如何运行“Hello, world!”使用 WebSphere 和 Wicket?
我是 Wicket 初学者,我需要使用 WebSphere Application Server 7.0 开发 Wicket 应用程序。我搜索了 Stack Overflow 和 Google,找到了这些资源
- http://apache-wicket.1842946.n4.nabble.com/Wicket-and-Websphere-td1917050.html#a1917051
- https://cwiki.apache.org/confluence/display/WICKET/Websphere
但我不知道如何运行“Hello, world !” WebSphere 上的应用程序。谁能告诉我如何使用 Wicket 一步一步运行它?
例如,对于“添加一个名为 com.ibm.ws.webcontainer.invokefilterscompatibility
”的步骤,我将在哪里添加该属性?
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, using Wicket?
For example, for the step "Add a new property called com.ibm.ws.webcontainer.invokefilterscompatibility
," where will I add the property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 WAS 7.0 上生产了 Wicket 1.4,它工作得很好 - 除了一个例外。我必须使用 WicketServlet 而不是 WicketFilter。
请尝试以下操作:
web.xml 使用 Servlet 而不是 Filter。您提供的第二个链接包含有关如何操作的说明。
我不记得除此之外还需要做任何特别的事情。
注意:当我使用 Servlet 时,我不需要使用
com.ibm.ws.webcontainer.invokefilterscompatibility
属性。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:
web.xml
to use the Servlet instead of the Filter. The second link you provided contains instructions on how to do do.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.