2

我正在尝试将国际化添加到基于 Spring 的项目中。我尝试了很多指南,但我无法使其工作。我被困了很长时间,我找不到什么问题。所以开始,我的mvc-dispatcher-servlet.xml样子是这样的:

?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd 
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

    <mvc:annotation-driven />
    <context:component-scan base-package="com.application" />

    <!-- Bean for the static resources (css,js) -->
    <mvc:resources mapping="/resources/**" location="/resources/" />

    <!-- Resolves views selected for rendering by @Controllers to .jsp resources 
        in the /WEB-INF/views directory -->
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.UrlBasedViewResolver">
        <property name="viewClass"
            value="org.springframework.web.servlet.view.JstlView" />
        <property name="prefix" value="/WEB-INF/views/" />
        <property name="suffix" value=".jsp" />
    </bean>


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

    <bean id="localeResolver"
        class="org.springframework.web.servlet.i18n.CookieLocaleResolver">
        <property name="defaultLocale" value="en" />

    </bean>

    <mvc:interceptors>
        <bean
            class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor">
            <property name="paramName" value="language" />
        </bean>
    </mvc:interceptors>
</beans>

我的messages_en.properties文件包含:

label.firstName=First Name
label.lastName=Last Name

同样在我的 JSP 上,我使用了占位符:<spring:message code="label.firstName" /> 这是我的项目结构: 在此处输入图像描述

任何帮助将不胜感激。

编辑:感谢 souser 评论,我发现带有国际化消息的资源文件夹不在部署的战争(在 tomcat 上)。唯一存在的资源文件夹是具有静态资源的文件夹(来自截图项目结构的/WebContent/resources/)

4

1 回答 1

1

我最好的猜测是 messages_en.properties 在启动时没有进入你的类路径。检查项目属性->构建路径并检查资源是如何处理的。有排除过滤器吗?另外,一般来说,我将所有项目都转换为 Eclipse 中的 Maven 项目。不是您问题的直接答案,但这是您应该开始做的事情。

于 2014-08-21T15:26:52.967 回答