码迷,mamicode.com
首页 > 其他好文 > 详细

Struts2 为Action 的属性注入值&& 处理请求后缀

时间:2014-12-13 21:42:40      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   使用   sp   java   

在Struts2中的配置文件中,我们可以很方面的为Action中的属性注入值。注意:属性必须提供set()若在页面中显示 必须提供get()

<action name="list" class="cn.itcast.action.UserAction" method="execute">
			<param name="savepath">/strutsDemo</param>
			<result name="success">/employee.jsp?username=${username}
                        </result>
</action>

 若对某action进行访问,默认使用.action后缀访问Action。其实默认后缀是可以通过常量“struts.action.extension”进行修改  我们可以配置Struts2只处理以.do为后缀的请求路径

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
    "http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.action.extension" value="do"/>
</struts>

 

如果用户需要指定多个请求后缀 ,则多个后缀之间以英文逗号【,】
隔开

<constant name="struts.action.extension" value="do,go"/>

 常量可以在struts.xml或struts.properties中配置,建议在struts.xml中配置,两证配置方式如下:
<struts>
<constant name="struts.action.extension" value="do,go,action"/>
<struts>

在struts.properties中配置常量
struts.action.extension=do

Struts2 为Action 的属性注入值&& 处理请求后缀

标签:style   blog   http   io   ar   color   使用   sp   java   

原文地址:http://www.cnblogs.com/lomomiao/p/4161833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!