gpt4 book ai didi

java - [持久性单元 : ]: unable to build EntityManagerFactory

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:14:45 24 4
gpt4 key购买 nike

如主题所述,我的问题是 EntityManagerFactory无法 build 。我正在使用 Maven + Hibernate。我正在连接到 MySQL 数据库 ( <jdbc://mysql://localhost:3306/<dbname> )。

这里奇怪的是在 Eclipse 中调试期间,它工作正常。但是当我使用 Maven build 构建它时,JAR 文件会抛出这样的错误。我已经检查了 Manifest 文件,所有必要的 JAR 都包含在类路径中。以下是控制台中显示的 JAR 错误:

============================================= ============================

Feb 3, 2012 5:01:16 PM org.hibernate.annotations.common.Version <clinit>
INFO: HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
Feb 3, 2012 5:01:16 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.0.1.Final}
Feb 3, 2012 5:01:16 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
Feb 3, 2012 5:01:16 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
Feb 3, 2012 5:01:16 PM org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure
INFO: HHH000402: Using Hibernate built-in connection pool (not for production use!)
Feb 3, 2012 5:01:16 PM class <name>.<name>.<name> <name>
SEVERE: [ERROR]: [PersistenceUnit: <name>] Unable to build EntityManagerFactory
[ERROR]: [PersistenceUnit: <name>] Unable to build EntityManagerFactory

============================================= ============================

下面是我的persistence.xml:

<persistence 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_1_0.xsd"
version="1.0">
<persistence-unit name="<name>">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>classname</class>
<properties>
<!-- <property name="hibernate.ejb.cfgfile" value="/classifyPE.cfg.xml"/> -->
<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
<property name="hibernate.connection.password" value="<value>" />
<property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/<name>" />
<property name="hibernate.connection.username" value="root" />
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
</properties>
</persistence-unit>
</persistence>

============================================= ============================

我在这里做错了什么?或者我缺少什么?
如前所述,它正在调试。但是当我将它打包到 JAR 中时(所有必需的 JAR 都存在于 libs 文件夹中),它不是。

最佳答案

在你的xml文件中添加这个

<property name="javax.persistence.validation.mode">none</property>

关于java - [持久性单元 : <name>]: unable to build EntityManagerFactory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9126531/

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