博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Servlet 如何实例化application或session
阅读量:5937 次
发布时间:2019-06-19

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

一、实例化application

public class ServletA extends HttpServlet {

public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

ServletContext application = this.getServletContext();  // //GenericServlet提供的方法,得到application

// 以 javax.servlet-api 2.5为例,request为请求实例:

//ServletContext application = request.getSession().getServletContext();

application.setAttribute("name",name);
application.getAttribute("name");

}

}

 

二、实例化session

public class ServletA extends HttpServlet {

public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

HttpSession session = request.getSession(); //实例化session

}

}

转载于:https://www.cnblogs.com/SHZX/p/8286956.html

你可能感兴趣的文章
Python 以指定概率获取元素
查看>>
微信公众平台图文教程(二) 群发功能和素材管理
查看>>
关于System.Collections空间
查看>>
MPP(大规模并行处理)
查看>>
Centos下基于Hadoop安装Spark(分布式)
查看>>
POJ2348 UVa10368 HDU1525 Euclid's Game【博弈】
查看>>
Java 位运算
查看>>
好用的CSS模块化打包工具CSS-COMBO
查看>>
python 中的字符和字符串
查看>>
C#Winform限制Textbox只能输入数字
查看>>
EL表达式经典用法
查看>>
java.lang.NoClassDefFoundError: javax/mail/Authenticator
查看>>
联想集团涨超7% 杨元庆持股比例升至8.12%
查看>>
各省光伏十三五规划汇总:总规模将超130GW
查看>>
Apache Storm 官方文档 —— 常用模式
查看>>
聊聊JVM的年轻代
查看>>
lvm逻辑卷管理
查看>>
VS2010不能断点/下断的问题
查看>>
[Android]权限处理
查看>>
Spark bind on port 0. Attempting port 1 问题解决
查看>>