标签:style blog io ar color 使用 sp 文件 on
应用:
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配置
标签:style blog io ar color 使用 sp 文件 on
原文地址:http://www.cnblogs.com/luckystar2010/p/4113475.html