本文最后更新于 909 天前,其中的信息可能已经有所发展或是发生改变。
1.request
- 对应的接口:
javax.servlet.http.HttpServletRequest
- 概念:只在一次请求上(转发不算请求,因为转发是服务器端的行为)生效,当把信息返回给客户端,该对象就被摧毁
2.session
- 对应的接口 :
javax.servlet.http.HttpSession
- 概念:是服务器端的行为用于跟踪客户的状态,当用户去访问某个站点时,服务器端就会为客户产生一个sessionID,以cookie的方式返回给客户端,当客户的去访问该站点的其他服务时,就会带者当前sessionID一起发出请求,已识别是哪个用户,一个用户就好比一个session对象,互不干扰。
3.application
- 对应的接口 :
javax.servlet.ServletContext
- 概念:一个服务器就一个application对象,用户共享一个application,当服务器停止的时候application 被摧毁,(用于网站访问次数)
4.在Thymeleaf中的使用
代码语言:javascript复制 @RequestMapping("show3")
public String showInfo3(HttpServletRequest req){
req.setAttribute("request", "request");
req.getSession().setAttribute("session", "session");
req.getSession().getServletContext().setAttribute("applicationContext", "applicationContext");
return "index3";
}
代码语言:javascript复制 <span th:text="${#httpServletRequest.getAttribute('request')}"></span><br/>
<span th:text="${session.session}"></span><br/>
<span th:text="${application.applicationContext}"></span><br/>
- 效果
Post Views: 317