gpt4 book ai didi

JSF UTF 8 个字符只在第一个表单帖子、jsf、tomcat 中没有看到?

转载 作者:行者123 更新时间:2023-11-28 22:05:39 24 4
gpt4 key购买 nike

我有一个简单的 JSF 表单,我在其中提交用户名和密码并保存到数据库。

只有在提交第一个表单时,我遇到了 UTF-8 字符问题。当我在第一篇文章中提交 ğğüüçç 时,我得到了错误的字符。第二次尝试就OK了。

这是我的 web.xml 和 index.xhtml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">

<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>

<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>



<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

<welcome-file-list>
<welcome-file>index.xhtml</welcome-file>
</welcome-file-list>

</web-app>

和我的 index.xhtml :

<!DOCTYPE html>
<html lang="tr"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
<title>Title</title>
</h:head>
<h:body>
<div class="container">
<h:form styleClass="form-signin" prependId="false" id="registirationForm">
<h2 class="form-signin-heading">Please Register!</h2>
<h:inputText styleClass="input-block-level" value="#{registirationFormBean.nickname}" />
<h:inputSecret styleClass="input-block-level" value="#{registirationFormBean.password}"/>
<h:commandButton styleClass="btn btn-large btn-primary" value="Register Me!" action="#{registirationFormBean.registerUser}"/>
</h:form>
</div>
</h:body>
</html>

编辑:这是来自 Tomcat 中的 server.xml

 <Connector port="8080" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"
URIEncoding="UTF-8"
/>

当我调试我的应用程序时,在第一篇文章中我看到发布的值:

enter image description here

但是在第二次:

enter image description here

最佳答案

使用

<f:view>

和您的语言环境。

    <f:view locale="#{registirationFormBean.locale}" encoding="UTF-8" contentType="text/html"> 
<h:head>
<title>Title</title>
</h:head>
<h:body>
<div class="container">
<h:form styleClass="form-signin" prependId="false" id="registirationForm">
<h2 class="form-signin-heading">Please Register!</h2>
<h:inputText styleClass="input-block-level" value="#{registirationFormBean.nickname}" />
<h:inputSecret styleClass="input-block-level" value="#{registirationFormBean.password}"/>
<h:commandButton styleClass="btn btn-large btn-primary" value="Register Me!" action="#{registirationFormBean.registerUser}"/>
</h:form>
</div>
</h:body>

</f:view>

从您的 bean 中提供语言环境对象,例如 .

public Locale getLocale(){
return new Locale("tr", "TR");
}

关于JSF UTF 8 个字符只在第一个表单帖子、jsf、tomcat 中没有看到?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16544262/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com