2

我有一个 jsf 应用程序,我在 @PostConstruct 方法中执行一些代码:

@PostConstruct
public void init() {
    try {
        // Do some form preparation
    } catch (Exception e) {
        try {
            FacesContext.getCurrentInstance().getExternalContext().dispatch("error.faces");
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }


}

我有这个error.xhtml:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:p="http://primefaces.org/ui" template="/templates/main.xhtml">
    <ui:define name="title">
        <title>#{msg['page.title']}</title>
    </ui:define>
    <ui:define name="body">
        #{msg['global.error']}
    </ui:define>
</ui:composition>

现在我希望“global.error”和“page.title”不作为资源包是静态的,而是应该在 post 构造中的某个地方传递我想要的消息,以便 error.xhtml 可以读取和显示,原因这就是应该从所有屏幕中引用此屏幕,因此搜索屏幕可以显示“搜索时出错”,另一个屏幕可以显示“获取数据时出错”或“您请求的用户在我们的系统中不存在”

4

1 回答 1

0

您可以使用#{flash}来实现您的功能:

@PostConstruct
public void init() {
    try {
        // Do some form preparation
    } catch (Exception e) {
        try {
            FacesContext.getCurrentInstance().getExternalContext().getFlash().put("title", "Custom title");
            FacesContext.getCurrentInstance().getExternalContext().getFlash().put("error", "Custom error description");
            FacesContext.getCurrentInstance().getExternalContext().dispatch("error.faces");
        } catch (IOException ex) {
            ex.printStackTrace();
        }
    }
}

有观点:

<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:p="http://primefaces.org/ui" template="/templates/main.xhtml">
    <ui:define name="title">
        <title>#{flash['title']}</title>
    </ui:define>
    <ui:define name="body">
        #{flash['error']}
    </ui:define>
</ui:composition>

这种方法在进行重定向时也可以使用。

或者,您也可以使用两个消息作为字段填充一个 bean,并将其作为请求属性附加,如果您正在执行转发,并在错误视图中以通常的方式访问它。

于 2013-06-02T10:58:21.970 回答