如何添加会话过期时间 - Grails 4.x

How to add session expire time - Grails 4.x

我在 application.yml 中添加了这部分,但它不起作用。

server:
   session:
      timeout: 3600  #seconds

你必须添加

server:
    servlet:
        session:
            timeout: 3600

而不是

server:
   session:
      timeout: 3600  #seconds