我有一个部署到 JBoss AS 7.1 的 PrimeFaces 3.3 / JSF 应用程序。为了显示我的数据,我使用了带有一些过滤标题的p:dataTable 。这是代码(缩小来源后):
<p:outputPanel id="custDataTable">
<p:dataTable var="item" value="#{customerController.items}" rowKey="#{item.id}"
selection="#{customerController.current}" selectionMode="single" id="customersTable">
<p:column headerText="Surname" sortBy="#{item.surname}" filterBy="#{item.surname}" id="surname">
#{item.surname}
</p:column>
<p:column headerText="Age" sortBy="#{item.age}" filterBy="#{item.age}" id="age" styleClass="age">
#{item.age}
</p:column>
<p:column headerText=" ">
<p:spacer width="20" height="0" />
<p:commandButton update=":custForm" ajax="false" action="#{customerController.prepareEdit}" value="edit">
<f:setPropertyActionListener value="#{item}" target="#{customerController.current}" />
</p:commandButton>
</p:column>
</p:dataTable>
</p:outputPanel>
PrimeFaces p:dataTable对数字Age列的过滤始终有效,但在Surname列上会出现奇怪的行为。当支持 bean 的items实例变量在surname中包含带有 ASCII 数据的元素时,过滤就会起作用。但是当 UTF8 数据存在时,过滤只能部分起作用:
[1]我可以在列标题字段中键入我的语言环境的 UTF8 字符,结果确实被过滤了(这是有效的部分)。
[2]支持 bean 的当前实例变量始终为空。即绑定:
selection="#{customerController.current}"
似乎没有工作。我在CustomerController::prepareEdit方法中添加了一些日志记录,并且在按下编辑 p:commandButton时该值设置为 null 。因此,我无法编辑基于surname列过滤的实例(当存在 UTF8 数据时)。但是,当我在数字年龄列上过滤或根本不过滤时,可以编辑具有相同 UTF8 数据的相同实例。
为了解决这个问题,我尝试注册一个字符编码过滤器:
public class CharacterEncodingFilter implements Filter {
@Override
public void doFilter(ServletRequest req,
ServletResponse resp,
FilterChain chain)
throws IOException, ServletException {
req.setCharacterEncoding("UTF-8");
resp.setCharacterEncoding("UTF-8");
chain.doFilter(req, resp);
}
并在我的 web.xml 中注册:
<?xml version="1.0" encoding="UTF-8"?>
<web-app ...
...
<filter>
<filter-name>Character Encoding Filter</filter-name>
<filter-class>mp.util.CharacterEncodingFilter</filter-class>
</filter>
</web-app>
但这也没有奏效。