可能是没有加defaultEncoding 这个属性
<bean
id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<!--文件编码方式, 只加fileEncodings不行,要加上defaultEncoding才行-->
<property name="fileEncodings" value="utf-8" />
<property name="defaultEncoding" value="utf-8"/>
<!--对资源文件内容缓存时间单位是秒,120秒后重新加载-->
<property name="cacheSeconds" value="120" />
<property name="basenames">
<list>
<value>classpath:validation/addUser</value>
<value>classpath:validation/insertCompanyFile</value>
<value>classpath:validation/insertGetFile</value>
<!--这里不加.properties后缀是因为上面property中的name是basenames-->
</list>
</property>
</bean>