如何将主URL(/)映射到Struts 2 REST Action

时间:2011-08-26 06:31:44

标签: url rest struts2 mapping action

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

1 个答案:

答案 0 :(得分:0)

在web.xml中设置欢迎文件

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