Struts1提供了DispatchAction,从而允许一个Action内包含多个请求处理方法。Struts2也提供了类似的功能。处理方式主要有以下三种方式:
1.1. 动态方法调用:
DMI:Dynamic Method Invocation 动态方法调用。
动态方法调用是指:表单元素的action不直接等于某个Action的名字,而是以如下形式来指定对应的动作名:
<form method="post" action="userOpt!login.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文件:没有什么变化,跟以前一样配置
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="my" extends="struts-default" namespace="/manage">
<!-- 定义处理请求URL为login.action的Action -->
<action name="userOpt" class="org.qiujy.web.struts2.action.LoginAction">
<!-- 定义处理结果字符串和资源之间的映射关系 -->
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
3. 页面:
index.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
<title>用户登录页面</title>
</head>
<body>
<h2>用户入口</h2>
<hr>
<form action="manage/userOpt!login.action" method="post">
<table border="1">
<tr>
<td>用户名:</td>
<td><input type="text" name="userName"/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password"/></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value=" 确定 "/>
</td>
</tr>
</table>
</form>
</body>
</html>
regist.jsp
<%@ page language="java" pageEncoding="UTF-8"%>
<html>
<head>
<title>用户注册页面</title>
</head>
<body>
<h2>用户注册</h2>
<hr>
<form action="manage/userOpt!regist.action" method="post">
<table border="1">
<tr>
<td>用户名:</td>
<td><input type="text" name="userName"/></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="password"/></td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value=" 注册 "/>
</td>
</tr>
</table>
</form>
</body>
</html>
1.2. 为Action配置method属性:
将Action类中的每一个处理方法都定义成一个逻辑Action方法。
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="my" extends="struts-default" namespace="/manage">
<action name="userLogin" class="org.qiujy.web.struts2.action.LoginAction" method="login">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
<action name="userRegist" class="org.qiujy.web.struts2.action.LoginAction" method="regist">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
</package>
</struts>
如上,把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、class、method属性都可支持通配符,这种通配符的方式是另一种形式的动态方法调用。
当我们使用通配符定义Action的name属性时,相当于用一个元素action定义了多个逻辑Action:
<action name="user_*"
class="org.qiujy.web.struts2.action.UserAction" method="{1}">
<result name="success">/success.jsp</result>
<result name="error">/error.jsp</result>
</action>
如上,<action name=”user_*”>定义一系列请求URL是user_*.action模式的逻辑Action。同时method属性值为一个表达式{1},表示它的值是name属性值中第一个*的值。例如:用户请求URL为user_login.action时,将调用到UserAction类的login方法;用户请求URL为user_regist.action时,将调用到
分享到:
相关推荐
如果希望一个Action处理多个请求,可以在同一个`<action>`元素内添加多个`<result>`子元素,每个`<result>`对应一个不同的请求。例如: ```xml <action name="myAction" class="com.example.MyAction"> ...
在Struts2框架中,一个Action可以包含多个请求处理方法,这种设计模式极大地提升了代码的灵活性与可维护性。通过这种方式,开发人员可以根据不同的业务需求定义不同的处理逻辑,并且能够很好地组织这些逻辑,避免了...
4. **Action类设计**:Action类通常包含一个或多个业务方法,如`execute()`。这些方法可以处理特定的用户请求。为了实现多个Action,你可以创建多个类,每个类代表一个Action。 5. **拦截器(Interceptor)**:...
首先,一个Action类可以包含多个方法,每个方法对应一个特定的HTTP请求。这种多方法配置允许我们根据不同的请求路径来调用不同的业务处理方法。在Struts2的配置文件(通常为struts.xml或struts-default.xml)中,...
一个Action类通常包含一个或多个方法,每个方法对应一个特定的操作或业务逻辑。当用户发送请求时,Struts会根据配置文件(如struts.xml)中的映射规则,选择合适的Action类及其方法来执行。 **2. 多个类实例的含义*...
例如,可以为每个Service指定一个唯一的Category,这样Intent就能同时包含ACTION和Category,从而避免冲突。 2. **使用不同的ACTION**:最直接的方法是为每个Service定义一个唯一的ACTION,确保ACTION字符串不会...
一个Action类中,常常包含一个或多个方法,这些方法负责具体的业务逻辑处理,我们称这样的方法为Action方法。典型的Action方法特征包括:不接受任何参数、返回值为String类型,以及public访问修饰符。例如,在...
总之,“处理*.do的请求”涉及到Java Web开发中的Servlet映射、请求处理、框架集成以及源代码组织等多个方面。通过分析`web.xml`和`src`目录的内容,我们可以深入理解这个过程,并对Web应用的运行有更清晰的认识。
通过合并图片,我们可以将多个请求减少为一个。 2. 缓存利用:当用户访问过包含图片精灵的页面后,浏览器会缓存大图,下次访问时无需重新下载。 3. 加载速度提升:由于减少了网络往返次数,页面整体加载速度得以提升...
5. **ActionMapper决策**:如果ActionMapper判断需要调用某个Action,它将返回一个ActionMapping对象,包含Action的相关配置信息,如Action名称、命名空间和要执行的方法。 6. **创建ActionProxy**:基于...
- 创建一个继承自`DispatchAction`的类,并为其添加多个处理方法,这些方法可以根据不同的请求参数(例如`method`)被调用。 - 在JSP页面中使用`<s:form>`标签,并通过`<s:url>`设置`method`属性为具体的处理方法名...
在开发过程中,开发者可以根据需求创建多个Action类,每个类处理一种或几种特定的请求。通过struts-config.xml配置文件,我们可以将URL映射到对应的Action,实现URL和业务逻辑的对应关系。 为了便于理解和测试,...
在“moresubmit”这个压缩包文件中,可能包含了一个或多个示例代码,用于演示上述方法的实现。通过查看和学习这些代码,你可以更深入地理解如何在实际项目中运用多submit按钮处理逻辑。记得解压文件,查看HTML、CSS...
在本例中,`/test`路径会映射到一个特定的控制器(controller)的action方法,通常是`index`方法。控制器是处理业务逻辑的地方,可以在这里获取并处理请求参数,比如从请求头或查询字符串中获取数据。 在控制器的`...
这种配置展示了如何在一个Action处理后跳转到另一个Action,并继续处理同一份`form`对象。这里需要注意的是,在第一个Action中,表单验证成功后,会通过`forward`元素跳转到第二个Action处理类`somePackage....
在Struts2中,Action类是处理用户请求的核心组件,一个Action类可以包含多个方法,每个方法对应一个特定的业务逻辑。本资源提供了关于如何在Struts2中操作同一Action的不同方法并进行页面跳转的详细知识,下面将深入...
- **Action**:Action是业务逻辑的实现,它是一个Java类,通常包含多个方法,每个方法对应一个特定的操作。`execute`方法是核心,处理完业务逻辑后,返回一个表示结果的`ActionForward`对象。 - **ActionForm**:...
- ActionContext:在Struts2中,每个Action都有一个ActionContext对象,它包含了当前请求的所有信息,包括值栈。我们可以把数据放入ActionContext,然后在其他Action中通过ActionContext获取。 - ModelDriven:...
9. 一个Action内包含多个请求处理方法:在Struts2中,可以通过动态方法调用或配置method属性来实现一个Action类内包含多个请求处理方法。动态方法调用允许通过请求参数指定要调用的方法。 10. 处理结果:Struts通过...
2. Action方法:每个Action类可以包含多个Action方法,每个方法对应一个具体的业务操作。Action方法的命名没有硬性规定,但通常遵循一定的约定,比如使用动词+名词的形式,如`execute()`、`saveUser()`等。这些方法...