我有一个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);