我正在尝试将用户会话增加到60分钟。无法解决这个问题。与SpringBoot版本1.4.2和1.5.7相同的问题:始终默认为30分钟。
试图像这样更改models = [ModelA, ModelB, ModelC, ...]
for model in models:
swap_m2m(model, 'entities', cocacola_entity, coca_cola_entity)
:
application.properties
不工作。可能是因为我使用的是Spring JDBC会话(保存在DB中的会话)。
然后,当我启用JDBC HTTP Session时设置超时:
...
server.session.timeout=34444600 // very long time
...
请注意/**
* This Spring configuration is responsible for creating a Servlet
* Filter that replaces the HttpSession
* implementation with an implementation backed by Spring Session.
*/
@EnableJdbcHttpSession(maxInactiveIntervalInSeconds = 60000)
public class HttpSessionConfig {
// empty: nothing needed.
}
以上超时。这也不起作用。
如何增加会话超时?