xml配置
<!-- 国际化配置 -->
<bean id="messageSource"
class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>properties/messages</value>
</list>
</property>
<property name="defaultEncoding" value="utf-8" />
</bean>
备注:如果报上面的错误,可能是xml配置代码地方没有放对。