`

Struts2通配符映射

 
阅读更多

       struts2的关于method=“{1}"意思详解 
  <action   name= "Login_* "   method= "{1} "   class= "mailreader2.Login "> 
  中Login_*带*是什么意思?method= "{1} "带{}这个是什么意思? 
  ==================================================== 
  name= "Login_* " 
  代表这个action处理所有以Login_开头的请求 
  method= "{1} " 
  根据前面请求Login_methodname,调用action中的以methodname命名的方法 
  class= "mailreader2.Login " 
  action的类名称 
  如jsp文件中请求Login_validateUser的action名称,根据上面配置,调用action类mailreader2.Login类中方法validateUser() 
  又如: 
  对于Login_update请求,将会调用mailreader2.Login的update()方法。 
  它的用法同webwork中的!符号的作用,相当于是一个通配符。 
  +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
  struts2中的路径问题 
  注意:在jsp中”/”表示tomcat 服务器的根目录,在struts.xml配置文件中”/”表示webapp的根路径,即MyEclipse web项目中的WebRoot路径。 
  总结: 
  struts2中的路径问题是根据action的路径而不是jsp路径来确定,所以尽量不要使用相对路径 。 
  虽然可以用redirect方式解决,但redirect方式并非必要。 
  解决办法非常简单,统一使用绝对路径。 (在jsp中用request.getContextRoot方式来拿到webapp的路径) 
  或者使用myeclipse经常用的,指定basePath。 
  Action Method 
  配置: 
  

    <package name="user" extends="struts-default" namespace="/user"> 
  <action name="userAdd" class="com.bjsxt.struts2.user.action.UserAction" method="add"> 
  <result>/user_add_success.jsp</result> 
  </action> 
  <action name="user" class="com.bjsxt.struts2.user.action.UserAction"> 
  <result>/user_add_success.jsp</result> 
  </action> 
  </package>
  
  总结: 
  Action执行的时候并不一定要执行execute方法 
  1、可以在配置文件中配置Action的时候用method=来指定执行哪个方法(前者方法) 
  2、也可以在url地址中动态指定(动态方法调用DMI )(推荐)(后者方法) 
  <a href="<%=context %>/user/userAdd">添加用户 
  <br /> 
  <a href="<%=context %>/user/user!add">添加用户 
  <br /> 
  前者会产生太多的action,所以不推荐使用。(注:<% String context = request.getContextPath(); %>) 
  再给个案例,大概介绍!使用动态调用DMI的方法,即通过!+方法名的指定方法: 
  

 

UserAction.java 
  import com.opensymphony.xwork2.ActionContext; 
  import java.util.Map; 
  public class UserAction { 
  private String userName; 
  private String password; 
  public String getUserName() { 
  return userName; 
  } 
  public void setUserName(String userName) { 
  this.userName = userName; 
  } 
  public String getPassword() { 
  return password; 
  } 
  public void setPassword(String password) { 
  this.password = password; 
  } 
  public String execute(){ 
  if(!userName.equals("aa")||!password.equals("aa")){ 
  return "error"; 
  }else{ 
  Map session=(Map)ActionContext.getContext().getSession(); 
  session.put("userName", userName); 
  return "success"; 
  } 
  } 
  public String loginOther(){ 
  if(!userName.equals("bb")||!password.equals("bb")){ 
  return "error"; 
  }else{ 
  Map session=(Map)ActionContext.getContext().getSession(); 
  session.put("userName", userName); 
  return "success"; 
  } 
  } 
  } 

 
  struts.xml

 
  <?xml version="1.0" encoding="UTF-8"?> 
  <!DOCTYPE struts PUBLIC 
  "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" 
  " http://struts.apache.org/dtds/struts-2.0.dtd"> 
  <struts> 
  <package name="default" extends="struts-default"> 
  <action name="struts" class="org.action.StrutsAction"> 
  <result name="success">/welcome.jsp</result> 
  <result name="error">/hello.jsp</result> 
  <result name="input">/hello.jsp</result> 
  </action> 
  <action name="user" class="org.action.UserAction"> 
  <result name="success">/login_welcome.jsp</result> 
  <result name="error">/login_error.jsp</result> 
  </action> 
  <action name="loginOther" class="org.action.UserAction" method="loginOther"> 
  <result name="success">/login_welcome.jsp</result> 
  <result name="error">/login_error.jsp</result> 
  </action>
  </package> 
  </struts> 

 
  login_welcome.jsp

 
  <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 
  <%@ taglib uri="/struts-tags" prefix="s" %> 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
  <html> 
  <head> 
  <title>欢迎</title> 
  <meta http-equiv="pragma" content="no-cache"> 
  <meta http-equiv="cache-control" content="no-cache"> 
  <meta http-equiv="expires" content="0"> 
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
  <meta http-equiv="description" content="This is my page"> 
  <!-- 
  <link rel="stylesheet" type="text/css" href="styles.css"> 
  --> 
  </head> 
  <body> 
  <s:set value="#session.userName" name="userName" /> 
  你好!<s:property value="#userName"/> 
  </body> 
  </html> 

 
  login_error.jsp 

  <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
  <html> 
  <head> 
  <title>登陆失败</title> 
  <meta http-equiv="pragma" content="no-cache"> 
  <meta http-equiv="cache-control" content="no-cache"> 
  <meta http-equiv="expires" content="0"> 
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
  <meta http-equiv="description" content="This is my page"> 
  <!-- 
  <link rel="stylesheet" type="text/css" href="styles.css"> 
  --> 
  </head> 
  <body> 
  很抱歉!你的登陆失败了!请重新<a href="login.jsp">登陆 
  </body> 
  </html> 

 
  login.jsp

 
  <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> 
  <%@ taglib uri="/struts-tags" prefix="s" %> 
  <% 
  String path = request.getContextPath(); 
  String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 
  %> 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
  <html> 
  <head> 
  <base href="<%=basePath%>"> 
  <title>struts 2应用</title> 
  <meta http-equiv="pragma" content="no-cache"> 
  <meta http-equiv="cache-control" content="no-cache"> 
  <meta http-equiv="expires" content="0"> 
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> 
  <meta http-equiv="description" content="This is my page"> 
  <!-- 
  <link rel="stylesheet" type="text/css" href="styles.css"> 
  --> 
  </head> 
  <body> 
   <s:form  action="user!loginOther" method="post"> 红色部分,你如果想调用userAction中的loginOther方法而不想调用execute方法, 直接通过 !+方法名即可,
     那你就不用再设置struts.xml中注释掉的部分了,这样可以不产生太多的action 
  <s:textfield name="userName" label="请输入姓名" ></s:textfield> <s:textfield name="password" label="请输入密码"></s:textfield> 
  <s:submit value="提交"></s:submit> 
  </s:form> 
  </body> 
  </html> 







 
  
  Action Wildcard(Action 通配符) 
  配置: 
  

    <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> 
  <!-- {0}_success.jsp --> 
  </action> 
  </package>

  
  {1}、{2}表示第一第二个占位符 
  *为通配符 
  通过action name的通配匹配,获得占位符,可以使用占位符放在result和method、class中替代匹配的字符。 
  总结: 
  使用通配符,将配置量降到最低。 
  <a href="<%=context %>/actions/Studentadd">添加学生 
  <a href="<%=context %>/actions/Studentdelete">删除学生 
  不过,一定要遵守"约定优于配置"的原则。 
  <a href="<%=context %>/actions/Teacher_add">添加老师 
  <a href="<%=context %>/actions/Teacher_delete">删除老师 
  <a href="<%=context %>/actions/Course_add">添加课程 
  <a href="<%=context %>/actions/Course_delete">删除课程 
  接收参数值 
  1、使用action属性接收参数 
  只需在action加入getter/setter方法,如参数name=a,接受到参数必须有getName/setName方法。 
  链接:<a href="user/user!add?name=a&age=8"> 
  

public class UserAction extends ActionSupport { 
  private String name; 
  private int age; 
  public String add() { 
  System.out.println("name=" + name); 
  System.out.println("age=" + age); 
  return SUCCESS; 
  } 
  public String getName() { 
  return name; 
  } 
  public void setName(String name) { 
  this.name = name; 
  } 
  public int getAge() { 
  return age; 
  } 
  public void setAge(int age) { 
  this.age = age; 
  } 
  } 

 
  2、使用Domain Model接收参数 
  将之前的属性放入到POJO ,并设置属性的setter/getter方法 
  链接:使用Domain Model接收参数<a href="user/user!add?user.name=a&user.age=8">添加用户 
  

public class UserAction extends ActionSupport { 
  private User user; 
  //private UserDTO userDTO; 
  public String add() { 
  System.out.println("name=" + user.getName()); 
  System.out.println("age=" + user.getAge()); 
  return SUCCESS; 
  } 
  public User getUser() { 
  return user; 
  } 
  public void setUser(User user) { 
  this.user = user; 
  } 
  } 
  public class User { 
  private String name; 
  private int age; 
  public String getName() { 
  return name; 
  } 
  public void setName(String name) { 
  this.name = name; 
  } 
  public int getAge() { 
  return age; 
  } 
  public void setAge(int age) { 
  this.age = age; 
  } 
  } 

 
  3、使用ModelDriven接收参数 
  Action实现ModelDriven接口,实现getModel()方法。 
  这样user需要自己new出来,getModel返回user。 
  链接:使用ModelDriven接收参数<a href="user/user!add?name=a&age=8">添加用户 
  

public class UserAction extends ActionSupport implements ModelDriven<User> { 
  private User user = new User(); 
  public String add() { 
  System.out.println("name=" + user.getName()); 
  System.out.println("age=" + user.getAge()); 
  return SUCCESS; 
  } 
  @Override 
  public User getModel() { 
  return user; 
  } 
  } 

 
  字符编码 
  配置: 
  <constant name="struts.i18n.encoding" value="GBK" /> <!-- internationalization --> 
  在struts2.1.6中不起作用,属于bug,在struts2.1.7中修改。 
  解决方案: 
  修改web.xml 中: 
  

<filter> 
  <filter-name>struts2</filter-name> 
  <!-- struts2.1中使用filter --> 
  <!--<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>--> 
  <!-- struts2.0中使用的filter --> 
  <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> 
  </filter> 

 
  ============================================================= 
  Struts2一个Action内包含多个请求处理方法的处理(三种方式) 
  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 结果导航字符串 
   *@throw***ception 
  */ 
  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时,将调用到UserAction类的regist方法

分享到:
评论

相关推荐

    Struts2_通配符映射

    ### Struts2 通配符映射创建步骤详解 #### 一、项目环境搭建与配置 根据提供的描述,本文将详细介绍如何实现Struts2中的通配符映射,并结合具体的步骤来阐述整个过程。 **第一步:创建动态Web工程** 1. **创建...

    struts2通配符示例代码

    Struts2的通配符映射允许我们使用星号(*)来匹配一个或多个字符,或者使用两个星号(**)来匹配任意数量的目录。这种机制使得我们可以定义更通用的Action配置,适用于多种类似的请求。 2. **通配符基本形式** - ...

    Struts2通配符

    本文主要介绍Struts2中的通配符配置,这是一种非常实用且灵活的方式来处理复杂的URL映射。 #### 二、Struts2中的Action配置 在Struts2中,`Action`是框架的核心组件之一,用于处理用户的请求。`Action`接口定义了...

    struts2 通配符配置

    在Struts2中,通配符配置是一项强大的功能,它允许开发者以更灵活的方式定义Action映射,从而提高代码的复用性和配置的简洁性。这篇博客可能详细解释了如何在Struts2框架中使用通配符配置来简化Action配置。 通配符...

    struts2通配符示例

    在Struts2中,通配符匹配功能是一个非常实用的特性,它允许我们使用一种相对灵活的方式来映射Action请求,从而简化配置并提高代码的可维护性。以下是对"struts2通配符示例"的详细解释: 1. **通配符匹配原理**: ...

    struts2利用通配符调用同一个Action里面不同的方法

    在Struts2中,Action是业务逻辑处理的核心,而通配符的使用则是Struts2框架中一种灵活的配置方式,允许我们以更简洁的方式调用同一个Action中的不同方法。下面我们将深入探讨如何利用Struts2的通配符来实现这一功能...

    Struts2 配置通配符和错误页面

    本篇将深入探讨如何配置Struts2中的通配符以及如何处理错误页面。 一、Struts2的通配符配置 在Struts2中,使用通配符可以简化配置,提高代码的可维护性和复用性。通配符允许我们定义一个模式来匹配多个Action配置...

    Struts2教学视频

    2. 配置web.xml文件,将Struts2的Filter映射到Web应用的请求上。 3. 创建Struts2的配置文件struts.xml,定义Action、包(package)、namespace等。 **三、Namespace** Namespace是Struts2中用于组织Action的一种方式...

    struts2一个action处理多个请求 struts2实例

    2. **使用通配符映射** Struts2支持使用通配符来映射多个请求。例如,`*`通配符可以匹配任何字符序列,所以我们可以这样配置: ```xml *" class="com.example.MyAction"&gt; &lt;result name="success"&gt;/success.jsp ...

    struts2动态调用之通配符

    本文将深入探讨Struts2中的动态调用之通配符特性。 首先,我们要理解在Struts2中,动态调用的基本概念。它允许我们不在配置文件中为每个Action的每一个method单独指定一个URL,而是通过某种约定或规则来映射多个...

    Struts2_入门篇_基本配置_通配符_参数注入_内置对象获取等。。。

    此外,Struts2还支持通过`@Param`注解来指定参数映射,使得参数注入更加灵活。 4. **内置对象获取**:Struts2提供了一系列内置对象,如`ActionContext`、`ValueStack`、`Session`等,开发者可以直接在Action类中...

    struts2的复习

    8. 结果映射:Struts2支持基于结果名称的映射,通过struts.properties文件或Action注解中的result元素定义,可以灵活地指定结果的URL。 9. 通配符匹配:Struts2允许使用通配符进行Action和结果的匹配,例如,`*.{...

    Struts2请求处理方法的处理

    通过以上分析可以看出,Struts2中的通配符映射提供了强大的路由机制,使得开发者能够更轻松地管理和扩展应用程序。同时,多个请求处理方法的设计模式也极大地提高了代码的可读性和可维护性。掌握这些技巧将有助于...

    struts2 路径问题

    4. **通配符映射**:Struts2支持使用通配符来映射Action,例如 `*` 和 `{1}`。通配符可以用于动态生成Action名,但不当使用可能会引起路径匹配混乱。 5. **插件和拦截器**:Struts2的插件和拦截器也会影响路径处理...

    struts2留存小demo

    8. **Action的通配符映射**:学习如何使用通配符来简化Action的URL映射。 通过不断地练习和调试这个小demo,你可以加深对Struts2的理解,提高开发效率,为实际项目开发打下坚实的基础。同时,这个小demo也可以作为...

    struts2课程笔记

    通配符和动态方法调用允许更复杂的Action映射,使得一个Action可以处理多种请求。类型转换功能自动将请求参数转换为Action字段的类型,简化了开发工作。文件上传功能则允许用户通过表单提交文件,Struts2提供了一套...

    Struts2_wang_Wildcard.rar_wildcard

    这个名为"Struts2_wang_Wildcard.rar_wildcard"的压缩包很可能是包含了一个示例项目,用于演示如何在Struts2中实现通配符映射。 首先,我们需要理解在Struts2中URL和Action之间的映射。默认情况下,URL与Action的...

    struts2配置文件

    Struts2是一个流行的Java ...总的来说,配置Struts2框架涉及导入必要的库文件,设置`web.xml`中的过滤器,以及编写`struts2.xml`来定义应用的行为和动作映射。理解这些配置对于有效地开发和维护Struts2应用至关重要。

    Struts2典型小实例源代码

    这里的`execute()`方法是Struts2默认调用的方法,而`method1()`和`method2()`是自定义的方法,它们通过`&lt;action&gt;`标签在struts.xml配置文件中进行映射。 接下来,配置文件`struts.xml`是Struts2的核心配置,它定义...

Global site tag (gtag.js) - Google Analytics