当前位置:   article > 正文

Struts2获取request、session、application的三种方法_strtus2 获取applaction

strtus2 获取applaction

1、使用ActionContext访问Servlet API

      Struts2提供了一个ActionContext类,该类被称为Action上下文或者Action环境,Action可以通过该类来访问最常用的Servlet API。

①、getContext():静态方法,获取当前的ActionContext对象。

②、getSession():返回一个Map对象,该对象模拟了session作用域。

③、getApplication:返回一个Map对象,该对象模拟了Application作用域。

④、get(String key):对该方法传入“request”参数,即可返回一个Object对象,该对象模拟了request作用域。

⑤、getParameters():返回一个Map对象,该对象中保存了浏览器上传的参数。

特点:作用域都是由Action自己获取的,获取对象和使用对象的代码放在一个类中。

  1. public class UserAction extends ActionSupport {
  2. private User user;
  3. public User getUser() {
  4. return user;
  5. }
  6. public void setUser(User user) {
  7. this.user = user;
  8. }
  9. public String Login(){
  10. HttpServletRequest request =
  11. (HttpServletRequest) ActionContext.getContext().get("request");
  12. request.setAttribute("username", user.getUserName());
  1. //也可以转Map哦
  2. //Map<String,Object> request2 = 
  3. //    (Map<String, Object>) ActionContext.getContext().get("request");
  4.     //request2.put("username", user.getUserName());
  1. return "success";
  2. }
  3. }

2、以IoC的方式访问Servlet API

      Action类中只保留使用这些对象的代码,而获取对象的代码由Struts2来实现。

  1. public class UserAction extends ActionSupport implements RequestAware,SessionAware,ApplicationAware {
  2. private Map<String, Object> request;
  3. private Map<String, Object> session;
  4. private Map<String, Object> application;
  5. public void setApplication(Map application) {
  6. this.application = application;
  7. }
  8. public void setSession(Map session) {
  9. this.session = session;
  10. }
  11. public void setRequest(Map request) {
  12. this.request = request;
  13. }
  14. public String Login(){
  15. //转换成HttpServletRequest,根据需要来
  16. HttpServletRequest req=(HttpServletRequest)request;
  17. String name = req.getParameter("username");
  18. req.setAttribute("username", "张三");
  19. return "success";
  20. }
  21. }
        在上面代码中,Action实现了 RequestAware,SessionAware,ApplicationAware接口,这样Struts2就可以为Action注入request、session、application对象了。

以session为例,Struts2取得session对象,当UserAction被创建时,Struts2会判断UserAction是否实现了SessionAware接口,若实现,就会调用UserAction的setSession()

方法,并把session作为参数传入该方法。该方法的"this.session = session;"代码会把session保存为一个成员变量,这样就实现了session对象注入。


3、以耦合方式访问Servlet API

      即ServletActionContext类,这个类继承了ActionContext类,它提供了直接与Servlet相关对象访问的功能,它可以取得的对象有:
(1)javax.servlet.http.HttpServletRequest : HTTPservlet请求对象
(2)javax.servlet.http.HttpServletResponse : HTTPservlet相应对象
(3)javax.servlet.ServletContext : Servlet上下文信息
(4)javax.servlet.jsp.PageContext : Http页面上下文

ServletActionContext源码:

  1. package org.apache.struts2;
  2. import com.opensymphony.xwork2.ActionContext;
  3. import com.opensymphony.xwork2.util.ValueStack;
  4. import org.apache.struts2.dispatcher.mapper.ActionMapping;
  5. import javax.servlet.ServletContext;
  6. import javax.servlet.http.HttpServletRequest;
  7. import javax.servlet.http.HttpServletResponse;
  8. import javax.servlet.jsp.PageContext;
  9. import java.util.Map;
  10. /**
  11. * Web-specific context information for actions. This class subclasses <tt>ActionContext</tt> which
  12. * provides access to things like the action name, value stack, etc. This class adds access to
  13. * web objects like servlet parameters, request attributes and things like the HTTP session.
  14. */
  15. public class ServletActionContext extends ActionContext implements StrutsStatics {
  16. private static final long serialVersionUID = -666854718275106687L;
  17. public static final String STRUTS_VALUESTACK_KEY = "struts.valueStack";
  18. public static final String ACTION_MAPPING = "struts.actionMapping";
  19. @SuppressWarnings("unused")
  20. private ServletActionContext(Map context) {
  21. super(context);
  22. }
  23. /**
  24. * Gets the current action context
  25. *
  26. * @param req The request
  27. * @return The current action context
  28. */
  29. public static ActionContext getActionContext(HttpServletRequest req) {
  30. ValueStack vs = getValueStack(req);
  31. if (vs != null) {
  32. return new ActionContext(vs.getContext());
  33. } else {
  34. return null;
  35. }
  36. }
  37. /**
  38. * Gets the current value stack for this request
  39. *
  40. * @param req The request
  41. * @return The value stack
  42. */
  43. public static ValueStack getValueStack(HttpServletRequest req) {
  44. return (ValueStack) req.getAttribute(STRUTS_VALUESTACK_KEY);
  45. }
  46. /**
  47. * Gets the action mapping for this context
  48. *
  49. * @return The action mapping
  50. */
  51. public static ActionMapping getActionMapping() {
  52. return (ActionMapping) ActionContext.getContext().get(ACTION_MAPPING);
  53. }
  54. /**
  55. * Returns the HTTP page context.
  56. *
  57. * @return the HTTP page context.
  58. */
  59. public static PageContext getPageContext() {
  60. return (PageContext) ActionContext.getContext().get(PAGE_CONTEXT);
  61. }
  62. /**
  63. * Sets the HTTP servlet request object.
  64. *
  65. * @param request the HTTP servlet request object.
  66. */
  67. public static void setRequest(HttpServletRequest request) {
  68. ActionContext.getContext().put(HTTP_REQUEST, request);
  69. }
  70. /**
  71. * Gets the HTTP servlet request object.
  72. *
  73. * @return the HTTP servlet request object.
  74. */
  75. public static HttpServletRequest getRequest() {
  76. return (HttpServletRequest) ActionContext.getContext().get(HTTP_REQUEST);
  77. }
  78. /**
  79. * Sets the HTTP servlet response object.
  80. *
  81. * @param response the HTTP servlet response object.
  82. */
  83. public static void setResponse(HttpServletResponse response) {
  84. ActionContext.getContext().put(HTTP_RESPONSE, response);
  85. }
  86. /**
  87. * Gets the HTTP servlet response object.
  88. *
  89. * @return the HTTP servlet response object.
  90. */
  91. public static HttpServletResponse getResponse() {
  92. return (HttpServletResponse) ActionContext.getContext().get(HTTP_RESPONSE);
  93. }
  94. /**
  95. * Gets the servlet context.
  96. *
  97. * @return the servlet context.
  98. */
  99. public static ServletContext getServletContext() {
  100. return (ServletContext) ActionContext.getContext().get(SERVLET_CONTEXT);
  101. }
  102. /**
  103. * Sets the current servlet context object
  104. *
  105. * @param servletContext The servlet context to use
  106. */
  107. public static void setServletContext(ServletContext servletContext) {
  108. ActionContext.getContext().put(SERVLET_CONTEXT, servletContext);
  109. }
  110. }


eg:

  1. public class UserAction extends ActionSupport{
  2. private HttpServletRequest request;
  3. public String Login(){
  4. request = ServletActionContext.getRequest();//request的获得必须在具体的方法中实现  
  5. String name = request.getParameter("username");
  6. request.setAttribute("username", "张三");
  7. return "success";
  8. }
  9. }

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

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/149449?site
推荐阅读
相关标签
  

闽ICP备14008679号