如何在会话中获取所有初始化的托管bean?
以下代码每次都会使JVM崩溃。

FacesContext facesContext=FacesContext.getCurrentInstance();
com.sun.faces.application.ApplicationAssociate application =
ApplicationAssociate.getInstance(facesContext.getExternalContext());

最佳答案

你不能使用类似

 FacesContext context = FacesContext.getCurrentInstance();
 HttpSession session = (HttpSession) context.getExternalContext().getSession(true);
 Enumeration mySessionBeans = session.getAttributeNames();

关于java - 如何在 session 中获取所有初始化的托管bean?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10615416/

10-10 11:42