共计 3824 个字符,预计需要花费 10 分钟才能阅读完成。
一、ServletContext 概述
服务器会为每个应用创建一个 ServletContext 对象:
ServletContext 对象的创建是在服务器启动时完成的;
ServletContext 对象的销毁是在服务器关闭时完成的。
ServletContext 对象的作用 是在整个 Web 应用的动态资源之间共享数据!例如在 AServlet 中向 ServletContext 对象中保存一个值,然后在 BServlet 中就可以获取这个值,这就是共享数据了。
二、获取 ServletContext
ServletConfig#getServletContext();
GenericServlet#getServletContext();
HttpServlet#getServletContext()
ServletContextEvent#getServletContext()
在 Servlet 中获取 ServletContext 对象:
在 void init(ServletConfig config)中:
ServletContext context = config.getServletContext();
ServletConfig 类的 getServletContext()方法可以用来获取 ServletContext 对象;
public class MyServlet implements Servlet {public void init(ServletConfig config) {ServletContext context = config.getServletContext();
}
…
}
在 GenericeServlet 或 HttpServlet 中获取 ServletContext 对象:
GenericServlet 类有 getServletContext()方法,所以可以直接使用 this.getServletContext()来获取;
public class MyServlet extends HttpServlet {public void doGet(HttpServletRequest request,
HttpServletResponse response) {ServletContext context = this.getServletContext();}
}
三、域对象的功能
域对象就是用来在多个 Servlet 中传递数据!!!
域对象必须有要存数据功能
域对象必须要有取数据功能
域对象内部其实有一个 Map
ServletContext 是 JavaWeb 四大域对象之一:
PageContext;
ServletRequest;
HttpSession;
ServletContext;
所有域对象都有存取数据的功能,因为域对象内部有一个 Map,用来存储数据,下面是 ServletContext 对象用来操作数据的方法:
void setAttribute(String name, Object value)
用来存储一个对象,也可以称之为存储一个域属性,
例如:
servletContext.setAttribute(“xxx”,“XXX”)
在 ServletContext 中保存了一个域属性,域属性名称为 xxx,域属性的值为 XXX。请注意,如果多次调用该方法,并且使用相同的 name,那么会覆盖上一次的值,这一特性与 Map 相同;
Object getAttribute(String name)
用来获取 ServletContext 中的数据,当前在获取之前需要先去存储才行,
例如:
String value = (String)servletContext.getAttribute(“xxx”);,
获取名为 xxx 的域属性;
void removeAttribute(String name)
用来移除 ServletContext 中的域属性,如果参数 name 指定的域属性不存在,那么本方法什么都不做;
Enumeration getAttributeNames()
获取所有域属性的名称;
四、练习
用一个 Servlet 存值到 ServletContext 中,用另外一个 Servlet 取值
public class AServlet extends HttpServlet {private static final long serialVersionUID = 1L;
/**
* Default constructor.
*/
public AServlet() {// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {ServletContext context = getServletContext();
context.setAttribute("zhangsan", "18");
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {// TODO Auto-generated method stub
doGet(request, response);
}
}
public class BServlet extends HttpServlet {private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public BServlet() {super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {ServletContext context = getServletContext();
String value = (String) context.getAttribute("zhangsan");
System.out.println(value);
}
/**
* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
*/
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {// TODO Auto-generated method stub
doGet(request, response);
}
}
五、Servlet 参数概述
Servlet 也可以获取初始化参数,但它是局部的参数。
也就是说,一个 Servlet 只能获取自己的初始化参数,不能获取别人的,即初始化参数只为一个 Servlet 准备!
可以配置公共的初始化参数,为所有 Servlet 而用!但这需要使用 ServletContext 才能使用!
可以使用 ServletContext 来获取在 web.xml 文件中配置的应用初始化参数!
注意,应用初始化参数与 Servlet 初始化参数不同!
六、web.xml 中定义公共的初始化参数
<context-param>
<param-name>p1</param-name>
<param-value>v1</param-value>
</context-param>
<context-param>
<param-name>p2</param-name>
<param-value>v2</param-value>
</context-param>
七、程序中获取
ServletContext context = this.getServletContext();
String value1 = context.getInitParameter("p1");
String value2 = context.getInitParameter("p2");
System.out.println(value1 + "," + value2);
Enumeration names = context.getInitParameterNames();
while(names.hasMoreElements()) {System.out.println(names.nextElement());
}