前面的文章有介绍如何在SpringBoot整合MVC,详见:https://blog.terrynow.com/2021/07/07/springboot-mvc-jsp-and-jstl-implment/
不过发现一个问题,就是每次SpringBoot程序重新启动后,当前登录的session就失效了,解决方案如下:
配置文件做如下修改(增加server.servlet.session.persistent=true):
application.properties
server.servlet.session.persistent=true
application.yml
server: servlet: session: timeout: 180m persistent: true
文章评论