我正在尝试使用primefaces来改变Locale,这是我的bean代码:
// more imports here
@ManagedBean
@SessionScoped
public class DateBean implements Serializable{
private Date startDate, endDate;
private Locale locale = FacesContext.getCurrentInstance().getViewRoot().getLocale();
public void setLocale(Locale locale) {
this.locale = locale;
}
public Locale getLocale(){
return locale;
}
public void changeLocale(String loc){
FacesContext context = FacesContext.getCurrentInstance();
locale = new Locale(loc);
context.getViewRoot().setLocale(locale);
}
}
facelet:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!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:p="http://primefaces.org/ui"
xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core">
<f:view locale="#{dateBean.locale}">
<h:head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Insert title here</title>
<h:outputScript library="scripts" name="#{dateBean.locale}.js"></h:outputScript>
</h:head>
<h:body>
<h:form>
<p:commandButton value="de" action="#{dateBean.changeLocale('de')}" >
<p:ajax update="@form" process="@form"></p:ajax>
</p:commandButton>
<p:calendar id="cc" value="#{dateBean.startDate}" required="true" showOn="both"
requiredMessage="Start date required"/>
<p:message for="cc"></p:message>
</h:form>
</h:body>
</f:view>
</html>
当我点击区域设置按钮时,日历区域设置不会更改为deutsch,我也没有例外。 然而,使用旧的JSF2。* CommandButton组件以这种方式轻松完成此任务:
<h:commandButton value="portugal" action="#{dateBean.changeLocale('pt')}" >
<f:ajax render="@form"></f:ajax>
</h:commandButton>
你们可以帮我解决一下吗?
答案 0 :(得分:1)
Primefaces库不为其组件提供德语翻译。您需要下载javascript片段并将其附加到您的代码中。然后,使日历使用您想要的locale
。请查看此site和here您有关于您的问题的更多信息。
您还要包含一个Javascript文件,具体取决于您的区域设置(<h:outputScript library="scripts" name="#{dateBean.locale}.js">
),该文件会根据您的区域设置将javascript文件包含在内。由于您只是使用ajax请求刷新h:form
部分,因此可能会遇到问题,因为此标记是使用整个视图呈现的,因此您的翻译文件目前无法用于您的语言环境。适当的解决方案:只包括自开始以来您需要的所有JavaScript文件。