如何将主页 url (/) 映射到 Struts 2 REST 操作

发布于 2024-12-01 15:42:13 字数 277 浏览 0 评论 0原文

我正在使用 Struts 2 和 REST 插件开发一个 Web 应用程序。我已经以 REST 风格开发了应用程序的所有基本功能:myapp.org/login、myapp.org/register、myapp.org/profile 等。现在我必须制作主页并将所有内容放在一起。我的问题是:有没有办法将应用程序的主(基)URL 映射到 REST 风格的任何 Action 类。我的意思是例如 myapp.org 映射到 Home 操作类,insted myapp.org/home 映射到 Home 操作类? 先感谢您。 此致, 拉希德

I am developing a web application using Struts 2 and REST plugin. I already developed all the basic functionality of the application in REST style: myapp.org/login, myapp.org/register, myapp.org/profile, etc. Now I have to make the home page and get everything together. My question is: Is there any way to map the home (base) URL of the application to any Action class in REST style. I mean for example myapp.org to map to Home action class, insted of myapp.org/home to map to the Home action class?
Thank you in advance.
Best regards,
Rashid

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

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

发布评论

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

评论(1

夏天碎花小短裙 2024-12-08 15:42:13

在 web.xml 中设置欢迎文件

<web-app /*stuff*/ >    
/*stuff*/
    <welcome-file-list>
       <welcome-file>home.action</welcome-file>
    </welcome-file-list>
</web-app>

Set the welcome file in web.xml

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