如何运行“Hello, world!”使用 WebSphere 和 Wicket?

发布于 2024-10-13 20:29:55 字数 699 浏览 2 评论 0原文

我是 Wicket 初学者,我需要使用 WebSphere Application Server 7.0 开发 Wicket 应用程序。我搜索了 Stack Overflow 和 Google,找到了这些资源

但我不知道如何运行“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

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

悲欢浪云 2024-10-20 20:29:57

我在 WAS 7.0 上生产了 Wicket 1.4,它工作得很好 - 除了一个例外。我必须使用 WicketServlet 而不是 WicketFilter。

请尝试以下操作:

  1. 创建 Wicket Quickstart 项目
  2. 修改 web.xml 使用 Servlet 而不是 Filter。您提供的第二个链接包含有关如何操作的说明。
  3. 部署!

我不记得除此之外还需要做任何特别的事情。

注意:当我使用 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:

  1. Create a Wicket Quickstart project
  2. Modify the web.xml to use the Servlet instead of the Filter. The second link you provided contains instructions on how to do do.
  3. 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文