5

我的 UTF-8 编码有问题。我的 webapp 使用在我的 jsp 中正确显示的法语单词,但在 POST 之后不在我的控制器中。例如,在我的 jsp 中,我有:

Prénom de mon père

当我发布表格时,控制器得到:

Prénom de mon pére

如本文所述,characterEncodingFilter 是文件中的第一个过滤器

这是我的jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!doctype html>
<%@ taglib uri="http://tiles.apache.org/tags-tiles"         prefix="tiles" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core"          prefix="c" %>
<%@ taglib uri="http://www.springframework.org/tags/form"   prefix="form" %>

<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta http-equiv="content-language" content="fr">
    ...
    </head>

    <form:form class="form-horizontal" modelAttribute="AlimentationForm"
    action="${actionUrl}" method="POST">
    ...
         <form:input path="questions" class='input-xlarge' type='text' value='Prénom de mon père'/>
    </form>

我的 web.xml:

<filter>
    <filter-name>characterEncodingFilter</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>characterEncodingFilter</filter-name>
    <url-pattern>/web/*</url-pattern>
</filter-mapping>

还有我的 application-config.xml

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

我不知道我的应用程序或配置有什么问题,您知道吗?

预先感谢。

编辑:我正在使用 HDIV 框架

4

2 回答 2

2

这个问题实际上来自 HDIV 框架版本 2.1.2。如果您无法使用下一个版本,请在此处获取补丁。

希望它会帮助某人。

于 2013-07-25T09:37:13.780 回答
1

确保 JSP 页面正确编码发送到服务器的数据。尝试添加

<%@page pageEncoding="UTF-8" %>

到您的 JSP 的顶部,因为这样可以确保通过 http 发送的任何数据都将正确编码。

我相信默认的 http 编码是 ISO-8859-1。

于 2013-07-24T13:36:42.267 回答