自定义jsf组件中的消息属性文件

时间:2011-02-10 18:27:28

标签: jsf

我正在开发一个自定义jsf组件,想要将消息存储在属性文件中,并希望通过java代码将消息存储在其中。我必须配置faces-config吗?以及如何获取消息包??

1 个答案:

答案 0 :(得分:1)

只需将其放入类路径中,然后分别使用java.util.Propertiesjava.util.ResourceBundle进行配置设置或本地化内容。以下示例假设您已将filename.properties文件放在com.example包中。

Properties properties = new Properties();
properties.load(Thread.currentThread().getContextClassLoader().getResource("com/example/filename.properties"));
// ...

ResourceBundle bundle = ResouceBundle.getBundle("com.example.filename");
// ...