f:执行导致异常的执行顺序

时间:2013-04-13 09:26:49

标签: jsf jsf-2 jstl facelets

我正在尝试在页面加载时运行f:event。 f:event与辅助bean函数init()相关联。 init()创建在toIndex函数中使用的会话对象getStatusList()。但我面临的问题是getStatusList()函数首先执行,因此无法找到toIndex会话对象,它给我一个空指针异常。永远不会调用init()函数。 StatusBean是会话范围的。

1)的XHTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui"
    xmlns:c="http://java.sun.com/jsp/jstl/core">
<f:view>
    <f:event type="postAddToView" listener="#{statusBean.init}" ></f:event>
</f:view>
<h:head></h:head>
<h:body>
    <c:forEach var="p" items="#{statusBean.statusList}"
                        varStatus="loop">
     //content
    </c:forEach>

</h:body>
</html>

2)支持豆

public class StatusBean  {

public List<Status> getStatusList() {
        FacesContext context = FacesContext.getCurrentInstance();
        HttpSession session = (HttpSession) context.getExternalContext()
                .getSession(true);
        User user = (User) session.getAttribute("userdet");
        Query query = em.createQuery("SELECT s FROM Status s WHERE s.email='"
                + user.getEmail() + "' ORDER BY s.timeMillis desc",
                Status.class);
        List<Status> results = query.getResultList();

        Collections.sort(results);
        int toIndex = (int) session.getAttribute("toIndex");
        List<Status> subList = results.subList(0, toIndex);
        return subList;

    }
public void init(ComponentSystemEvent event) {
        System.out.println("inside init");
        FacesContext context = FacesContext.getCurrentInstance();
        HttpSession session = (HttpSession) context.getExternalContext().getSession(true);
        int toIndex = 5;
        session.setAttribute("toIndex",toIndex);
    }


}

1 个答案:

答案 0 :(得分:1)

我认为,这里的问题是c:forEach。它是在构建视图时执行的(可能在触发事件之前)。尝试将其替换为ui:repeat。一般来说,c:forEach应该小心使用(如果有的话)和JSF,因为它有副作用。