我正在开发一个自定义jsf组件,想要将消息存储在属性文件中,并希望通过java代码将消息存储在其中。我必须配置faces-config吗?以及如何获取消息包??
答案 0 :(得分:1)
只需将其放入类路径中,然后分别使用java.util.Properties
或java.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");
// ...