我有一个PrimeFaces 3.3 / JSF应用程序,我部署到JBoss AS 7.1。要显示我的数据,我使用 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 过滤数字年龄列始终有效,但在 Surname 列上会出现奇怪的行为。当支持bean的项实例变量在 surname 中包含具有ASCII数据的元素时,则过滤起作用。但是当存在UTF8数据时,过滤仅部分起作用:
[1] 我可以在列标题字段中键入我的语言环境的UTF8字符,结果确实已过滤(这是可行的部分)。
[2] 支持bean的当前实例变量始终为null。即绑定:
selection="#{customerController.current}"
似乎没有用。我在 CustomerController :: prepareEdit 方法中添加了一些日志记录,当按下编辑 p:commandButton 时,该值设置为null。因此,我无法编辑基于 surname 列过滤的实例(当存在UTF8数据时)。但是,当我在数字 age 列上进行过滤时,或者根本不进行过滤时,可以编辑具有相同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>
但这也没有成功。
答案 0 :(得分:7)
您需要确保请求字符编码已设置为UTF-8。您可以使用servlet filter执行此操作,该Unicode input retrieved via PrimeFaces input components become corrupted已映射到涵盖感兴趣请求的URL模式。例如。 /*
或仅FacesServlet
的servlet名称。
@WebFilter("/*")
public class CharacterEncodingFilter implements Filter {
@Override
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws ServletException, IOException {
request.setCharacterEncoding("UTF-8");
chain.doFilter(request, response);
}
// ...
}