1

我正在制作多语言网站,我在一个字段中使用 Validator。

验证后,我收到响应,err002, err003并且基于此错误,我将以消息格式显示相应的错误。所以我的计划如下。

我所拥有的是<h:message for="password">

我想做的是如下。

if (message is err002) {
    show message of err002 from the properties file.
    #{msg['err002']}
}
if (message is err003) {
    show message of err003 from the properties file.
    #{msg['err003']}
}

知道如何完成这项工作吗?

实际上我想要做的是用两种语言显示错误消息。我拥有的是会话 bean 中的语言代码,但我无法检查验证器中的语言代码。

任何想法/建议如何做到这一点都会很棒。


编辑 1

面孔-config.xml

<application>
    <locale-config>
        <default-locale>zh_CN</default-locale>
    </locale-config>
    <resource-bundle>
        <base-name>resources.welcome</base-name>
        <var>msg</var>
    </resource-bundle>
</application>

LanguageBean.java

@ManagedBean(name = "language")
@SessionScoped
public class LanguageBean implements Serializable {

我拥有的属性文件是

Welcome.propertieswelcome_zh_CN.properties

4

1 回答 1

3

您可以在验证器方法中轻松实现它。像这样使用它

@FacesValidator("passwordValidator")
public class PasswordValidator implements Validator {

    String err1, err2, err3;

    public PasswordValidator() {
        ResourceBundle bundle = ResourceBundle.getBundle("msg", FacesContext.getCurrentInstance().getViewRoot().getLocale());
        err1 = bundle.getString("err1");
        err2 = bundle.getString("err2");
        err3 = bundle.getString("err3");
    }

    public void validate(FacesContext context, UIComponent component, Object value) throws ValidatorException {
        String pass = (String) value;
        FacesMessage msg;
        if(/*some condition*/) {
            msg = new FacesMessage(err1);
        } else if(/*other condition*/) {
            msg = new FacesMessage(err2);
        } else {
            msg = new FacesMessage(err3);
        }
        if(msg != null) {
            throw new ValidatorException(msg);
        }
    }    
}

并在视图中使用它

<h:inputText id="password" validator="passwordValidator" .../>
<h:message for=password .../>
于 2013-02-16T11:28:01.740 回答