一、环境
1.1IDE IntelliJ IDEA 2020
1.2 SpringBoot 2.6.4
1.3 Thymeleaf 2.2.2
1.4 Hibernate 5.3.1.Final
1.5 Maven 3.6.3
二、设置方法
在application.yml中设置session的时长
server:
port: 9103 address: 192.168.3.170
servlet:
session:
timeout: 600
三、验证
在controller中找个action验证就好,代码如下
System.out.println(request.getSession().getMaxInactiveInterval());