我在 JPA 测试类中遇到了字符编码问题。
在我的 h2内存数据库中,我有这个插入查询:
INSERT INTO MYTABLE (ID,FIELD1,FIELD2) VALUES (100,'ABC','Réclamation');
(请注意“Réclamation”中的“é”字符)
在我的JUnit测试中,我试图断言FIELD2列的值等于“Réclamation”(您可以看到这种情况)
但是它失败,并出现以下错误:
org.junit.ComparisonFailure:预期:R [é]声明,但 原是:R [...] clamation
我想知道是否有一种方法可以在persistence.xml文件中指定字符编码(也许是?或其他地方)
这是我的persistence.xml测试文件:
<?xml version="1.0" encoding="UTF-8"?>
<persistence
version="2.1"
xmlns="http://xmlns.jcp.org/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence
http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
<persistence-unit name="myTestPU">
<provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
<class>com.myproject.myclass1</class>
<class>com.myproject.myclass2</class>
<properties>
<property
name="javax.persistence.schema-generation.database.action"
value="none" />
<property
name="javax.persistence.sharedCache.mode"
value="ENABLE_SELECTIVE" />
<property
name="javax.persistence.jdbc.url"
value="jdbc:h2:mem:test;INIT=RUNSCRIPT FROM 'classpath:ddl/schema.sql'\;RUNSCRIPT FROM 'classpath:ddl/data.sql'" />
<property
name="javax.persistence.jdbc.driver"
value="org.h2.Driver" />
<property
name="hibernate.dialect"
value="org.hibernate.dialect.H2Dialect" />
<property
name="hibernate.show_sql"
value="true" />
<property
name="hibernate.format_sql"
value="true" />
</properties>
</persistence-unit>
</persistence>
我已经尝试过这些解决方案:
在persistence.xml测试文件中添加以下属性:
<property
name="hibernate.connection.characterEncoding"
value="utf8" />
<property
name="hibernate.connection.useUnicode"
value="true" />
<property
name="hibernate.connection.charSet"
value="UTF-8" />
在我的URL属性中添加?useUnicode=yes&characterEncoding=UTF-8
他们都没有为我工作...
NB:我的应用程序中没有使用spring框架
答案 0 :(得分:1)
我在import.sql文件中进行了插入查询,并且这些值的编码不正确。
添加属性
<property name="hibernate.hbm2ddl.charset_name" value="UTF-8" />
为我修复它。
如果您具有较旧的休眠模式(显然是5.2.3之前的版本),则可以在此线程中尝试其他解决方案: shared between the request and the response