`

struts2如何获取页面参数

阅读更多
最近在复习struts2的知识。在做实验的时候遇到了“要获取从页面传递到action中的参数”的问题,在Google和Baidu之后,获得解决,并总结如下,以备自己和各位朋友查阅。
1. 将请求参数自动设置到字段中。可借助OGNL完成。
struts2对OGNL上下文的概念又做了进一步扩充,在struts2中,OGNL上下文通常如下所示:
                      |--request  
                      |  
                      |--application  
                      |  
        context map---|--OgnlValueStack(root) [ user, action, OgnlUtil, ... ]  
                      |  
                      |--session  
                      |  
                      |--attr  
                      |  
                      |--parameters  

2.在Action里直接获取请求(Request)或会话(Session)的一些信息。 在Struts2开发中,除了将请求参数自动设置到Action的字段中,我们往往也需要在Action里直接获取请求(Request)或会话 (Session)的一些信息,甚至需要直接对Servlet的HTTP请求(HttpServletRequest),响应(HttpServletResponse)操作. 我们需要在Action中取得request请求参数"username"的值:
// 获取页面传递的action参数
ActionContext actiobContext = ActionContext.getContext();
Map paramsMap = actiobContext.getParameters();
String[] attributes = (String[]) paramsMap.get("personId"); // 属性对应的是数组
......

在上面的代码中,ActionContext.getContext()方法的内部实现细节是借助于java.lang.ThreadLocal类来实现的:
static ThreadLocal actionContext = new ThreadLocal();
......
public static ActionContext getContext() {
     return (ActionContext) actionContext.get();

     // Don't do lazy context creation, as it requires container; the creation of which may
     // precede the context creation
     //if (context == null) {
     //    ValueStack vs = ValueStackFactory.getFactory().createValueStack();
     //    context = new ActionContext(vs.getContext());
     //    setContext(context);
     //}

}

ActionContext(com.opensymphony.xwork.ActionContext)是Action执行时的上下文,上下文可以看作是一个容器(其实我们这里的容器就是一个Map而已),它存放的是Action在执行时需要用到的对象。一般情况, 我们的ActionContext都是通过:
ActionContext context = (ActionContext) actionContext.get();
来获取的。我们再来看看这里的actionContext对象的创建:
static ThreadLocal actionContext = new ActionContextThreadLocal();

ActionContextThreadLocal是实现ThreadLocal的一个内部类.ThreadLocal可以命名为"线程局部变量",它为每一个使用该变量的线程都提供一个变量值的副本,使每一个线程都可以独立地改变自己的副本,而不会和其它线程的副本冲突.这样,我们 ActionContext里的属性只会在对应的当前请求线程中可见,从而保证它是线程安全的。
通过ActionContext取得HttpSession:
Map session = ActionContext.getContext().getSession();

3. 通过com.opensymphony.webwork.ServletActionContext类
这个类直接继承了我们上面介绍的ActionContext,它提供了直接与Servlet相关对象访问的功能,它可以取得的对象有:
  • javax.servlet.http.HttpServletRequest   //
  • javax.servlet.http.HttpServletResponse  //
  • javax.servlet.ServletContext            //Servlet上下文信息
  • javax.servlet.ServletConfig             //Servlet配置对象
  • javax.servlet.jsp.PageContext           //HTTP页面上下文
从ServletActionContext里取得Servlet的相关对象:
a.取得HttpServletRequest对象
HttpServletRequest request = ServletActionContext.getRequest();

b.取得HttpServletResponse对象
HttpServletResponse response = ServletActionContext.getResponse();

c.取得ServletContext对象 略。
d.获得ServletConfig对象。
ServletConfig servletConfig = ServletActionContext.getPageContext().getServletConfig();

e.获取PageContext对象。见d。

ServletActionContext 和 ActionContext联系
ServletActionContext和ActionContext有着一些重复的功能,在我们的Action中,该如何去抉择呢?我们遵循的原则是:如果ActionContext能够实现我们的功能,那最好就不要使用ServletActionContext,让我们的Action尽量不要直接去访问Servlet的相关对象。在使用ActionContext时有一点要注意: 不要在Action的构造函数里使用ActionContext.getContext(),因为这个时候ActionContext里的一些值也许没有设置,这时通过ActionContext取得的值也许是null;同样,HttpServletRequest req = ServletActionContext.getRequest()也不要放在构造函数中,也不要直接将req作为类变量给其赋值。至于原因,我想是因为前面讲到的static ThreadLocal actionContext = new ActionContextThreadLocal(),从这里我们可以看出ActionContext是线程安全的,而 ServletActionContext继承自ActionContext,所以ServletActionContext也线程安全,线程安全要求每个线程都独立进行,所以req的创建也要求独立进行,所以ServletActionContext.getRequest()这句话不要放在构造函数中,也不要直接放在类中,而应该放在每个具体的方法体中(eg:login()、queryAll()、insert()等),这样才能保证每次产生对象时独立的建立了一个req。

4.struts2的action中获得request、response、session 和 application
非IoC方式
方法一:使用org.apache.struts2.ActionContext类,通过它的静态方法getContext()获取当前Action的上下文对象。以下代码处在一个action的方法中。
ActionContext ctx = ActionContext.getContext();
ctx.put("liuwei", "andy"); //request.setAttribute("liuwei", "andy");
Map session = ctx.getSession(); //session

HttpServletRequest request = (HttpServletRequest) ctx.get(StrutsStatics.HTTP_REQUEST);
HttpServletResponse response = (HttpServletResponse) ctx.get(StrutsStatics.HTTP_RESPONSE);
// 或者
HttpServletRequest request = (HttpServletRequest) ctx.get(ServletActionContext.HTTP_REQUEST);
HttpServletResponse response = (HttpServletResponse) ctx.get(ServletActionContext.HTTP_RESPONSE);
// ServletActionContext.APPLICATION;
// ServletActionContext.SESSION;
// ServletActionContext.PAGE_CONTEXT; 

// 获取页面(传递)的参数
Enumeration parameterNames = request.getParameterNames();
while (parameterNames.hasMoreElements()) {
	String parameterName = (String) parameterNames.nextElement();
	System.out.println(" ---- " + parameterName);
}

ActionContext ctx = ActionContext.getContext();
ctx.put("liuwei", "andy"); //request.setAttribute("liuwei", "andy");
Map session = ctx.getSession(); //session

这里的session是个Map对象, 在Struts2中底层的session都被封装成了Map类型. 我们可以直接操作这个Map对象进行对session的写入和读取操作, 而不用去直接操作HttpSession对象.
方法二:使用org.apache.struts2.ServletActionContext类
import javax.servlet.http.HttpServletRequest;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class UserAction extends ActionSupport {

	private HttpServletRequest req; 
	
	// 这条语句放在这个位置是错误的,同样把这条语句放在构造方法中也是错误的。
	// private HttpServletRequest req = ServletActionContext.getRequest(); 
	
	public String login() {
        req = ServletActionContext.getRequest(); //req的获得必须在具体的方法中实现
        user = new User();
        user.setUserId(userId);
        user.setPassword(password);
        if (userDAO.isLogin(user)) {
            req.getSession().setAttribute("user", user);
            return SUCCESS;
        }
        return LOGIN;
    } 
	
	public String queryAll() {
        req = ServletActionContext.getRequest(); //req的获得必须在具体的方法中实现
        userList = userDAO.queryAll();
        req.getSession().setAttribute("uList", userList);
        return SUCCESS;
    } 
}

方法三:
import java.util.Map;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport {
	private Map request;
	private Map session;
	private Map application;

	public LoginAction() {
		this.request = (Map) ActionContext.getContext().get("request");
		this.session = ActionContext.getContext().getSession();
		this.application = ActionContext.getContext().getApplication();
	}

	public String execute() {
		this.request.put("r1", "r1");
		this.session.put("s1", "s1");
		this.application.put("a1", "a1");
		
		return SUCCESS;
	}
}

方法四:
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport {
	private HttpServletRequest request;
	private HttpSession session;
	private ServletContext application;

	public LoginAction() {
		request = ServletActionContext.getRequest();
		session = request.getSession();
		application = session.getServletContext();
	}

	public String execute() {
		request.setAttribute("r1", "r1");
		session.setAttribute("s1", "s1");
		application.setAttribute("a1", "a1");
		return SUCCESS;
	}
}

IoC方式(即使用Struts2 Aware拦截器)
要使用IoC方式,我们首先要告诉Struts2的IoC容器(Container)想取得某个对象的意愿,通过实现相应的接口做到这点。
方法一:
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import org.apache.struts2.interceptor.ApplicationAware;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;
import org.apache.struts2.interceptor.SessionAware;

public class UserAction implements SessionAware, ServletRequestAware, ServletResponseAware, ApplicationAware {
	
	private HttpServletRequest request;
    private HttpServletResponse response;
    private HttpSession session;
    private Map<String, Object> application;
		
	@Override
	public void setApplication(Map<String, Object> application) {
		this.application = application;
	}

	@Override
	public void setServletRequest(HttpServletRequest request) {
		this.request = request; 
	}

	@Override
	public void setServletResponse(HttpServletResponse response) {
		this.response = response; 
	} 
	
	@Override
	public void setSession(Map<String, Object> session) {
		/*this.session = (HttpSession) session;*/
		this.session = request.getSession(); 
	}
	
	public String login() {
		//
		// 此处使用request, response, session, application对象来获取相关的参数
		//
        
		// 业务代码
    } 
	
}


方法二:
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts2.interceptor.ApplicationAware;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware;
import org.apache.struts2.interceptor.SessionAware;

public class UserAction implements ServletRequestAware, ServletResponseAware, SessionAware, ApplicationAware {
	
	private Map<String, Object> request;
	private Map<String, Object> response;
	private Map<String, Object> session;
	private Map<String, Object> application;
		
	@Override
	public void setApplication(Map<String, Object> application) {
		this.application = application;
	}

	@Override
	public void setServletRequest(HttpServletRequest request) {
		this.request = (Map<String, Object>) request; 
	}

	@Override
	public void setServletResponse(HttpServletResponse response) {
		this.response = (Map<String, Object>) response; 
	} 
	
	@Override
	public void setSession(Map<String, Object> session) {
		/*this.session = (HttpSession) session;*/
		this.session = session; 
	}
	
	public String login() {
		//
		// 此处使用request, response, session, application对象来获取相关的参数
		//
        
		// 业务代码
    } 
	
	public String execute() {
		//
		request.put("r1", "r1");
		// 
		session.put("s1", "s1");
		//
		application.put("a1", "a1");
		
		return SUCCESS;
	}
	
}

方法三:
import javax.servlet.ServletContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;

import org.apache.struts2.interceptor.ServletRequestAware;

import com.opensymphony.xwork2.ActionSupport;

public class LoginAction extends ActionSupport implements ServletRequestAware {
	private HttpServletRequest request;
	private HttpSession session;
	private ServletContext application;
	
	@Override
	public void setServletRequest(HttpServletRequest request) {
		this.request = request;
		this.session = request.getSession();
		this.application = session.getServletContext();
	}

	public String execute() {
		request.setAttribute("r1", "r1");
		session.setAttribute("s1", "s1");
		application.setAttribute("a1", "a1");
		return SUCCESS;
	}
}



分享到:
评论
1 楼 chokee 2014-05-22  
      

相关推荐

    struts2获取参数,解决乱码,跳转

    以上就是关于Struts2获取参数、解决乱码以及页面跳转的基本知识。通过理解并掌握这些概念,你可以更有效地利用Struts2框架构建健壮的Web应用程序。在提供的压缩包文件`struts2-demo`中,你可以找到一个实际的Struts2...

    struts2 向结果传参数

    总的来说,Struts2提供了多种方式来向结果传递参数,这使得它在处理复杂的业务逻辑和页面跳转时具有高度的可定制性。根据项目的具体需求,选择合适的方法可以提高代码的可维护性和效率。在实践中,结合使用不同的...

    struts2 action跳转action传参数

    - `param1`和`param2`需要在action1中定义对应的getter和setter方法,以便能够获取到这些参数值。 - 如果只需要传递一个参数,那么在action1中只需定义该参数的getter方法,在action2中则需同时定义getter和setter...

    struts2参数配置

    - Struts2会自动根据`Action.LOCALE_KEY`获取当前用户的Locale,并应用于国际化消息的显示。 #### 五、Action Mapping - **ActionMapping**:定义了Action的映射关系,包括Action的名称、方法等信息。 - 默认使用`...

    struts2 使用action属性接收中文参数(post提交)

    在处理用户请求时,Struts2允许开发者通过Action类来接收和处理参数,包括中文参数。当我们需要通过POST方法提交包含中文字符的数据时,可能会遇到编码问题,因为HTTP请求默认使用的是ASCII编码,而中文字符需要UTF-...

    Struts2 Action参数详细说明

    在Struts2中,Action的配置和使用方式有多种,下面将详细介绍Struts2 Action参数的详细说明。 首先,我们来看Action的配置格式。在Struts2的配置文件(通常是struts.xml)中,Action的基本配置结构如下: ```xml ...

    Struts2中Action接收参数的方法

    Struts2 中 Action 接收参数的方法 Struts2 框架中,Action 组件可以通过多种方式接收参数,这些方式包括使用 Action 的属性、使用 DomainModel 和使用 ModelDriven。下面将详细介绍这些方法: 使用 Action 的属性...

    struts2 接收参数

    这篇博客文章可能深入探讨了Struts2如何在Action类中获取和管理这些参数。 首先,Struts2的核心是DispatcherServlet,它负责拦截所有的HTTP请求,并根据配置的拦截器栈来处理请求。在Struts2中,Action类是业务逻辑...

    Struts2接收参数

    在Struts2中,接收参数是一项基础且重要的功能,它允许开发者从HTTP请求中获取用户输入的数据,进而处理业务逻辑。这篇博客文章可能是关于如何在Struts2中有效地接收和处理这些参数的探讨。 首先,Struts2通过...

    Struts2表单数据获取项目

    在Struts2中,你可以直接在Action类中声明与表单字段相对应的属性,Struts2的自动数据绑定机制会将表单参数映射到这些属性。例如,如果表单有字段`name`和`email`,Action类可以如下所示: ```java public class ...

    struts2取到页面的值

    在Struts2框架中,获取页面表单提交的值是一个常见的需求,这涉及到Struts2如何解析请求参数、如何在Action类中访问这些参数以及如何处理复杂的对象模型。以下将详细解析Struits2中获取页面值的方法,包括基本类型...

    struts2中action接收参数的方式

    本篇文章将深入探讨Struts2中Action接收参数的多种方式,以及相关源码解析。 首先,最常见的接收参数方式是通过方法签名直接接收。例如,如果在JSP页面上有这样一个表单: ```jsp 提交" /&gt; ``` 对应的Action...

    struts1.x 和 struts2.x向Action里填充jsp参数原理

    6. 在Action类中,可以直接访问ActionForm中的属性,获取JSP页面传来的参数。 Struts2.x的工作原理: Struts2基于拦截器(Interceptor)模型,它的核心是StrutsPrepareAndExecuteFilter,这个过滤器负责拦截请求并...

    Struts2视频教程

    Struts2内置了对OGNL的支持,可以方便地在JSP页面中使用OGNL表达式获取模型数据。 - **标签库**:Struts2提供了丰富的标签库,可以帮助开发者快速构建表单和页面元素,提高开发效率。 - **拦截器**:拦截器是Struts2...

    留言板留言板struts2留言板struts2

    8. **表单处理**:Struts2提供了强大的表单处理能力,可以自动绑定请求参数到Action的属性,实现数据验证,并将错误信息回显到页面。 9. **异常处理**:Struts2通过全局异常映射(Global Exception Mapping)来统一...

    Struts2接口文档

    “Struts2.3.1.2_API.chm”文档包含了Struts2框架的详细API,其中涵盖了各个主要类和接口的解释、方法签名、参数说明以及返回值类型。开发者可以通过查阅此文档,快速查找特定功能的实现方式,例如ActionSupport类,...

    Struts2+Jquery+Ajax

    在Struts2框架下,我们可以使用Jquery的Ajax方法向服务器发送请求,获取JSON或XML数据,然后动态更新页面的部分内容。 在"06-mvc之struts2.ppt"中,可能涵盖了以下内容: 1. Struts2框架的基本概念和架构 2. 如何...

    struts2中action如何获取jsp页面参数1.rar

    本教程将详细介绍如何在Struts2的Action类中获取JSP页面传递的参数。 首先,理解Struts2的工作流程至关重要。当用户通过浏览器发送一个请求时,这个请求会由Struts2的前端控制器(DispatcherServlet)拦截。接着,...

    Struts2 Struts2 超好的Struts2 pdf 文档

    4. **结果类型(Result Types)**:Struts2支持多种结果类型,如`dispatcher`(默认,将结果转发到JSP页面)、`stream`(用于文件下载)、`redirect`(重定向URL)等,可以根据不同的需求选择合适的结果类型。...

    struts1和struts2的区别

    - **Struts1**: 使用标准的JSP页面作为视图层,页面上的数据显示主要依赖于JSP标签。 - **Struts2**: 引入了ValueStack的概念,这使得开发者可以在视图层直接访问Action中的数据。Struts2还支持多种视图技术,如...

Global site tag (gtag.js) - Google Analytics