根据我的要求,我需要外化message.properties文件(保持在war文件之外),同时它应该在更新时自动重新加载。
所以我通过遵循代码并使用Jetty Server正常工作来实现这两个目标。但是当我使用Tomcat Server时,外部化属性文件没有被系统拾取,而是仅使用战争中的文件。
public final class Messages
{
public static final String BUNDLE_NAME = "com.sample.project.core.ui.resources.messages";
// private static ResourceBundle resourceBundle = ResourceBundle.getBundle(BUNDLE_NAME);
private static ResourceBundle resourceBundle;
private static final Logger LOGGER = Logger.getLogger(Messages.class);
private static ReloadableResourceBundleMessageSource messageSource;
static
{
try
{
FileInputStream fis =
new FileInputStream(System.getProperty("resources.messages.file.path"));
resourceBundle = new PropertyResourceBundle(fis);
}
catch (FileNotFoundException e)
{
LOGGER.error("messages.properties file not found: " + e);
resourceBundle = ResourceBundle.getBundle(BUNDLE_NAME);
}
catch (Exception e)
{
LOGGER.error("messages.properties file reading failed: " + e);
resourceBundle = ResourceBundle.getBundle(BUNDLE_NAME);
}
}
private Messages()
{
}
/**
* <p>
* setter methos to ReloadableResourceBundleMessageSource object.
* </p>
*
*
* @param inMessageSource
* set reloadable resources bundle
**/
public static void setMessageSource(final ReloadableResourceBundleMessageSource inMessageSource)
{
Messages.messageSource = inMessageSource;
Messages.messageSource.setBasename(System.getProperty("resources.messages.file.path"));
}
/**
* <p>
* Resolve a message by a key and argument replacements.
* </p>
*
* @see MessageFormat#format(String, Object...)
* @param key
* the message to look up
* @param arguments
* optional message arguments
* @return the resolved message
**/
public static String getMessage(final String key, final Object... arguments)
{
try
{
if (messageSource != null)
{
return messageSource.getMessage(key, arguments, Locale.getDefault());
}
else
{
if (arguments != null)
return MessageFormat.format(resourceBundle.getString(key), arguments);
return resourceBundle.getString(key);
}
}
catch (NoSuchMessageException e)
{
LOGGER.error("Message key not found: " + key);
return '!' + key + '!';
}
catch (MissingResourceException e)
{
LOGGER.error("Message key not found: " + key);
return '!' + key + '!';
}
}
}
(这里我使用“resources.messages.file.path
”键作为VM参数传递的文件路径
首先,我认为这是访问文件系统的问题并尝试了很多方法。然后我听说catalina.policy文件,我添加了一些像这样的行..
grant codeBase "file:${catalina.base}/webapps/sample.war/-" {
permission java.security.AllPermission;
permission java.io.FilePermission "file:${catalina.base}${file.separator}webapps${file.separator}messages.properties", "read, write";
permission java.util.PropertyPermission "resources.messages.file.path", "read";
}
但他们没有给我带来好运。我很绝望。知道这个问题是什么吗?请帮我。先感谢您。 (在Tomcat6上测试)
答案 0 :(得分:3)
最后我找到了搞砸的地方。
此messageSource
的setter方法不应静态,并且我删除了messageSource
的静态访问
messageSource = inMessageSource;
messageSource.setBasename(System.getProperty("resources.messages.file.path"));
现在代码工作正常。并且在catalina.policy文件中不需要该权限条目。感谢所有帮助过我的人。