Struts2为Action的属性注入值

   Struts2Action中的属性提供了依赖注入功能,在struts2的配置文件中,我们可以很方便地为Action中的属性注入值。注意:属性必须提供setter方法。 

 

package cn.itcast.action;

public class HelloWorldAction {	
	private String savePath; 	

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

 

<struts>	
	<constant name="struts.devMode" value="true" />
	
	<package name="itcast" namespace="/test" extends="struts-default">
		<action name="hello" class="cn.itcast.action.HelloWorldAction" method="execute" >
			<param name="savePath">/image</param>
			<result name="success">/WEB-INF/page/hello.jsp</result>
		</action>	
	</package>	
</struts>

     上面通过<param>节点为action的savePath属性注入"/image",则在hello.jsp页面中通过el表达式${savePath }可以获取到savePath的值/image.

你可能感兴趣的:(struts2)