从另一个java项目加载资源包

时间:2014-10-17 12:01:34

标签: jsf resourcebundle modularity

我想从其他项目加载i18资源包, 我设法从我的webApp项目的资源目录加载18n消息属性文件,但我真正需要的是让我的所有配置文件都驻留在另一个项目中。

这是我的faces-config:

<faces-config
    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_1.xsd"
    version="2.1">

    <application>
      <resource-bundle>
         <base-name>messages</base-name>
         <var>msgs</var>
      </resource-bundle>
      <locale-config>
         <default-locale>fr</default-locale>
      </locale-config>
    </application>
</faces-config>

消息文件位于我的webapp资源目录中。

1 个答案:

答案 0 :(得分:0)

只需在项目的类路径中添加其他项目的jar。 那个jar应该有属性文件。