5

我的 Tapestry 应用程序中的登录页面有一个属性,其中存储了用户输入的密码,然后将其与数据库中的值进行比较。如果用户输入的密码包含多字节字符,例如:

áéíóú

...检查 getPassword() 的返回值(相应属性的抽象方法)给出:

áéíóú

显然,这没有正确编码。然而,Firebug 报告该页面以 UTF-8 提供,因此大概表单提交请求也将以 UTF-8 编码。检查来自数据库的值会生成正确的字符串,因此这似乎不是操作系统或 IDE 编码问题。我没有在 .application 文件中覆盖 Tapestry 的默认值 org.apache.tapestry.output-encoding,Tapestry 4文档指出该属性的默认值是 UTF-8。

那么为什么 Tapestry 在设置属性时会出现编码问题呢?

相关代码如下:

登录.html

<html jwcid="@Shell" doctype='html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"' ...>
    <body jwcid="@Body">
        ...
        <form jwcid="@Form" listener="listener:attemptLogin" ...>
            ...
            <input jwcid="password"/>
            ...
        </form>
        ...
     </body>
</html>

登录页面

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE page-specification
    PUBLIC "-//Apache Software Foundation//Tapestry Specification 4.0//EN"
    "http://jakarta.apache.org/tapestry/dtd/Tapestry_4_0.dtd">

<page-specification class="mycode.Login">
    ...
    <property name="password" />
    ...
    <component id="password" type="TextField">
        <binding name="value" value="password"/>
        <binding name="hidden" value="true"/>
        ...
    </component>
    ...
</page-specification>

登录.java

...
public abstract class Login extends BasePage {
    ...
    public abstract String getPassword();
    ...
    public void attemptLogin() {
        // At this point, inspecting getPassword() returns
        // the incorrectly encoded String.
    }
    ...
}

更新

@Jan Soltis:好吧,如果我检查来自数据库的值,它会显示正确的字符串,所以我的编辑器、操作系统和数据库似乎都正确地编码了值。我还检查了我的 .application 文件;它不包含 org.apache.tapestry.output-encoding 条目,并且 Tapestry 4文档指出此属性的默认值为 UTF-8。我已经更新了上面的描述以反映您的问题的答案。

@myself:找到解决方案。

4

2 回答 2

2

一切似乎都是正确的。

真的确定getPassword() 返回垃圾吗?不是其他人(您的编辑器、操作系统、数据库……)在向您显示它时不知道它是一个 unicode 字符串,而密码可能完全没问题吗?究竟是什么让你认为它是垃圾?

我还要确保 .application 配置文件中没有设置奇怪的编码

<meta key="org.apache.tapestry.output-encoding" value="some strange encoding"/>
于 2008-09-04T11:25:36.683 回答
2

我发现了问题。Tomcat 在 Tapestry 或我的页面类甚至出现问题之前就已经在修改参数。创建强制执行所需字符编码的 servlet 过滤器修复了它。

CharacterEncodingFilter.java

package mycode;

import java.io.IOException;

import javax.servlet.*;

/**
 * Allows you to enforce a particular character encoding on incoming requests.
 * @author Robert J. Walker
 */
public class CharacterEncodingFilter implements Filter {
    private static final String ENCODINGPARAM = "encoding";

    private String encoding;

    public void init(FilterConfig config) throws ServletException {
        encoding = config.getInitParameter(ENCODINGPARAM);

        if (encoding != null) {
            encoding = encoding.trim();
        }
    }

    public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
            throws IOException, ServletException {
        request.setCharacterEncoding(encoding);
        chain.doFilter(request, response);
    }

    public void destroy() {
        // do nothing
    }
}

web.xml

<web-app>
    ...
    <filter>
        <filter-name>characterEncoding</filter-name>
        <filter-class>mycode.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>UTF-8</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>characterEncoding</filter-name>
        <url-pattern>/app/*</url-pattern>
    </filter-mapping>
    ...
</web-app>
于 2008-09-06T01:09:43.103 回答