我的Tapestry应用程序中的登录页面有一个属性,其中存储了用户键入的密码,然后将其与数据库中的值进行比较。如果用户输入具有多字节字符的密码,例如:
áéíóú
...检查getPassword()的返回值(相应属性的抽象方法)给出:
áéÃóú
显然,这没有正确编码。然而,Firebug报告该页面以UTF-8提供,因此表单提交请求也可能以UTF-8编码。检查来自数据库的值会产生正确的字符串,因此它似乎不会出现操作系统或IDE编码问题。我没有在.application文件中覆盖Tapestry的org.apache.tapestry.output-encoding的默认值,Tapestry 4 documentation表示该属性的默认值是UTF-8。
那么为什么Tapestry在设置属性时会出现编码错误?
相关代码如下:
<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>
...
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 documentation表示此属性的默认值为UTF-8。我已更新上述说明以反映您的问题的答案。
@myself:找到解决方案。
答案 0 :(得分:2)
一切似乎都是正确的。
你确定 getPassword()会返回垃圾吗?是不是别人(你的编辑器,操作系统,数据库......)不知道它是一个unicode字符串,当它显示给你,而密码可能是完全可以的?什么完全让你觉得它是垃圾?
我还要确保.application配置文件中没有奇怪的编码设置
<meta key="org.apache.tapestry.output-encoding" value="some strange encoding"/>
答案 1 :(得分:2)
我发现了问题。 Tomcat在Tapestry之前修改了参数,或者我的页面类甚至对它进行了破解。创建一个强制执行所需字符编码的servlet过滤器修复它。
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-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>