我已在faces-config中映射<message-bundle>
并且我的消息已加载(我可以使用https://stackoverflow.com/a/6272972/2037762加载它们)
根据定义https://javaserverfaces.java.net/nonav/docs/2.2/javadocs/index.html,如果我将面部消息插入上下文,那么它应该被翻译。
我在验证器中返回了消息
FacesMessage msg =
new FacesMessage("message_email_wrongFormat");
msg.setSeverity(FacesMessage.SEVERITY_ERROR);
throw new ValidatorException(msg);
但它没有本地化。
使用primefaces 5,JSF2.2