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

struts2_4_为Action属性注入值

时间:2014-08-22 09:23:55      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:struts2   依赖注入   xml   

Struts2为Action中的属性提供了依赖注入功能,在struts2的配置文件中,可以为Action中的属性注入值,属性必须提供setter方法。

1employeeAction类:

public class employeeAction {
	private String savePath;

	public String getSavePath() {
		return savePath;
	}

	public void setSavePath(String savePath) {
		this.savePath = savePath;
	}

	public String execute() {
		return "success";
	}
}

2)struts.xml文件:

<?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>
	<package name="package" namespace="/test" 
  extends="struts-default">
		<action name="empl" class="struts.employeeAction" 
  method="execute">
  <!-- 为要注入值得属性注入值-->
			<param name="savePath">zhuRu</param>
			<result name="success">/index.jsp</result>
		</action>
	</package>
</struts>

3)index.jsp文件:

<body>
 	${savePath }
</body>




struts2_4_为Action属性注入值,布布扣,bubuko.com

struts2_4_为Action属性注入值

标签:struts2   依赖注入   xml   

原文地址:http://blog.csdn.net/u012963457/article/details/38750275

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