博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
几个 Context 上下文的区别
阅读量:6310 次
发布时间:2019-06-22

本文共 7291 字,大约阅读时间需要 24 分钟。

转自:http://www.blogjava.net/fancydeepin/archive/2013/03/31/java-ee-context.html

 

在 java 中, 常见的 Context 有很多, 

 像: ServletContext, ActionContext, ServletActionContext, ApplicationContext, PageContext, SessionContext ...
 那么, Context 究竟是什么东西呢? 直译是上下文、环境的意思。比如像: "今天我收到了一束花, 男朋友送的!" 又或者 "今天我收到了一束花, 送花的人送错了的!"
 同样是收到一束花, 在不同的上下文环境中表达的意义是不一样的。
 同样的, Context 其实也是一样, 它离不开所在的上下文环境, 否则就是断章取义了。
 另外, 在网络上也有些人把 Context 看成是一些公用信息或者把它看做是一个容器的, 个人觉得这种解释稍好。
 接下来说说 ServletContext, ActionContext, ServletActionContext
 
 1> ServletContext
 一个 WEB 运用程序只有一个 ServletContext 实例, 它是在容器(包括 JBoss, Tomcat 等)完全启动 WEB 项目之前被创建, 生命周期伴随整个 WEB 运用。
 当在编写一个 Servlet 类的时候, 首先是要去继承一个抽象类 HttpServlet, 然后可以直接通过 getServletContext() 方法来获得 ServletContext 对象。
 这是因为 HttpServlet 类中实现了 ServletConfig 接口, 而 ServletConfig 接口中维护了一个 ServletContext 的对象的引用。
 利用 ServletContext 能够获得 WEB 运用的配置信息, 实现在多个 Servlet 之间共享数据等。
 eg:

1 
2 3
4
url
5
jdbc:oracle:thin:@localhost:1521:ORC
6
7
8
username
9
scott
10
11
12
password
13
tigger
14
15 16
17
ConnectionServlet
18
net.yeah.fancydeepin.servlet.ConnectionServlet
19
20
21
ConnectionServlet
22
/ConnectionServlet.action
23
24 25
26
PrepareConnectionServlet
27
net.yeah.fancydeepin.servlet.PrepareConnectionServlet
28
29
30
PrepareConnectionServlet
31
/PrepareConnectionServlet.action
32
33 34 35 36 37 38 39 package net.yeah.fancydeepin.servlet; 40 41 import java.io.IOException; 42 import javax.servlet.ServletContext; 43 import javax.servlet.ServletException; 44 import javax.servlet.http.HttpServlet; 45 import javax.servlet.http.HttpServletRequest; 46 import javax.servlet.http.HttpServletResponse; 47 48 public class PrepareConnectionServlet extends HttpServlet { 49 50 private static final long serialVersionUID = 1L; 51 52 public void init() throws ServletException { 53 54 ServletContext context = getServletContext(); 55 String url = context.getInitParameter("url"); 56 String username = context.getInitParameter("username"); 57 String password = context.getInitParameter("password"); 58 context.setAttribute("url", url); 59 context.setAttribute("username", username); 60 context.setAttribute("password", password); 61 } 62 63 protected void doGet(HttpServletRequest request,HttpServletResponse response)throws ServletException,IOException{ 64 65 doPost(request, response); 66 } 67 68 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { 69 70 response.sendRedirect("ConnectionServlet.action"); 71 } 72 } 73 74 75 76 77 78 package net.yeah.fancydeepin.servlet; 79 80 import java.io.IOException; 81 import javax.servlet.ServletContext; 82 import javax.servlet.ServletException; 83 import javax.servlet.ServletRequest; 84 import javax.servlet.ServletResponse; 85 import javax.servlet.http.HttpServlet; 86 87 public class ConnectionServlet extends HttpServlet { 88 89 private static final long serialVersionUID = 1L; 90 91 public void service(ServletRequest request, ServletResponse response) throws ServletException, IOException { 92 93 ServletContext context = getServletContext(); 94 System.out.println("***************************************"); 95 System.out.println("URL: " + context.getAttribute("url")); 96 System.out.println("Username: " + context.getAttribute("username")); 97 System.out.println("Password: " + context.getAttribute("password")); 98 System.out.println("***************************************"); 99 super.service(request, response);100 }101 }102 103 104 当访问 PrepareConnectionServlet.action 时, 后台打印输出:105 106 107 108 ***********************************************109 URL: jdbc:oracle:thin:@localhost:1521:ORC110 Username: scott111 Password: tigger112 ***********************************************

 

 2> ActionContext
 
 ActionContext 是当前 Action 执行时的上下文环境, ActionContext 中维护了一些与当前 Action 相关的对象的引用, 
 如: Parameters (参数), Session (会话), ValueStack (值栈), Locale (本地化信息) 等。
 
 在 Struts1 时期, Struts1 的 Action 与 Servlet API 和 JSP 技术的耦合度都很紧密, 属于一个侵入式框架:

  
1 public ActionForward execute(ActionMapping mapping,ActionForm form,HttpServletRequest request,HttpServletResponse response){2     // TODO Auto-generated method stub3     return null;4 }

   

 到了 Struts2 时期, Struts2 的体系结构与 Struts1 之间存在很大的不同。Struts2 在 Struts1 的基础上与 WebWork 进行了整合, 成为了一个全新的框架。
 在 Struts2 里面, 则是通过 WebWork 来将与 Servlet 相关的数据信息转换成了与 Servlet API 无关的对象, 即 ActionContext 对象。
 这样就使得了业务逻辑控制器能够与 Servlet API 分离开来。另外, 由于 Struts2 的 Action 是每一次用户请求都产生一个新的实例, 因此, 
 ActionContext 不存在线程安全问题, 可以放心使用。

  
1 package net.yeah.fancydeepin.action; 2  3 import java.util.Map; 4 import com.opensymphony.xwork2.ActionContext; 5 import com.opensymphony.xwork2.ActionSupport; 6 import com.opensymphony.xwork2.util.ValueStack; 7  8 public class ContextAction extends ActionSupport { 9 10     private static final long serialVersionUID = 1L;11     private String username;12     private String password;13 14     public String execute(){15         16         ActionContext context = ActionContext.getContext();17         ValueStack value = context.getValueStack();18         value.set("username", username);19         value.set("password", password);20         Map
session = context.getSession();21 session.put("url", "http://www.blogjava.net/fancydeepin");22 return SUCCESS;23 }24 25 public void setUsername(String username) {26 this.username = username;27 }28 29 public void setPassword(String password) {30 this.password = password;31 }32 }33 34 35 36 37 38
39
40

  

 当访问 context.action 并传给相应的参数的时候, 在浏览器中会输出相应的信息。

 留意到上面 Struts2 的 Action 中并有没添加属性的 getting 方法, 而是手动的将参数值放到值栈(ValueStack)中的, 否则页面是得不到参数来输出的。
 3> ServletActionContext
 首先, ServletActionContext 是 ActionContext 的一个子类。ServletActionContext 从名字上来看, 意味着它与 Servlet API 紧密耦合。

 ServletActionContext 的构造子是私有的, 主要是提供了一些静态的方法, 可以用来获取: ActionContext, ActionMapping, PageContext, 
 HttpServletRequest, HttpServletResponse, ServletContext, ValueStack, HttpSession 对象的引用。
 

1 public String execute(){ 2          3     //或 implements ServletRequestAware 4     HttpServletRequest request = ServletActionContext.getRequest(); 5     //或 implements ServletResponseAware 6     HttpServletResponse response = ServletActionContext.getResponse(); 7     //或 implements SessionAware 8     HttpSession session = request.getSession(); 9     //或 implements ServletContextAware10     ServletContext context = ServletActionContext.getServletContext();11         12     return SUCCESS;13 }

 

转载于:https://www.cnblogs.com/x_wukong/p/3646851.html

你可能感兴趣的文章
CATransform3D iOS动画特效详解
查看>>
Linux VNC黑屏(转)
查看>>
Java反射简介
查看>>
react脚手架应用以及iview安装
查看>>
shell学习之用户管理和文件属性
查看>>
day8--socket网络编程进阶
查看>>
node mysql模块写入中文字符时的乱码问题
查看>>
仍需"敬请期待"的微信沃卡
查看>>
分析Ajax爬取今日头条街拍美图
查看>>
内存分布简视图
查看>>
POJ 2918 求解数独
查看>>
如何学习虚拟现实技术vr? vr初级入门教程开始
查看>>
第4 章序列的应用
查看>>
Mysql explain
查看>>
初识闭包
查看>>
java tcp socket实例
查看>>
011 指针的算术运算
查看>>
hdu1874畅通工程续
查看>>
rails 字符串 转化为 html
查看>>
java-学习8
查看>>