Springmvc配置国际化资源文件

1.springmvc配置文件中配置class为org.springframework.context.support.ResourceBundleMessageSource的bean,id必须是messageSource,当一个ApplicationContext加载时,他会自动在context中查找id为messageSource的MessageSource。

在messageSource中,如果需配置的国际化资源文件的basename都一样,如i18n_zh_CN、i18n_en_US这类,可以用basename属性这样配置:


	
如果 需配置的国际化资源文件的basename不符合上述情况,就需要使用basenames属性配置,如下:


	
		
			validationMessage
		
	


2. 在classpath下创建一个国际化资源文件,名称为validationMessage.properties或validationMessage_zh_CN.properties这种形式



你可能感兴趣的:(Spring)