首页 > 网站 > WEB开发 > 正文

Strust2学习之Action、Result知识要点

2024-04-27 15:13:12
字体:
来源:转载
供稿:网友
1.Action传递数据至jsp

发送:Action向前端传递数据的代码(共有四种方式,一般采用这一种):

package com.bjsxt.struts2.user.action;import java.util.Map;import org.apache.struts2.interceptor.applicationAware;import org.apache.struts2.interceptor.RequestAware;import org.apache.struts2.interceptor.sessionAware;import com.opensymphony.xwork2.ActionContext;import com.opensymphony.xwork2.ActionSupport;public class LoginAction2 extends ActionSupport implements RequestAware,SessionAware, ApplicationAware {		PRivate Map<String, Object> request;	private Map<String, Object> session;	private Map<String, Object> application;		//DI dependency injection	//IoC inverse of control	public String execute() {		request.put("r1", "r1");		session.put("s1", "s1");		application.put("a1", "a1");		return SUCCESS; 	}	@Override	public void setRequest(Map<String, Object> request) {		this.request = request;	}	@Override	public void setSession(Map<String, Object> session) {		this.session = session;	}	@Override	public void setApplication(Map<String, Object> application) {		this.application = application;	}		}

采用控制反转的方式,通过集合接收数据

 

接收:JSP接收数据(一般采用session接收):

<body>	User Login Success!	<br />	<s:property value="#request.r1"/> | <%=request.getAttribute("r1") %> <br />	<s:property value="#session.s1"/> | <%=session.getAttribute("s1") %> <br />	<s:property value="#application.a1"/> | <%=application.getAttribute("a1") %> <br />	<s:property value="#attr.a1"/><br />	<s:property value="#attr.s1"/><br />	<s:property value="#attr.r1"/><br />	<s:debug></s:debug>	<br /></body>

采用Strust2标签接收数据,其中<s:debug></s:debug>是struts2提供了一个非常好的调试方法.就是在页面上添加一个debug标签..它会自动帮我们将一些信息显示在页面上。

 

2.Strust.xml使用通配符来简化配置

<struts>    <constant name="struts.devMode" value="true" />    <package name="actions" extends="struts-default" namespace="/actions">        <action name="Student*" class="com.bjsxt.struts2.action.StudentAction" method="{1}">            <result>/Student{1}_success.jsp</result>        </action>                <action name="*_*" class="com.bjsxt.struts2.action.{1}Action" method="{2}">            <result>/{1}_{2}_success.jsp</result>        </action>    </package></struts>

 

3.简单数据校验,传递错误信息

使用this.addFieldError()方法将错误信息传递至前端:

public String add() {		if(name == null || !name.equals("admin")) {			this.addFieldError("name", "name is error");			this.addFieldError("name", "name is too long");			return ERROR;		} 		return SUCCESS;	}

 

前端采用标签接收错误信息:

<body>	User Add Error!	<s:fielderror fieldName="name" theme="simple"/>	<br />	<s:property value="errors.name[0]"/>	<s:debug></s:debug></body>

传递过来的errors是一个含有数组的集合,因此使用键值对取信息,再采用数组下标取值。

 

4.在Strust.xml中的一些常用配置的解释

默认的action是index,处理还会交给下面的index的action,一般可用于用户输入不存在的action时,页面跳转到指定页面(规范用户操作,界面友好):

<default-action-ref name="index"></default-action-ref>

 

strust的开发模式,默认值为false,改为true后一代更改文件配置不需重启tomcat就可生效:

<constant name="struts.devMode" value="true" />

PS:但论坛有用户反映,使用开发模式后,jQuery异常。可以测试,建立项目时建议关闭开发模式

 

5.Strust.xml中<result type="XXX">即跳转方式有四种:

 <action name="r1">	    	<result type="dispatcher">/r1.jsp</result>	    </action>	    	    <action name="r2">	    	<result type="redirect">/r2.jsp</result>	    </action>	    	    <action name="r3">	    	<result type="chain">r1</result>	    </action>	    	    <action name="r4">	    	<result type="redirectAction">r2</result>	    </action>

dispatcher是服务器跳转页面,redirect是客户端跳转页面,chain是服务器跳转到action,redirectAction是客户端跳转到action。

 

 

 

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表