gpt4 book ai didi

java - Spring MVC 中 session 过期

转载 作者:行者123 更新时间:2023-12-01 05:37:35 25 4
gpt4 key购买 nike

如何处理 Spring MVC 中的 session 过期以及处理它的最佳位置是什么?在哪里可以指定 session 超时?如果您能通过一些例子向我展示,那就太好了。

最佳答案

对于 session 超时,我使用“普通”Servlet API。

在 web.xml 和方法 sessionCreated 中定义的自定义 javax.servlet.http.HttpSessionListener 在 session 上使用 setMaxInactiveInterval 设置超时(在 [ s])。

我知道这是“老派”,但很简单并且对我有用。

如果你想从spring获取超时值,可以从session访问ServletContext。

ApplicationContext applicationContext = WebApplicationContextUtils.getWebApplicationContext(session.getServletContext());
applicationContext.getBean("...");

关于java - Spring MVC 中 session 过期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7913640/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com