java – 将FacesContext注入spring bean

前端之家收集整理的这篇文章主要介绍了java – 将FacesContext注入spring bean前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个bean,我最近从一个托管bean转变为一个spring-bean.

一切都很好,直到某个时候调用以下方法

Exception e = (Exception) FacesContext.getCurrentInstance().getExternalContext().getSessionMap().get(
                    AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY);

事情发生了,因为FacesContext.getCurrentInstance()返回null.

是否可以将faces上下文注入我的bean?

最佳答案

is it possible to inject the faces context into my bean?

不确定,但在这种特殊情况下,它不需要. ExternalContext#getSessionMap()基本上是HttpSession属性的外观.到了这一点,你只需要以某种方式获取Spring bean中的HttpServletRequest然后在HttpServletRequest#getSession()之前从中获取HttpSession.然后你可以在HttpSession#getAttribute()之前访问会话属性.

我不做Spring,但Google告诉我你可以按如下方式获得它:

HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();

完成后,您可以这样做:

Exception e = (Exception) request.getSession().getAttribute(AbstractProcessingFilter.SPRING_SECURITY_LAST_EXCEPTION_KEY);
原文链接:https://www.f2er.com/spring/431383.html

猜你在找的Spring相关文章