首页 > 代码库 > 使用Spring的ReloadableResourceBundleMessageSource读取properties配置
使用Spring的ReloadableResourceBundleMessageSource读取properties配置
应用:
1.后台验证提示信息;
2.异常信息。
spring配置文件如下:
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basename" value="classpath:message-resource"/> <property name="defaultEncoding" value="GBK"/> </bean>
message-resource即为classpath下的message-resource.properties文件。
接下来定义我们自己的MessageUtil类来使用Spring的MessageSource读取配置。
public class MessageUtil{ private static MessageSource messageSource; private static void init() { if (messageSource == null) { synchronized (MessageUtil.class) { messageSource = (MessageSource) applicationContextFactory.getBean("messageSource"); } } } public static String getMessage(String id, Object[] param) { init(); return messageSource.getMessage(id, param, "Required", null); } public static String getMessage(String id) { init(); return messageSource.getMessage(id, null, "Required", null); }}
使用Spring的ReloadableResourceBundleMessageSource读取properties配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。