0

我试图徒劳地使用primefaces更改语言环境,这是我的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);
 }
}

小脸:

 <?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>

当我单击语言环境按钮时,日历语言环境不会更改为德语,我也没有例外。然而,以这种方式使用旧的 JSF2.* CommandButton 组件完成这项任务就像轻而易举:

 <h:commandButton value="portugal" action="#{dateBean.changeLocale('pt')}" >
  <f:ajax render="@form"></f:ajax>
 </h:commandButton>

请大家帮我弄清楚好吗?

4

1 回答 1

1

Primefaces 库不为其组件提供德语翻译。您需要下载 javascript 片段并将其附加到您的代码中。然后,让日历使用locale你想要的。看看这个网站在这里你有更多关于你的问题的信息。

您还包括一个 Javascript 文件,具体取决于您的语言环境 ( <h:outputScript library="scripts" name="#{dateBean.locale}.js">),该文件根据您的语言环境动态地包含 javascript 文件。由于您仅h:form使用 ajax 请求刷新部分,因此您可能会遇到麻烦,因为此标签是使用整个视图呈现的,因此您的翻译文件目前不适用于您的语言环境。适当的解决方案:只包括从一开始就需要的所有 javascript 文件。

于 2013-06-18T20:14:48.343 回答