servlet使用sessio和spring mvc中的controller使用session

Posted changemyworld

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet使用sessio和spring mvc中的controller使用session相关的知识,希望对你有一定的参考价值。

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

 

request.setCharacterEncoding("UTF-8");
response.setHeader("Content-type","text/html;charset=UTF-8");

HttpSession session = request.getSession(true);

session.setAttribute("rno",list.get(0));

}

 

 

protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception {

request.setCharacterEncoding("UTF-8");
response.setHeader("Content-type","text/html;charset=UTF-8");

HttpSession session = request.getSession(true);

String name = student.getSTUNAME();

session.setAttribute("name",name);

 

}

以上是关于servlet使用sessio和spring mvc中的controller使用session的主要内容,如果未能解决你的问题,请参考以下文章

正确使用有状态 Bean 和 Servlet

Spring MVC 配置文件dispatcher-servlet.xml 文件详解(转自 学无止境-yj)

Spring和Servlet结合

Spring - 使用 applicationContext.xml 和 XXXXX-servlet.xml

我们可以在 Spring Webflux 中使用 web servlet 和 servlet 过滤器吗?

我可以使用 REST Web 服务和 Spring Boot 将 servlet 中的应用程序转换为 Spring 吗?