Spring 使用国际化信息 MessageSource

引用参考:
//第一种
【ResourceBundleMessageSource】--org.springframework.context.support.ResourceBundleMessageSource
--学习Spring必学的Java基础知识(8)----国际化信息
[url]http://stamen.iteye.com/blog/1541732[/url]
--Spring 利用MessageSource实现国际化
[url]http://blog.csdn.net/moshenglv/article/details/53761959[/url]
//第二种
【ReloadableResourceBundleMessageSource】--org.springframework.context.support.ReloadableResourceBundleMessageSource
[url]https://blog.csdn.net/qincidong/article/details/40866975[/url]
//

import java.util.Locale;
import org.springframework.context.MessageSource;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class DemoResourceBundle {
private static ClassPathXmlApplicationContext context = null;
private static MessageSource messageSource;
private static String DEFAULT_ERROR_MESSAGE;

static
{
context = new ClassPathXmlApplicationContext("crm/baseConfig/commonBean.xml");//加载spring配置文件
messageSource = (MessageSource)context.getBean("crm.messageSource");
DEFAULT_ERROR_MESSAGE = DemoResourceBundle.getMessage(DemoConstant.SYS_ERROR);
}

public static String getMessage(String code) {
return messageSource.getMessage(code, null, null, Locale.SIMPLIFIED_CHINESE);
}

public static String getMessage(String code, String defaultMessage) {
return messageSource.getMessage(code, null, defaultMessage, Locale.SIMPLIFIED_CHINESE);
}

public static String getMessage(String code, String defaultMessage, Locale locale) {
return messageSource.getMessage(code, null, defaultMessage, locale);
}

public static String getDefaultErrorMessage() {
return DEFAULT_ERROR_MESSAGE;
}
}
---------------------------------------------------------------------------------
spring的xml配置文件 commonBean.xml--国际化




crm.baseConfig.crmErrorCodes



---------------------------------------------------------------------------------
中文错误码配置文件
crmErrorCodes_zh_CN.properties
英文错误码配置文件
crmErrorCodes_en_US.properties
---------------------------------------------------------------------------------
使用:
String msg = DemoResourceBundle.getMessage(e.getCode(), e.getTextMessage());
---------------------------------------------------------------------------------

你可能感兴趣的:(Spring)