struts2实现Action零配置
方式一:现有这样的配置<packagename="oa"namespace="/"extends="default"><actionname="*_*"class="{1...
方式一:现有这样的配置
<package name="oa" namespace="/" extends="default">
<action name="*_*" class="{1}Action" method="{2}">
<result>/{1}/{2}.jsp</result>
</action>
</package>
访问方式为 localhost:8080/actionName_methodName.action
这样action名看起来不够好看。
------------------------------------------------------------------------
方式二:我现在想实现这样的访问方式,这样action看起来好看些
localhost:8080/actionName/methodName.action
<package name="notice" namespace="/notice" extends="default">
<action name="*" class="noticeAction" method="{1}">
<result>/notice/{1}.jsp</result>
</action>
</package>
<package name="product" namespace="/product" extends="default">
<action name="*" class="productAction" method="{1}">
<result>/product/{1}.jsp</result>
</action>
</package>
这样需要写很多的package和action配置,能通过什么方式少写package和action配置,实现方式一那样的配置 展开
<package name="oa" namespace="/" extends="default">
<action name="*_*" class="{1}Action" method="{2}">
<result>/{1}/{2}.jsp</result>
</action>
</package>
访问方式为 localhost:8080/actionName_methodName.action
这样action名看起来不够好看。
------------------------------------------------------------------------
方式二:我现在想实现这样的访问方式,这样action看起来好看些
localhost:8080/actionName/methodName.action
<package name="notice" namespace="/notice" extends="default">
<action name="*" class="noticeAction" method="{1}">
<result>/notice/{1}.jsp</result>
</action>
</package>
<package name="product" namespace="/product" extends="default">
<action name="*" class="productAction" method="{1}">
<result>/product/{1}.jsp</result>
</action>
</package>
这样需要写很多的package和action配置,能通过什么方式少写package和action配置,实现方式一那样的配置 展开
2个回答
展开全部
有2种方式可以实现!
1.建个空的jsp页面,页面内容
response.sendRedirect("/index!index.action"); 就这样一句话!
<welcome-file-list>
<welcome-file>这里就是你的jsp文件</welcome-file>
</welcome-file-list>
2.在WEB-ROOT下建个空文件文件名就是你的action的名字(像这样index!index.action作为文件名)
<welcome-file-list>
<welcome-file>index!index.action</welcome-file>
</welcome-file-list>
这样就能找到你的action了!
.do一样!楼主懂的
1.建个空的jsp页面,页面内容
response.sendRedirect("/index!index.action"); 就这样一句话!
<welcome-file-list>
<welcome-file>这里就是你的jsp文件</welcome-file>
</welcome-file-list>
2.在WEB-ROOT下建个空文件文件名就是你的action的名字(像这样index!index.action作为文件名)
<welcome-file-list>
<welcome-file>index!index.action</welcome-file>
</welcome-file-list>
这样就能找到你的action了!
.do一样!楼主懂的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询