这类似于关于字符集验证的问题,除了一些字符(例如“żźć”)在提交后显示为 HTML 实体(“żźć”)。奇怪的是像“&”这样的东西保存为“&”。
我已经在 Tomcat 端尝试过 Spring 的 CharacterEncodingFilter 和 Connector,但这似乎根本没有帮助。数据库编码似乎不是问题,因为我的表单在与 AJAX 请求和会话 bean 一起使用时工作正常(与正常的提交和请求范围相反)。
这是我的表格的一部分:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:ui="http://java.sun.com/jsf/facelets"
>
<h:body>
<ui:composition template="/tpls/main-layout.xhtml">
<ui:define name="content">
<h:form>
...
<p:commandButton value="#{i18n.msg('_Save')}"
action="view" actionListener="#{readerController.save}" ajax="false" />
...
<p:panelGrid>
<p:row>
<p:column><h:outputLabel for="lastName" value="#{i18n.msg('Reader.lastName')}" /></p:column>
<p:column><p:inputText id="lastName" value="#{readerController.currentReader.lastName}" required="true">
<p:ajax update="msg-lastName" event="change" />
<f:validateRegex pattern="#{applicationConfiguration.nameValidationPattern}" />
<f:validateLength maximum="50" />
</p:inputText></p:column>
<p:column><p:message for="lastName" id="msg-lastName" /></p:column>
</p:row>
...
</p:panelGrid>
</h:form>
</ui:define>
</ui:composition>
</h:body>
</html>
编辑:作为一个澄清 - 你可以#{i18n.msg('_Save')}
用Save
和替换之类的东西#{applicationConfiguration.nameValidationPattern}
,例如[^0-9]
。