请教:现在有个项目用的spring的mvc,做国际化时页面标签只能找到中文的资源文件,我把控制面板里的区域和语言设置为英文美国,页面还是显示中文。 我的配置文件:
 <bean id="messageSource"      class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basenames">
         <list>
         <value>com/common/properties/messages</value>
         <value>com/common/properties/errors</value>
         <value>com/common/properties/theme</value>
         </list>
        </property>
   </bean>
 
 页面标签:
  <%@ taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt" %>
  <fmt:message key="zhongguo" /> 谢谢请赐教!