当前位置: 代码迷 >> 综合 >> (06)Struts2_通过 ActionContext 获取 WEB 资源
  详细解决方案

(06)Struts2_通过 ActionContext 获取 WEB 资源

热度:40   发布时间:2023-12-14 05:20:56.0

在 Action 中访问 WEB 资源

什么是 WEB 资源 ?

  • HttpServletRequest, HttpSession, ServletContext 等原生的 Servlet API。

为什么访问 WEB 资源?

  • B\S 的应用的 Controller 中必然需要访问 WEB 资源: 向域对象中读写属性, 读写 Cookie, 获取 realPath ….

如何访问 ?

  • 和 Servlet API 解耦的方式: 只能访问有限的 Servlet API 对象, 且只能访问其有限的方法(读取请求参数, 读写域对象的属性, 使 session 失效…)
    • 使用 ActionContext
    • 实现 XxxAware 接口
    • 选用的建议: 若一个 Action 类中有多个 action 方法, 且多个方法都需要使用域对象的 Map 或 parameters, 则建议使用Aware 接口的方式
    • session 对应的 Map 实际上是 SessionMap 类型的! 强转后若调用其 invalidate() 方法, 可以使其 session 失效!
  • 和 Servlet API 耦合的方式: 可以访问更多的 Servlet API 对象, 且可以调用其原生的方法.
    • 使用 ServletActionContext
    • 实现 ServletXxxAware 接口.

为了避免与 Servlet API 耦合在一起, 方便 Action 做单元测试, Struts2 对HttpServletRequest, HttpSession 和 ServletContext 进行了封装, 构造了 3 个 Map 对象来替代这 3 个对象, 在 Action 中可以直接使用 HttpServletRequest, HttpServletSession, ServletContext 对应的 Map 对象来保存和读取数据.


需求

这里写图片描述

编码

这里写图片描述

web.xml

<!-- 配置Struts2的过滤器 --><filter><filter-name>struts2</filter-name><filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class></filter><filter-mapping><filter-name>struts2</filter-name><url-pattern>/*</url-pattern></filter-mapping>

struts.xml

    <package name="test" extends="struts-default" namespace="/"><action name="actionContext_test" class="com.qbz.struts2_03.ActionContextTest" method="test"><result name="success">/actionContext-test.jsp</result></action></package>

index.jsp

<body><a href="actionContext_test.action?name=qbz">Test ActionContext</a><% //对application 赋值 多次点击,后台打印日期不变,说明赋值成功if(application.getAttribute("date") == null)application.setAttribute("date", new Date()); %>
</body>

ActionContextTest.java

package com.qbz.struts2_03;import java.util.Map;import org.apache.struts2.dispatcher.SessionMap;import com.opensymphony.xwork2.ActionContext;public class ActionContextTest {public String test() {// 0. 获取 ActionContext 对象// ActionContext 是 Action 的上下文对象. 可以从中获取到当前 Action 需要的一切信息ActionContext actionContext = ActionContext.getContext();// 1. 获取 application 对应的 Map, 并向其中添加一个属性// 通过调用 ActionContext 对象的 getApplication() 方法来获取 application 对象的 Map 对象Map<String, Object> applicationMap = actionContext.getApplication();// 设置属性applicationMap.put("applicationKey", "applicationValue");// 获取属性Object date = applicationMap.get("date");System.out.println("date: " + date);// 2. sessionMap<String, Object> sessionMap = actionContext.getSession();sessionMap.put("sessionKey", "sessionValue");System.out.println(sessionMap.getClass());if (sessionMap instanceof SessionMap) {SessionMap sm = (SessionMap) sessionMap;sm.invalidate();System.out.println("session 失效了. ");}// 3. request*// ActionContext 中并没有提供 getRequest 方法来获取 request 对应的 Map// 需要手工调用 get() 方法, 传入 request 字符串来获取.Map<String, Object> requestMap = (Map<String, Object>) actionContext.get("request");requestMap.put("requestKey", "requestValue");// 4. 获取请求参数对应的 Map, 并获取指定的参数值.// 键: 请求参数的名字, 值: 请求参数的值对应的字符串数组// 注意: 1. getParameters 的返回值为在 Map<String, Object>, 而不是 Map<String,// String[]>// 2. parameters 这个 Map 只能读, 不能写入数据, 如果写入, 但不出错, 但也不起作用!Map<String, Object> parameters = actionContext.getParameters();System.out.println("parameters-name=:"+((String[]) parameters.get("name"))[0]);parameters.put("age", 100);return "success";}
}

actionContext-test.jsp

<body>application&nbsp;&nbsp;:&nbsp;&nbsp;${
    applicationScope.applicationKey }<br><br>session&nbsp;&nbsp;:&nbsp;&nbsp;${
    sessionScope.sessionKey }<br><br>request&nbsp;&nbsp;:&nbsp;&nbsp;${
    requestScope.requestKey }<br><br>age&nbsp;&nbsp;:&nbsp;&nbsp;${
    parameters.age }<br><br>
</body>

后台打印输出:

date: Thu Sep 01 22:16:33 CST 2016
class org.apache.struts2.dispatcher.SessionMap
session 失效了. 
parameters-name=:qbz

总结:

获取 ActionContext 对象:

ActionContext actionContext = ActionContext.getContext();

获取 application 对应的 Map:

Map<String, Object> applicationMap = actionContext.getApplication();

获取 session对应的 Map:

Map<String, Object> sessionMap = actionContext.getSession();

ActionContext 中手动传入 request 字符串来获取Request对应的Map

Map<String, Object> requestMap = (Map<String, Object>) actionContext.get("request");

获取请求参数对应的 Map

Map<String, Object> parameters = actionContext.getParameters();