如何在AuthenticationSuccessHandler中检索会话范围的bean?
作者:互联网
我有一个自定义AuthenticationSuccessHandler.
我想要做的是在onAuthenticationSuccess方法中设置一些会话数据.
要存储会话数据,我想使用会话范围的bean,它可以在任何控制器中正常工作.
但是如果我尝试在onAuthenticationSuccess方法中检索它,我会得到一个异常:
Error creating bean with name
‘scopedTarget.sessionData’: Scope
‘session’ is not active for the
current thread;
我的代码是:
WebApplicationContext context = WebApplicationContextUtils.getRequiredWebApplicationContext(request.getServletContext());
SessionData sessionData = context.getBean(SessionData.class);
有任何想法吗?
解决方法:
您可以尝试声明一个暴露实现会话范围所必需的状态的侦听器:
<listener>
<listener-class>
org.springframework.web.context.request.RequestContextListener
</listener-class>
</listener>
默认情况下,DispatcherServlet公开该状态,因此在请求进入DispatcherServlet之前它不可用(例如在Spring Security过滤器中).
标签:java,dependency-injection,spring-mvc,spring,session-scope 来源: https://codeday.me/bug/20190531/1188091.html