Action标签,顾名思义,是用来调用Action的标签,在JSP中页面中,可以具体指定某一命名空间中的某一Action。而标签的主体用于显示及渲染Actionr的处理结果。
action标签有如下几个属性:
1、id: 可选,作为该action的引用ID
2、name: 必填,调用action的名字
3、namespace: 可选,action所在的nqmespace
4、executeResult,可选,指定是否将action的处理结果页面包含到本页面。
5、ignoreContextParame: 可选,指定该页面的请求参数是否需要传入action.
1.actionTag.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
<title>Insert title here</title>
</head>
<body>
<s:action name="actionTags">
<h3>不包含结果页面</h3>
</s:action>
<s:action name="actionTags" executeResult="true" ignoreContextParams="true">
<h3>包含结果页面</h3>
</s:action>
<s:action name="actionTags" executeResult="true" ignoreContextParams="false">
<s:param name="name">"wangkecheng"</s:param>
<h3>包含结果页面</h3>
</s:action>
</body>
</html>
2.actionTagResult.jsp
<%@ page language="java" contentType="text/html; charset=utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<html>
<head>
</head>
<body>
<h4>actionTag结果页面</h4>
<s:property value="name"/>
</body>
</html>
3.ActionTag.java
public class ActionTags extends ActionSupport {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String execute() {
return SUCCESS;
}
}
4.struts.xml
<action name="actionTags" class = "test1.ActionTags">
<result name="success">/test1/actionTagResult.jsp</result>
</action>