我在本地化复合组件(Mojarra 2.2、Glassfish 4.0)时遇到问题。
我在这里尝试了 BalusC 的解决方案,将属性文件放在与复合组件相同的目录中,并具有与复合组件相同的文件名和一个.properties
扩展名 - 用于将复合组件定义中的字符串外部化。
但是当我想本地化字符串时(通过_en
在属性文件的文件名中添加后缀)我得到这个错误(唯一改变的是属性文件的名称):
[2013-08-08T13:49:04.234-0500] [glassfish 4.0] [WARNING] [] [javax.enterprise.web] [tid: _ThreadID=24 _ThreadName=http-listener-1(5)] [timeMillis: 1375987744234] [levelValue: 900] [[
StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
java.lang.NullPointerException
at javax.faces.component.UIComponent.findComponentResourceBundleLocaleMatch(UIComponent.java:1204)
at javax.faces.component.UIComponent.getResourceBundleMap(UIComponent.java:1007)
at sun.reflect.GeneratedMethodAccessor1226.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at javax.el.BeanELResolver.getValue(BeanELResolver.java:363)
at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
at com.sun.el.parser.AstValue.getValue(AstValue.java:140)
at com.sun.el.parser.AstValue.getValue(AstValue.java:204)
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226)
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
at com.sun.faces.facelets.el.ELText$ELTextVariable.writeText(ELText.java:227)
at com.sun.faces.facelets.compiler.TextInstruction.write(TextInstruction.java:85)
at com.sun.faces.facelets.compiler.UIInstructions.encodeBegin(UIInstructions.java:82)
at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:302)
at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:115)
at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:894)
at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1856)
...
我读了一篇文章(从 24/Aug/12 下午 3:50 发布),JSF 的本地化方式与标准 Java 不同,并且属性文件会进入resources/en/<library>/<component>.properties
,所以我放在mycomp.properties
那里并再次收到错误。
我的默认语言环境实际上是“en_US”——我也尝试过,结果相同。
所以,这有效:
resources/lib/mycomp.xhtml
,resources/lib/mycomp.properties
这些不起作用:
resources/lib/mycomp.xhtml
, resources/lib/mycomp_en.properties
resources/lib/mycomp.xhtml
,resources/en/lib/mycomp.properties
我究竟做错了什么?