struts2訪问servlet的API
1.struts作为控制器,正常非常多时候要訪问到servlet的API。经常使用功能:
(1).获取请求參数,控制界面跳转
(2).把共享数据存储于request,session,servletContext中,获取作用域中的数据
宏观的来说,应该有三种訪问方式。
2.第一种:实现接口,訪问Action时完毕注入
ServletContextAware
void setServletContext(javax.servlet.ServletContext context)
ServletRequestAware
void setServletRequest(javax.servlet.http.HttpServletRequest request)
ServletResponseAware
void setServletResponse(javax.servlet.http.HttpServletResponse response)
上述方式:Action和ServletAPI耦合太深了.
简单的演示样例代码:
package cn.wwh.www.web.servletapi; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.ServletResponseAware; import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionSupport; /**
*类的作用:
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014-8-16 上午07:54:05
*/
public class ParamAction1 extends ActionSupport implements ServletRequestAware,
ServletResponseAware { private static final long serialVersionUID = 1L;
private HttpServletRequest request;
private HttpServletResponse response; @Override
public String execute() throws Exception {
String name = request.getParameter("name");
String age = request.getParameter("age");
System.out.println("name:" + name);
System.out.println("age:" + age);
response.getWriter().write(name + "<br/>");
response.getWriter().write(age);
// 没有起到效果,非常奇怪
request.getRequestDispatcher("/views/servletapi/result.jsp").forward(
request, response);
return Action.NONE;
} public void setServletRequest(HttpServletRequest request) {
this.request = request;
} public void setServletResponse(HttpServletResponse response) {
this.response = response; } }
3.另外一种:使用ServletActionContext(开发中使用的非常多,由于简单,直观)ServletActionContext: 通过该类提供了ServletAPI的环境,能够获取到Servlet的API信息static PageContext getPageContext()static HttpServletRequest getRequest()static HttpServletResponse getResponse()static
ServletContext getServletContext()
该方案可避免Action类实现XxxAware接口。但Action依旧与Servlet API直接耦合可是该方式和ServletApi也有耦合.
简单的实例代码:
package cn.wwh.www.web.servletapi; import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession; import org.apache.struts2.ServletActionContext; import com.opensymphony.xwork2.ActionSupport; /**
*类的作用:
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014-8-16 上午09:09:02
*/
public class ParamAction2 extends ActionSupport { private static final long serialVersionUID = 1L;
public String execute() throws Exception { HttpServletRequest req = ServletActionContext.getRequest();
String name = ServletActionContext.getRequest().getParameter("name");
String age = ServletActionContext.getRequest().getParameter("age");
HttpSession session = req.getSession();
session.getServletContext();
System.out.println(name);
System.out.println(age);
HttpServletResponse resp = ServletActionContext.getResponse();
return NONE;
} }
4.第三种方式:使用ActionContext类(没有和ServletApi耦合,开发推荐使用方式)
Action的上下文,该类提供了Action存在的环境. 也就是说通过该类能够获取到Action相关的一切数据.
ActionContext
getContext() 返回ActionContext实例对象
get(key) 相当于 HttpServletRequest的getAttribute(String name)方法
put(String,Object) 相当于HttpServletRequest的setAttribute方法
getApplication() 返回一个Map对象,存取ServletContext属性
getSession() 返回一个Map对象,存取HttpSession属性
getParameters() 类似调用HttpServletRequest的getParameterMap()方法
setApplication(Map) 将该Map实例里key-value保存为ServletContext的属性名、属性值
setSession(Map) 将该Map实例里key-value保持为HttpSession的属性名、属性值
获取ActionContext对象: ActionContext context = ActionContext.getContext();
简单的演示样例代码:
package cn.wwh.www.web.servletapi; import java.lang.reflect.Array;
import java.util.Map; import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport; /**
*类的作用:
*
*
*@author 一叶扁舟
*@version 1.0
*@创建时间: 2014-8-16 上午09:31:42
*/
public class ParamAction3 extends ActionSupport { private static final long serialVersionUID = 1L; public String execute() throws Exception {
ActionContext ctx = ActionContext.getContext();
Map<String,Object> paramMap = ctx.getParameters();
System.out.println(paramMap); //去paramMap.get("name")数组中索引为0的元素值
System.out.println(Array.get(paramMap.get("name"), 0)); //往request设置共享数据
ctx.put("name", "一叶扁舟");//request.setAttribute(key,Object)
Object requestValue = ctx.get("name");
System.out.println(requestValue); //往Session设置共享数据
//Map<String,Object> getSession()
Map<String,Object> sessionMap = ctx.getSession();
sessionMap.put("sessionKey", "sessionValue"); //往ServletContext中设置共享数据
//.Map<String,Object> getContextMap()
Map<String,Object> contextMap= ctx.getContextMap();
contextMap.put("appKey", "appValue");
return SUCCESS;
} }
注意在jsp中读取数据为:
${requestScope.name}<br />
${sessionScope.sessionKey}<br />
${appKey}
5.通过ActionContext获取request、session、application解耦Map
(1) 对request域的操作
actionContext.put("name", "一叶扁舟") --> 相等与request.setAttribute("name", "一叶扁舟");
Object o = actionContext.get("name"); --> 等同与Object o = request.getAttribute("name");
(2).对session域的操作
Map<String,Object> sessionMap = ActionContext.getContext().getSession();
sessionMap.put("name", "一叶扁舟") --> 等同与session.setAttribute("name", "一叶扁舟");
Object o = sessionMap.get("name") --> 等同与Object o = session.getAttribute("name");
(3).对application域的操作
Map<String,Object> appMap = ActionContext.getContext().getApplication();
appMap.put("name", "一叶扁舟") --> 等同与servletContext.setAttribute("name", "一叶扁舟");
Object o = appMap.get("name") --> 等同与Object o = servletContext.getAttribute("name");
(4). 对请求參数的操作
Map<String,Object> paramMap = ActionContext.getContext().getParameters();
Object o = paramMap.get("username");
String[] values = (String[])o;
String username = values[0];
struts2訪问servlet的API的更多相关文章
- struts2中Action訪问servlet的两种方式
一.IoC方式 在struts2框架中,能够通过IoC方式将servlet对象注入到Action中.通常须要Action实现下面接口: a. ServletRequest ...
- Struts07---访问servlet的API
01.创建登录界面 <%@ page language="java" import="java.util.*" pageEncoding="UT ...
- Python 訪问 LinkedIn (API)
CODE: #!/usr/bin/python # -*- coding: utf-8 -*- ''' Created on 2014-8-16 @author: guaguastd @name: l ...
- Struts2(二)— Result结果配置、Servlet的API的访问、模型驱动、属性驱动
一.Result结果配置 1.全局和局部结果 平常我们设置跳转页面,是在action标签里面加上 result标签来控制,这种设置的页面跳转,称之为局部结果页面但是我们有时候在很多个action里 ...
- struts2学习笔记(3)---Action中訪问ServletAPI获取真实类型的Servlet元素
一.源码: struts.xml文件: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE s ...
- struts2学习笔记(2)---Action中訪问ServletAPI获取Map类型的Servlet元素
源码: strust.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts ...
- 在struts2中訪问servletAPI
在struts2中訪问servletAPI,通俗点也就是使用servlet中的两个对象request对象和response对象. 前几天看到一个CRM项目的源代码,里面使用request对象和resp ...
- Struts2中使用Servlet API步骤
Struts2中使用Servlet API步骤 Action类中声明request等对象 Map<String, Object> request; 获得ActionContext实例 Ac ...
- Struts2 Action与Servlet API耦合
单元测试在开发中是非常重要的一个环节程序员在写完代码时,相应的单元测试也应写完整,否则你的代码就是不能让人信服的Struts2将Action与Servlet的API进行解耦之后,就使得单元测试变得非常 ...
随机推荐
- BZOJ 3751: [NOIP2014]解方程 数学
3751: [NOIP2014]解方程 题目连接: http://www.lydsy.com/JudgeOnline/problem.php?id=3751 Description 已知多项式方程: ...
- Redis中文API地址
地址:http://redis.readthedocs.org/en/2.4/string.html
- BZOJ 1269: [AHOI2006]文本编辑器editor (splay tree)
1269: [AHOI2006]文本编辑器editor Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 1213 Solved: 454[Submit ...
- Tasker to create toggle widget for ES ftp service -- Send Intent
To perform this mission, Tap the tab "tasks" of Tasker, create a task as below.Task: (ES F ...
- linux系统编程:线程原语
线程原语 线程概念 线程(thread),有时被称为轻量级进程(Lightweight Process,LWP).是程序运行流的最小单元.一个标准的线程由线程ID.当前指令指针(PC),寄存器集合和堆 ...
- Big Number------HDOJ杭电1212(大数运算)
Problem Description As we know, Big Number is always troublesome. But it's really important in our A ...
- ie不支持max-height的解决之法
.div{ max-height: 100px; _height:expression(this.scrollHeight > 100 ? "100px" : "a ...
- struts2 iterator 迭代标签只显示前五条记录
<s:iterator value="#session.produceLists" var="produce" begin="0" e ...
- 在JTextField中监听回车键,并执行相应按钮
在jbInit() 中加入jTextField1的按键监听,代码如下: jTextField1.addKeyListener(new KeyAdapter(){ public voi ...
- Saving HDU hdu
话说上回讲到海东集团面临内外交困.公司的元老也仅仅剩下XHD夫妇二人了.显然.作为多年拼搏的商人,XHD不会坐以待毙的. 一天,当他正在苦思冥想解困良策的时候.突然想到了自己的传家宝,那是公司成立的时 ...