我的 facelet 无法获取属性文件的属性,我不知道为什么。
代码:
小面:
<th id="leaderLabel" class="label"><h:outputText value="#{msgs.fuehrer}" /></th>
面孔配置:
<faces-config version="2.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd">
<application>
<locale-config>
<default-locale>de</default-locale>
<supported-locale>en</supported-locale>
</locale-config>
<resource-bundle>
<base-name>messages</base-name>
<var>msgs</var>
</resource-bundle>
</application>
</faces-config>
我放置在 Maven 项目的 src/main/resources 中的属性:
messages_de.properties
fuehrer=Führer
messages_en.properties
fuehrer=Leader
问题:
它不呈现文本,它根本不显示它。