1.1. 动态方法调用:
DMI:Dynamic Method Invocation 动态方法调用。
动态方法调用是指:表单元素的action不直接等于某个Action的名字,而是以如下形式来指定对应的动作名:
则用户的请求将提交到名为”userOpt”的Action实例,Action实例将调用名为”login”方法来处理请求。同时login方法的签名也是跟execute()一样,即为public String login() throws Exception。
注意:要使用动态方法调用,必须设置Struts2允许动态方法调用,通过设置struts.enable.DynamicMethodInvocation常量来完成,该常量属性的默认值是true。
1.1.1. 示例:
修改用户登录验证示例,多增加一个注册用户功能。
1. 修改Action类:
package org.qiujy.web.struts2.action;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
/**
*@authorqiujy
*@version1.0
*/
publicclass LoginAction extends ActionSupport{
private String userName;
private String password;
private String msg; //结果信息属性
/**
*@returnthemsg
*/
public String getMsg() {
returnmsg;
}
/**
*@parammsgthemsgtoset
*/
publicvoid setMsg(String msg) {
this.msg = msg;
}
/**
*@returntheuserName
*/
public String getUserName() {
returnuserName;
}
/**
*@paramuserNametheuserNametoset
*/
publicvoid setUserName(String userName) {
this.userName = userName;
}
/**
*@returnthepassword
*/
public String getPassword() {
returnpassword;
}
/**
*@parampasswordthepasswordtoset
*/
publicvoid setPassword(String password) {
this.password = password;
}
/**
*处理用户请求的login()方法
*@return结果导航字符串
*@throwsException
*/
public String login() throws Exception{
if("test".equals(this.userName) && "test".equals(this.password)){
msg = "登录成功,欢迎" + this.userName;
//获取ActionContext实例,通过它来访问Servlet API
ActionContext context = ActionContext.getContext();
//看session中是否已经存放了用户名,如果存放了:说明已经登录了;
//否则说明是第一次登录成功
if(null != context.getSession().get("uName")){
msg = this.userName + ":你已经登录过了!!!";
}else{
context.getSession().put("uName", this.userName);
}
returnthis.SUCCESS;
}else{
msg = "登录失败,用户名或密码错";
returnthis.ERROR;
}
}
public String regist() throws Exception{
//将用户名,密码添加到数据库中
//...
msg = "注册成功。";
returnthis.SUCCESS;
}
}
2. struts.xml文件:没有什么变化,跟以前一样配置
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
3. 页面:
index.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
用户入口
用户名:
密码:
regist.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
用户注册
用户名:
密码:
1.2. 为Action配置method属性:
将Action类中的每一个处理方法都定义成一个逻辑Action方法。
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
如上,把LoginAction中的login和regist方法都配置成逻辑Action。要调用login方法,则相应的把index.jsp中表单元素的action设置为"manage/userLogin.action";要调用regist方法,把regist.jsp中表单元素的action设置为"manage/userRegist.action"。
1.3. 使用通配符映射(wildcard mappings)方式:
在struts.xml文件中配置
当我们使用通配符定义Action的name属性时,相当于用一个元素action定义了多个逻辑Action:
class="org.qiujy.web.struts2.action.UserAction" method="{1}">
如上,
========================
Struts 2 动态方法调用
1.在jsp中如何得到Action的属性:
(1).${requestScope.tip}
(2).ValueStack vs = (ValueStack)request.getAttribute("struts.valueStack");
vs.findValue("tip")
2.动态方法调用
动态方法调用是指,表单元素的action并不是直接等于某个Action的名字,而是以action='ActionName!methodName.action'来指定Form的属性.
Action里可以包含一个execute()方法和多个其它逻辑.
3.为action元素指定method属性
即是将一个Action处理类定义成多个逻辑Action,指定action的method属性,则可以让action类来调用不同的方法.
特点是只有一个action类,action类里有几个处理逻辑struts.xml里就包含着几个
缺点是多个action里定义的方法绝大部分相同,这种定义是相当冗余的.
4.使用通配符
在配置
当我们使用通配符定义Action的name属性时,就相当于一个元素action定义了多个逻辑Action.
(1).
只要URL是*Action.action的模式,都可以能过该Action类处理.
但该method属性使用了一个表达式{0},该表达式的值就是name属性值中的第一个*的值.
(2).
只要URL是*Action.action的模式,都能通过相应的ation类处理.
如:URL为registAction.action,则调用lee.registAction类的excute方法来处理