SpringBoot设置Session时长

 admin  2023-04-27 12:03:53  647  6  0

springboot1.png

​一、环境

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


image.png

三、验证

在controller中找个action验证就好,代码如下

System.out.println(request.getSession().getMaxInactiveInterval());

image.png


作者禁止了评论
评论内容