0

我正在使用spring mvc 3.1 jars构建一个项目,在配置 i18n 文件夹后,tomcat 向我抛出以下异常:

org.apache.jasper.JasperException:javax.servlet.ServletException:javax.servlet.jsp.JspTagException:在区域设置“en_US”的代码“label.title”下找不到消息。

我尝试将 i18n 文件夹添加到 eclipse(Juno) 中的类路径中,将 messages*.properties 文件放在WEB-INF/i18n、WEB-INF/classes/i18n、WEB-INF/classes、WEB-INF/lib、WEB- INF/ 但没用。

弹簧上下文.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
    <annotation-driven />
    <resources location="/, classpath:/META-INF/web-resources/"
        mapping="/resources/**" />
    <default-servlet-handler />
    <beans:bean
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <beans:property name="prefix" value="/WEB-INF/views/" />
        <beans:property name="suffix" value=".jsp" />
    </beans:bean>
    <context:component-scan base-package="com.hoe.spring.controller" />
    <interceptors>
        <beans:bean
            class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor"
            p:paramName="lang" />

    </interceptors>
    <beans:bean
        class="org.springframework.context.support.ReloadableResourceBundleMessageSource"
        id="messageSource" p:basenames="WEB-INF/i18n/messages, WEB-INF/i18n/application"
        p:fallbackToSystemLocale="false"  p:fileEncodings="UTF-8"
    p:defaultEncoding="UTF-8" />
    <beans:bean class="org.springframework.web.servlet.i18n.CookieLocaleResolver"
        id="localeResolver" p:cookieName="locale" />
</beans:beans>

消息属性

label.title=Contact_Manager
label.firstname=First_Name
label.lastname=Last_Name
label.email=Email
label.telephone=Telephone

页面.jsp

<%@taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib uri="http://www.springframework.org/tags" prefix="spring"%>
<spring:message code=**"label.title"** var="cName"/>


label.addcontact=Add_Contact
label.menu=Menu

我错过了什么?提前致谢。

4

5 回答 5

1

我已将文件放在 resources/i18n 文件夹下。

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <property name="basename" value="classpath:i18n/messages" />
    <property name="defaultEncoding" value="UTF-8" />

于 2013-06-16T18:46:20.043 回答
0

尝试将文件放在resources/i18neclipse 的文件夹下,然后使用p:basenames="classpath:i18n/messages".

于 2013-03-04T07:18:18.170 回答
0

您可以尝试将 message.properties 文件名更改为 messages_en_US.properties

于 2013-03-04T07:46:16.030 回答
0
  <bean id="messageSource"     class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basenames">
                        <list>
                                <value>locale.messages</value>
                                <value>locale.validation.messages</value>
                                <value>locale.email.messages</value>
                        </list>
     </property>
   </bean>

并将属性文件放在 locale 文件夹下(与包结构相同) 如果是 maven/gradle 项目,则 locale 文件夹位于资源文件夹 locale.validation.message => locale/validation/messages_en_US.properties

于 2013-03-04T07:42:35.173 回答
0

我遇到了同样的问题,我意识到 messages_{}.properties 必须在类路径中。因此,您无需提及 basename 属性值“classpath:messages”。相反,只需提及“消息”。这是我的完整配置。

<bean id="messageSource"
        class="org.springframework.context.support.ResourceBundleMessageSource">
        <property name="basename" value="messages"/>
        <property name="useCodeAsDefaultMessage" value="true"/>
        <property name="defaultEncoding" value="UTF-8" />       
</bean>


<!--  allow localization through cookie and add interceptor to allow changes to locale -->

<bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver" />

<mvc:interceptors>
    <bean id="localeChangeInterceptor"
          class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
     <property name="paramName" value="lang"/>     
     </bean>          
</mvc:interceptors>
于 2014-09-13T18:39:25.860 回答