1.简介
使用EhCache缓存资源,使用ResourcePatternResolver从多个文件中加载资源
2.源文件
1)EhCacheResourceBundles
package com.siyuan.test.spring; import java.io.IOException; import java.io.InputStream; import java.text.MessageFormat; import java.util.HashMap; import java.util.Locale; import java.util.Map; import java.util.Properties; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.io.Resource; import org.springframework.core.io.support.PathMatchingResourcePatternResolver; import org.springframework.core.io.support.ResourcePatternResolver; import net.sf.ehcache.CacheManager; public class EhCacheResourceBundles { private static final Logger LOGGER = LoggerFactory.getLogger(EhCacheResourceBundles.class); private static final String RESOURCE_FILE_SUFFIX = ".properties"; private CacheManager cacheManager; private Map<Locale, EhCacheResourceBundle> resourceBundles = new HashMap<Locale, EhCacheResourceBundle>(); /** * EhCache configuration location * Spring Resource path, a absolute path, * Used to configure the EhCache */ public EhCacheResourceBundles(String configuration, String resourcePatterns) throws IOException { if (StringUtils.isBlank(configuration)) { throw new IllegalArgumentException( "argument[configuration] can not be blank"); } if (StringUtils.isBlank(resourcePatterns)) { throw new IllegalArgumentException( "argument[resourcePatterns] can not be blank"); } initCacheManager(configuration); initResourceBundles(resourcePatterns); } private void initCacheManager(String configuration) throws IOException { ResourcePatternResolver resourceResolver = new PathMatchingResourcePatternResolver(); Resource[] resources = resourceResolver.getResources(configuration); if (resources.length == 0) { throw new IllegalArgumentException("configuration[" + configuration +"] can not be resolved to a resource"); } InputStream input = null; try { LOGGER.info("init CacheManager by the configuration[{}] ", resources[0]); input = resources[0].getInputStream(); cacheManager = CacheManager.newInstance(input); } finally { if (input != null) { input.close(); } } } private void initResourceBundles(String resourcePatterns) throws IOException { LOGGER.info("load resource from [{}]", resourcePatterns); ResourcePatternResolver resourceResolver = new PathMatchingResourcePatternResolver(); String[] resourcePatternArray = resourcePatterns.split(","); for (String resourcePattern : resourcePatternArray) { LOGGER.info("load resource from [{}]", resourcePattern); Resource[] resources = resourceResolver.getResources(resourcePattern); for (Resource resource : resources) { loadResource(resource); } } } private void loadResource(Resource resource) throws IOException { String fileName = resource.getFilename(); if (!fileName.endsWith(RESOURCE_FILE_SUFFIX)) { LOGGER.warn("file[{}] does not ended with [{}], will be omitted", resource, RESOURCE_FILE_SUFFIX); return; } InputStream input = null; try { // Locale locale = getLocale(fileName); if (locale == null) { LOGGER.warn("can not resolve locale from file[{}] by name, " + "and the file will be omitted, please make the file name " + "match XXX_xx.properties or XXX_xx_XX.properties pattern", fileName); return; } EhCacheResourceBundle resourceBundle = resourceBundles.get(locale); if (resourceBundle == null) { LOGGER.debug("no EhCacheResourceBundle is corresponding to the " + "locale[{}], will create one", locale); cacheManager.addCache(locale.toString()); resourceBundle = new EhCacheResourceBundle( cacheManager.getCache(locale.toString())); resourceBundles.put(locale, resourceBundle); } input = resource.getInputStream(); Properties properties = new Properties(); properties.load(input); LOGGER.info("load messages from [{}]", resource); for (Object key : properties.keySet()) { resourceBundle.addMessage((String) key, properties.getProperty((String) key)); } } finally { if (input != null) { input.close(); } } } private Locale getLocale(String fileFullName) { Locale locale = null; String fileName = fileFullName.substring(0, fileFullName.lastIndexOf(RESOURCE_FILE_SUFFIX)); String[] fileInfos = fileName.split("_"); if (fileInfos.length == 2) { locale = new Locale(fileInfos[1]); } else if (fileInfos.length == 3) { locale = new Locale(fileInfos[1], fileInfos[2]); } LOGGER.debug("locale[{}] is resolved from the fileName[{}]", locale, fileFullName); return locale; } public String getMessage(String key, Locale locale) { EhCacheResourceBundle resourceBundle = resourceBundles.get(locale); if (resourceBundle == null) { LOGGER.warn("no EhCacheResourceBundle is corresponding to the " + "locale[{}]", locale); return null; } return resourceBundle.getString(key); } public String getMessage(String key, Locale locale, Object...arguments) { String messageFmt = getMessage(key, locale); if (messageFmt == null) { return null; } return new MessageFormat(messageFmt).format(arguments); } }
2)EhCacheResourceBundle
package com.siyuan.test.spring; import java.util.Enumeration; import java.util.ResourceBundle; import net.sf.ehcache.Cache; import net.sf.ehcache.Element; public class EhCacheResourceBundle extends ResourceBundle { private Cache cache; public EhCacheResourceBundle(Cache cache) { this.cache = cache; } public void addMessage(String key, String value) { cache.put(new Element(key, value)); } @Override protected Object handleGetObject(String key) { Element value = cache.get(key); if (key == null) { return null; } return value.getObjectValue(); } @Override public Enumeration<String> getKeys() { throw new UnsupportedOperationException( "EhCacheResourceBundle does not support enumerating its keys"); } }
3)ehcache-i18n.xml
<?xml version="1.0" encoding="UTF-8"?> <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="false" monitoring="autodetect" dynamicConfig="true"> <defaultCache eternal="true" maxEntriesLocalHeap="0" /> </ehcache>
4)资源文件
|-i18n
|-en_US
|-folder
|-test_en_US.properties
test.key1=test.key1.en_US {0}
|-test_en_US.properties
test.key=test.key.en_US
|-zh
|-folder
|-test_zh.properties
test.key1=test.key1.zh {0}
|-test_zh.properties
test.key=test.key.zh
5)EhCacheResourceBundlesTest
import java.io.IOException; import java.util.Locale; import com.siyuan.test.spring.EhCacheResourceBundles; public class EhCacheResourceBundlesTest { public static void main(String[] args) throws IOException { EhCacheResourceBundles resourceBundles = new EhCacheResourceBundles("classpath:ehcache-i18n.xml", "classpath*:i18n/**/*.properties"); System.out.println(resourceBundles.getMessage("test.key", new Locale("zh"))); System.out.println(resourceBundles.getMessage("test.key", new Locale("en", "US"))); System.out.println(resourceBundles.getMessage("test.key1", new Locale("zh"), "test zh")); System.out.println(resourceBundles.getMessage("test.key1", new Locale("en", "US"), "test en_US")); } }
运行结果
test.key.zh test.key.en_US test.key1.zh test zh test.key1.en_US test en_US
3.附件
程序源代码
相关推荐
基于springboot教育资源共享平台源码数据库文档.zip
linux开发篇,配套视频:https://www.bilibili.com/list/474327672?sid=4493702&spm_id_from=333.999.0.0&desc=1
ReadEra 这个阅读应用能够打开下列任何格式的文档: EPUB, PDF, DOC, RTF, TXT, DJVU, FB2, MOBI, 和 CHM. 基本上来说,你可以用它阅读你的设备内存中的任何书籍或者文本文档。 这个应用与划分成章节的文档兼。,有一个书签功能,可以在你阅读的时候,自动保存你的进度。另外,它让你更改页面模式,从几种不同的主题中进行挑选(夜间,白天,棕黑色调,还有控制台)。
软件环境:KEIL4 硬件环境:STM32单片机+舵机 控制原理:通过控制输出信号的占空比调节舵机旋转的角度
基于springboot仓库管理系统源码数据库文档.zip
酒店管理系统源码C++实现的毕业设计项目源码.zip,个人大四的毕业设计、经导师指导并认可通过的高分设计项目,评审分98.5分。主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。 酒店管理系统源码C++实现的毕业设计项目源码.zip,酒店管理系统源码C++实现的毕业设计项目源码.zip个人大四的毕业设计、经导师指导并认可通过的高分设计项目,评审分98.5分。主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。酒店管理系统源码C++实现的毕业设计项目源码.zip酒店管理系统源码C++实现的毕业设计项目源码.zip酒店管理系统源码C++实现的毕业设计项目源码.zip,个人大四的毕业设计、经导师指导并认可通过的高分设计项目,评审分98.5分。主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。酒店管理系统源码C++实现的毕业设计项目源码.zip,个人大四的毕业设计、经导师指导并认可通过的高分设计项目,评审分98.5分。主要针对计算机相关专业的正在做毕
58商铺全新UI试客试用平台网站源码
springboot vue3前后端分离 基于SpringBoot+Vue的轻量级定时任务管理系统.zip
该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。
4D毫米波雷达点云数据处理方法研究.caj
S M 2 2 5 8 X T 量产工具供大家下载使用
基于springboot的文物管理系统源码数据库文档.zip
基于springboot的电影院售票管理系统源码数据库文档.zip
基于Java web 实现的仓库管理系统源码,适用于初学者了解Java web的开发过程以及仓库管理系统的实现。
美容美发项目,使用django框架,前后端一体化项目
在线票务:2023年中国在线票务行业市场规模约为24.99亿元,挖掘市场蓝海新机遇 在数字浪潮的席卷下,传统的票务销售模式正经历着前所未有的变革。纸质门票逐渐淡出人们的视野,取而代之的是便捷、高效的数字和移动票务。这一转变不仅为消费者带来了前所未有的购票体验,更为在线票务平台开辟了广阔的发展空间和市场机遇。随着国民经济的持续增长和文体娱乐行业的蓬勃发展,中国在线票务行业正站在时代的风口浪尖,等待着每一位有志之士的加入。那么,这片蓝海市场究竟蕴藏着怎样的潜力?又该如何把握机遇,实现突破?让我们一同探索。 市场概况: 近年来,中国在线票务行业市场规模持续扩大,展现出强劲的增长势头。据QYResearch数据显示,2023年中国在线票务行业市场规模约为24.99亿元,尽管受到宏观经济的影响,市场规模增速放缓,但整体趋势依然向好。这一增长主要得益于国民人均收入的不断提高、电影及演出行业的快速发展以及政府政策的支持。例如,2023年财政部、国家电影局发布的《关于阶段性免征国家电影事业发展专项资金政策的公告》,为电影行业注入了强劲动力,进而推动了在线票务市场规模的扩大。 技术创新与趋势: 技术进步
基于SpringBoot的养老院管理系统源码数据库文档.zip
该资源内项目源码是个人的课程设计、毕业设计,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96分,放心下载使用! ## 项目备注 1、该资源内项目代码都经过严格测试运行成功才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。
内容概要:本文档是一份详细的Go语言教程,从基础概念介绍到高级主题均有覆盖。主要内容包括Go语言的基础语法、数据类型、控制结构、函数、结构体、接口和并发编程等方面。通过具体示例介绍了如何使用Go语言进行开发。 适合人群:初学者和有一定经验的程序员都可以从这篇教程中受益,特别是那些想要快速掌握Go语言并应用于实际项目的开发者。 使用场景及目标:适用于初学者系统学习Go语言的基础知识和常用功能;也可以作为已有开发经验者的参考资料,帮助他们解决具体的编程问题,提高开发效率。 其他说明:本教程不仅包含了Go语言的基本知识点,还重点讲解了其独特的并发编程模型。读者在学习过程中应该注重理论与实践相结合,通过实际编写代码来加深理解和记忆。