2010-06-11 136 views
0

我开发的Spring MVC应用程序,它应该支持英语&阿拉伯语。我已经按照春季参考文档中提到的配置了应用程序,并且区域设置切换正常。然而,资源包中的阿拉伯语消息显示为垃圾字符。编码设置为UTF-8,并且工作正常。我也试过了messages_ar.properties文件转换为Unicode运行native2ascii工具。Spring MVC的阿拉伯语

没有用。任何帮助将非常感激。

web.xml中(部分)

<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?> 
<web-app version="2.4"...> 

<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value> 
</context-param> 

<filter> 
    <filter-name>encodingFilter</filter-name> 
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> 
    <init-param> 
     <param-name>encoding</param-name> 
     <param-value>UTF-8</param-value> 
    </init-param> 
    <init-param> 
     <param-name>forceEncoding</param-name> 
     <param-value>true</param-value> 
    </init-param> 
</filter> 

<filter-mapping> 
    <filter-name>encodingFilter</filter-name> 
    <url-pattern>/*</url-pattern> 
</filter-mapping> 

<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener> 

<!-- Handles all requests into the application --> 
<servlet> 
    <servlet-name>Spring MVC Dispatcher Servlet</servlet-name> 
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> 
    <init-param> 
     <param-name>contextConfigLocation</param-name> 
     <param-value> 
      /WEB-INF/spring/mvc-config.xml 
     </param-value> 
    </init-param> 
    <load-on-startup>1</load-on-startup> 
</servlet> 

MVC-config.xml的(局部的)

<?xml version="1.0" encoding="UTF-8" standalone="no"?> 

<context:component-scan base-package="net.omnsoq.classified.controller" use-default-filters="false"> 
    <context:include-filter expression="org.springframework.stereotype.Controller" type="annotation" /> 
</context:component-scan> 

<!-- Configures support for @Controllers --> 
<mvc:annotation-driven /> 

<!-- Resolves view names to protected .jsp resources within the /WEB-INF/views directory --> 
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
    <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> 
    <property name="prefix" value="/WEB-INF/views/" /> 
    <property name="suffix" value=".jsp" /> 
</bean> 

<bean class="org.springframework.context.support.ReloadableResourceBundleMessageSource" id="messageSource" 
    p:basenames="WEB-INF/i18n/messages,WEB-INF/i18n/application" p:fallbackToSystemLocale="false" /> 

<!-- store preferred language configuration in a cookie --> 
<bean class="org.springframework.web.servlet.i18n.CookieLocaleResolver" id="localeResolver" p:cookieName="locale" /> 


<mvc:interceptors> 
    <bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" p:paramName="lang" /> 
</mvc:interceptors> 

JSP代码

<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %> 
... 
<%@page contentType="text/html;charset=UTF-8" %> 
... 
<spring:message code="nav.label.myaccount" /> 

回答

0

你检查资源文件的内容?它不应该包含任何UTF-8字符,只有ASCII。

对于使用:

< native2ascii的编码= “UTF-8” SRC = “$ {src.file}” DEST = “$ {conf.deploy.dir}” 包括=“**/消息的.properties“/>

+0

我最初尝试了这一点,令我惊讶的是它没有奏效。那真正的头疼开始了。 – 2010-06-11 17:00:27

+1

是的,你的解决方案也正在与 2010-06-11 17:02:42

4

我找到了解决办法。所以我只想分享它,这样对别人可能会有所帮助。

我设置fileEncodings和defaultEncoding属性为UTF-8为为messageSource。

<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" />