Java Web(5)-Servlet详解(上) (4)

这个是整个web都可以获取到这个值,通过ContextServlet2也是可以获取到的

public class ContextServlet2 extends HttpServlet { protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 由于context是域对象,整个web只有一个,所以这个获取的和ContextServlet1里的是同一个 ServletContext context = getServletContext(); // 只要ContextServlet1运行过,设置过这个值,那么这个就可以获取到值 System.out.println(context.getAttribute("key1")); //value1 } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzdzzx.html