3

好的,这是我的会话 bean。我总是可以从任何 Servlet 或过滤器中检索 currentUser。那不是问题 问题是fileList 和currentFile。我已经用简单的 int 和 Strings 进行了测试,它的效果相同。如果我从我的视图范围 bean 中设置一个值,我可以从另一个类中获取数据。

@ManagedBean(name = "userSessionBean")
@SessionScoped
public class UserSessionBean implements Serializable, HttpSessionBindingListener {

    final Logger logger = LoggerFactory.getLogger(UserSessionBean.class);

    @Inject
    private User currentUser;

    @EJB
    UserService userService;

    private List<File> fileList;   

    private File currentFile;

    public UserSessionBean() {

        fileList = new ArrayList<File>();
        currentFile = new File("");
    }

    @PostConstruct
    public void onLoad() {

        Principal principal = FacesContext.getCurrentInstance().getExternalContext().getUserPrincipal();
        String email = principal.getName();

        if (email != null) {
            currentUser = userService.findUserbyEmail(email);
        } else {

            logger.error("Couldn't find user information from login!");
        }
    }

这是一个例子。

我的视图范围 bean。这就是它的装饰方式。

 @ManagedBean
 @ViewScoped
 public class ViewLines implements Serializable {

    @Inject
    private UserSessionBean userSessionBean; 

现在是代码。

    userSessionBean.setCurrentFile(file);
    System.out.println("UserSessionBean : " + userSessionBean.getCurrentFile().getName());

我可以完美地看到当前文件名。这实际上是从 jsf 操作方法打印出来的。所以很明显 currentFile 正在被设置。

现在,如果我这样做。

@WebFilter(value = "/Download")
public class FileFilter implements Filter {

    @Override
    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException {        
        HttpSession session = ((HttpServletRequest) request).getSession(false);
        UserSessionBean userSessionBean = (UserSessionBean) session.getAttribute("userSessionBean");       

        System.out.println(userSessionBean.getCurrentUser().getUserId()); //works

        System.out.println("File filter" + userSessionBean.getCurrentFile().getName()); //doesn't work


        chain.doFilter(request, response);
    }

    @Override
    public void init(FilterConfig filterConfig) throws ServletException {
    }

    @Override
    public void destroy() {
    }
}

currentUser 显示正常,但我看不到文件。它只是空白。字符串、整数等也会发生同样的事情。

感谢您对此提供的任何帮助。

信息:UserSessionBean:第 3B 行--8531268875812004316.csv(从视图范围 bean 打印的值)

信息:文件过滤器 tester.csv(运行过滤器时打印的值。)

**编辑**

这行得通。

 FacesContext context = FacesContext.getCurrentInstance();
    userSessionBean = (UserSessionBean) context.getApplication().evaluateExpressionGet(context, "#{userSessionBean}", UserSessionBean.class);

我把它放在 ViewScoped 的构造函数中,一切都很好。现在为什么注入没有按照我的想法进行?起初我想可能是因为我使用的是 JSF 托管 bean 而不是新的 CDI bean。但是我将豆子改成了新的样式(带有命名),效果是一样的。

注入是否只允许您访问 bean 但不能更改它们的属性?

4

2 回答 2

5

您正在混合 JSF 和 CDI。你UserSessionBean是一个 JSF @ManagedBean,但你正在使用 CDI@Inject将它注入另一个 bean。CDI 不重用 JSF 托管的,而是创建一个全新的。使用其中之一,而不是两者。注入 JSF 管理的 bean 的正确注解是@ManagedProperty.

代替

@Inject
private UserSessionBean userSessionBean; 

经过

@ManagedProperty(value="#{userSessionBean}")
private UserSessionBean userSessionBean; 

并确保您的代码中没有import javax.enterprise.context任何地方(这是 CDI 注释的包)。

或者,将所有 JSF bean 管理注释迁移到 CDI bean 管理注释。

import javax.inject.Named;
import javax.enterprise.context.SessionScoped;

@Named
@SessionScoped
public class UserSessionBean implements Serializable {}

import javax.inject.Named;
import javax.faces.view.ViewScoped;

@Named
@ViewScoped
public class ViewLines implements Serializable {}

另一个优点是您可以将其仅@Inject放在常规 servlet 或过滤器中,而无需手动将其作为请求/会话/应用程序属性获取。

此外,自 JSF 2.3 起,JSF bean 管理注释已被弃用。另请参见支持 bean (@ManagedBean) 或 CDI Bean (@Named)?

于 2011-03-15T13:12:08.740 回答
0

关于为什么会发生这种情况,我最好的猜测是因为变量文件被设置在视图范围内,然后通过引用传递到会话范围的 bean 中。可能发生这种情况是因为当视图范围 bean 被销毁时,它仍然具有对该变量的引用,但不会费心查看会话范围内是否有任何其他对它的引用,应该保留它。因此,当它被销毁时,在这种情况下,它会从视图和会话范围中删除。

您可以尝试使用“new”实例化的对象调用 setCurrentFile 吗?这可能证明或反驳我的这个假设。

否则,我最好的建议是打开调试器,并查看 getCurrentFile 的确切更改位置。

于 2011-03-14T19:32:55.100 回答