spring messageSource 扩展支持通配模式获取i18n 配置

<!-- 支持通配符模式获取i18n 配置文件 -->
	<bean id="messageSource"
		class="com.izerui.framework.common.application.MultipleMessageSource">
		<property name="basenames">
			<list>
				<value>classpath:application/*/messages</value>
			</list>
		</property>
	</bean>
import java.io.IOException;
import java.util.Properties;

import org.springframework.context.support.ReloadableResourceBundleMessageSource;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.core.io.support.ResourcePatternResolver;

/**
 * @author izerui.com
 * @version createtime:2014年1月27日 下午1:06:45
 */
public class MultipleMessageSource extends ReloadableResourceBundleMessageSource {
	private static final String PROPERTIES_SUFFIX = ".properties";
	private ResourcePatternResolver  resolver = new PathMatchingResourcePatternResolver();

	@Override
	protected PropertiesHolder refreshProperties(String filename, PropertiesHolder propHolder) {
		Properties properties = new Properties();
		long lastModified = -1;
		try {
			Resource[] resources = resolver.getResources(filename + "*" +PROPERTIES_SUFFIX);
			for (Resource resource : resources) {
				String sourcePath = resource.getURI().toString().replace(PROPERTIES_SUFFIX, "");
				PropertiesHolder holder = super.refreshProperties(sourcePath, propHolder);
				properties.putAll(holder.getProperties());
				if (lastModified < resource.lastModified())
					lastModified = resource.lastModified();
			}
		} catch (IOException ignored) {
		}
		return new PropertiesHolder(properties, lastModified);
	}
}

猜你喜欢

转载自jhaij.iteye.com/blog/2009870