Struts2访问servlet的三种方式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2访问servlet的三种方式相关的知识,希望对你有一定的参考价值。

第一种方式:使用ActionContext类实现

  1. //获取对象
  2. ActionContext context = ActionContext.getContext();
  3. //获取页面提交数据
  4. Map<String, Object> parameters = context.getParameters();
  5. //操作域对象相关的方法
  6. context.put(String,Object);//相当于HttpServletRequest的setAttribute方法
  7. context.getApplication();//返回一个Map对象,存取ServletContext属性
  8. context.getSession();//返回一个Map对象,存取HttpSession属性

第二种方式:在action里面实现不同的接口,得到servlet里面不同的对象

  1. ServletRequestAware
  2. ServletContextAware
  3. ServletResponseAware

第三种方式:使用ServletActionContext类

  1. HttpServletRequest request = ServletActionContext.getRequest();
  2. HttpServletResponse response = ServletActionContext.getResponse();





以上是关于Struts2访问servlet的三种方式的主要内容,如果未能解决你的问题,请参考以下文章

Action访问Servlet API的三种方法

4.Struts2中Action的三种访问方式

Struts2框架修改访问路径后缀的三种方式

Struts2框架修改访问路径后缀的三种方式

Servlet实现的三种方式

Servlet的三种实现方式