Vaadin Struts 重启问题

发布于 2024-10-12 11:28:49 字数 502 浏览 4 评论 0原文

每当控制器被击中时,我想重新启动 vaadin 应用程序。

<action path="/vaadinController"
      type="com.thomson.steam.steamadmin.action.VaadinController"
      scope="request">
      <forward name="createuser" path="/VaadinApplication/?restartApplication" />       
</action>

我将 ?restartApplication 传递给我的 VaadinApplication,但它无法通过 struts 工作。 如果我通过直接点击 url /VaadinApplication/?restartApplication 来执行,它可以正常工作并且应用程序正在重新启动。

谁能帮我解决这个问题。提前致谢

I want to restart the vaadin application whenever I got a hit to the controller.

<action path="/vaadinController"
      type="com.thomson.steam.steamadmin.action.VaadinController"
      scope="request">
      <forward name="createuser" path="/VaadinApplication/?restartApplication" />       
</action>

I am passing ?restartApplication to my VaadinApplication but it does not work through struts.
If I execute by directly hitting the url /VaadinApplication/?restartApplication it works fine and the application is getting restarted.

Can anyone help me out to solve this.Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光病人 2024-10-19 11:28:49

最后问题解决了。我在调用操作类本身时传递了参数,而不是在 struts-config.xml 文件中传递变量。现在工作正常。

/vaadinController?restartApplication

Finally the problem is resolved. Instead passing the variable in the struts-config.xml file I passed the parameter while invoking the action class itself.It works fine now.

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