我想模仿解决国际化消息的Grails的方式。
在WEB-INF / i18n中/我有以下目录:
管理员 /messages_EN.properties
管理员 /messages_FR.properties
网站 /messages_EN.properties
网站 /messages_FR.properties
请忽略此示例中的语言结尾(EN和FR)
在我的xml配置我目前有:
<!-- Register the welcome.properties -->
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="defaultEncoding" value="utf-8" />
<property name="basename" value="/WEB-INF/i18n/" />
</bean>
我找的这里,是一种方法来告诉Spring来寻找.properties文件下的国际化,但没有明确地告诉它的每个子目录是什么。 这是没有指向/ WEB-INF / i18n中/管理/和/ WEB-INF / i18n中/网站 基本名称的列表 /
我想要的WEB-INF / I18N /目录是动态的,并且束(目录)可以在无需remodify XML配置文件来创建。
我不是想解决与管理员和网站子目录这个特殊的例子
这可能吗?
谢谢!
这里是解决方案:
package com.mypackage.core.src;
import java.io.File;
import java.util.ArrayList;
import javax.servlet.ServletContext;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.support.ReloadableResourceBundleMessageSource;
public class UnderDirectoryReloadableResourceBundleMessageSource extends ReloadableResourceBundleMessageSource {
@Autowired
ServletContext servletContext;
public void setWorkingDirectory(String directoryPath) {
File rootDir = new File( servletContext.getRealPath(directoryPath) );
ArrayList<String> baseNames = new ArrayList<String>();
iterateScanDirectoryAndAddBaseNames(baseNames, rootDir);
setBasenames(baseNames.toArray(new String[baseNames.size()]));
}
private void iterateScanDirectoryAndAddBaseNames(ArrayList<String> baseNames, File directory) {
File[] files = directory.listFiles();
for (File file : files) {
if (file.isDirectory()) {
iterateScanDirectoryAndAddBaseNames(baseNames, file);
} else {
if (file.getName().endsWith(".properties")) {
String filePath = file.getAbsolutePath().replaceAll("\\\\", "/").replaceAll(".properties$", "");
filePath = filePath.substring(filePath.indexOf("/WEB-INF/"), filePath.length());
baseNames.add(filePath);
System.out.println("Added file to baseNames: " + filePath);
}
}
}
}
}
XML配置:
<bean id="messageSource" class="com.mypackage.core.src.UnderDirectoryReloadableResourceBundleMessageSource">
<property name="defaultEncoding" value="utf-8" />
<property name="workingDirectory" value="/WEB-INF/webspring/i18n" />
<property name="cacheSeconds" value="3" />
<property name="fallbackToSystemLocale" value="false" />
</bean>
请享用!