gpt4 book ai didi

jpa - Eclipselink 字符编码等价

转载 作者:行者123 更新时间:2023-12-04 20:53:18 24 4
gpt4 key购买 nike

我在 JPA 中遇到了问题 - EclipseLink characterEncoding 问题。我的项目的persistent.xml 是;

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="jpa-1" transaction-type="RESOURCE_LOCAL">
<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
<class>com.usta.jpa1.KITAPLAR</class>
<properties>
<property name="javax.persistence.jdbc.url" value="jdbc:derby://localhost:1527/dBase"/>
<property name="javax.persistence.jdbc.password" value="app"/>
<property name="javax.persistence.jdbc.driver" value="org.apache.derby.jdbc.ClientDriver"/>
<property name="javax.persistence.jdbc.user" value="app"/>
<property name="eclipselink.ddl-generation" value="create-tables"/>
</properties>
</persistence-unit>
</persistence>

但是,我运行我的应用程序,将对象保存到我的数据库中,然后我的土耳其语字符无法正确显示。我想将编码字符集更改为 UTF-8。我找到了;
<property name="hibernate.connection.useUnicode" value="true" />
<property name="hibernate.connection.characterEncoding" value="UTF-8" />

然后找不到 eclipseLink 等价物

最佳答案

EclipseLink 似乎确实没有用于编码的实现特定的配置参数:

http://www.eclipse.org/eclipselink/api/2.2/org/eclipse/persistence/config/PersistenceUnitProperties.html

但是,请确保您的项目以 UTF-8 格式编译。检查 Eclipse 是否正确配置:Window->Preferences->General->Workspace 文本文件编码为 UTF-8。此外,如果是这种情况,请将您的 Maven 项目配置为以 UTF-8 编译:

http://maven.apache.org/general.html

关于jpa - Eclipselink 字符编码等价,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7902438/

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