1. 程式人生 > >java報錯:The reference to entity "characterEncoding" must end with the ';' delimite

java報錯:The reference to entity "characterEncoding" must end with the ';' delimite

java報錯 ref 引號 nic pri cin true ORC 分析

解決方法:

在web.xml增加如下配置:
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>

然後再改一下數據庫連接
jdbc:mysql://localhost/mydb?useUnicode=true&characterEncoding=utf-8

然後在MYSQL軟件中更改對應字段為UTF-8編碼;

糾錯結果:

在配置一個訪問數據庫的Url時,第一次設置的內容如下:

jdbc:mysql://localhost:3306/photo?useUnicode=true&characterEncoding=UTF-8,註意中間那個“&”,在xml中這個是讀不出的,正確寫法將“&”轉義“&amp;”:

jdbc:mysql://localhost:3306/photo?useUnicode=true&amp;characterEncoding=UTF-8

分析:

有時候在使用xml作為配置文件的時候,應該要使用xml的編碼規則來進行適當的設置。

下面給出xml中一些特殊符號的編碼轉換

&lt; < 小於號
&gt; > 大於號
&amp; & and字符
&apos; 單引號
&quot; " 雙引號

java報錯:The reference to entity "characterEncoding" must end with the ';' delimite