您的位置:首页 > 编程语言 > Java开发

Struts2 数据 标签 之 Action Tag

2011-06-13 14:05 316 查看
Action Tag



The action tag is a generic tag that is used to call actions directly from a JSP page by specifying the action name and an optional namespace. The body content of the tag is used to render the results from the Action. Any result processor defined for this action in struts.xml will be ignored, unless the executeResult parameter is specified.

Add the following code snippet into the struts.xml file.



struts.xml

<action name="actionTag" class="net.roseindia.actionTag">
<result name="success">/pages/genericTags/success.jsp</result>
</action>
Create an action class as shown below:

actionTag.java

package net.roseindia;
import com.opensymphony.xwork2.ActionSupport;

public class actionTag extends ActionSupport {
  public String execute() throws Exception{
  return SUCCESS;
  }
}
Now create a jsp page using
<s:action
>
tag as shown in the success.jsppage. The action tag is used to call actions directly from a JSP page by specifying the action name and an optional namespace.

success.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>

<html>
  <head>
  <title>Action Tag Example!</title>
  </head>
  <body>
  <h1><span style="background-color: #FFFFcc">Action Tag 
  (Data Tags) Example!</span></h1>
  <s:action name="success">
  <b><i>The action tag will execute the result and include 
  it in this page.</i></b></div>
  </s:action>
  </body>
</html>
Output of the success.jsp

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: