Hibernate无法解析cfg文件/创建会话工厂

时间:2015-12-29 17:16:06

标签: hibernate sessionfactory hibernate.cfg.xml

现在坚持这个错误几天,任何帮助将不胜感激。谢谢!

以下是来自控制台的错误消息:

  

log4j:WARN找不到logger(org.hibernate.cfg.Environment)的appender。       log4j:WARN请正确初始化log4j系统。       线程“main”中的异常org.hibernate.HibernateException:无法解析配置:/hibernate.cfg.xml           在org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1491)           在org.hibernate.cfg.Configuration.configure(Configuration.java:1425)           在org.hibernate.cfg.Configuration.configure(Configuration.java:1411)           在hibernateTest.HibernateTest.main(HibernateTest.java:18)        引起:org.dom4j.DocumentException:连接超时:连接嵌套异常:连接超时:连接           在org.dom4j.io.SAXReader.read(SAXReader.java:484)           在org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1481)           ......还有3个

这是我的hibernate.cfg.xml:

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>

    <!-- Database connection settings -->
    <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
    <property name="connection.url">jdbc:oracle:thin:@ora-gpldev.xyz.com:1242:DUO231D</property>
    <property name="connection.username">user</property>
    <property name="connection.password">pass</property>

    <!-- JDBC connection pool (use the built-in) -->
    <property name="connection.pool_size">1</property>

    <!-- SQL dialect -->
    <property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>

    <!-- Disable the second-level cache  -->
    <property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property>

    <!-- Echo all executed SQL to stdout -->
    <property name="show_sql">true</property>

    <!-- Drop and re-create the database schema on startup -->
    <property name="hbm2ddl.auto">create</property>

    <!-- Names the annotated entity class -->
    <mapping class="helloHibernate.User"/>

</session-factory>
</hibernate-configuration>

这是我的HibernateTest.java类:

package hibernateTest;

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import helloHibernate.User;

public class HibernateTest {

public static void main(String[] args) {
    User user = new User();
    user.setUserId(1);
    user.setUserName("TheOne");

    SessionFactory sessionFactory = new    Configuration().configure().buildSessionFactory();
    Session session = sessionFactory.openSession();
    session.beginTransaction();
    session.save(user);
    session.getTransaction().commit(); 
    System.out.println("Saved!");
}
}

这是我的用户类:

package helloHibernate;

import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;

@Entity
@Table(name= "USER.USER2_TABLE")
public class User {

@Id
private int userId;
private String userName;

public void setUserId(int userId){
    this.userId = userId; 
}

public int getUserId() {
    return userId;
}

public String getUserName() {
    return userName;
}
public void setUserName(String userName) {
    this.userName = userName;
}
}

2 个答案:

答案 0 :(得分:1)

似乎Hibernate正在尝试加载DTD文件以验证hibernate.cfg.xml文件及其失败。要解决此问题,您需要在配置文件中添加正确的DTD。

您需要在配置文件中添加如下DTD,并且还要检查lib中所需的jar。

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
      "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
      "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

或者您可以从hibernate-mapping-3.0.dtd和hibernate-configuration-3.0.dtd复制dtd,它位于hibernate文件夹中。 E,G。

hibernate-core-4.3.5.Final.jar\org\hibernate\hibernate-configuration-3.0.dtd 
hibernate-core-4.3.5.Final.jar\org\hibernate\hibernate-mapping-3.0.dtd 

如果上述解决方案没有解决您的问题而且您仍然得到相同的例外,那么因为, Hibernate正在尝试加载DTD文件以验证hibernate.cfg.xml文件,但它失败了,因为没有互联网连接。 因此,使用classpath在系统中提供DTD文件位置。因此离线工作的DocType将是;

<!DOCTYPE hibernate-configuration SYSTEM 
    "classpath://org/hibernate/hibernate-configuration-3.0.dtd">

<!DOCTYPE hibernate-configuration SYSTEM 
    "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

通常服务器位于防火墙后面,无法访问互联网。在这些情况下,这些方法可以变得方便。相同的配置也适用于hibernate映射xml文件。

答案 1 :(得分:0)

我想我发现了你的问题。你有错误的罐子。所以发生了什么,你去了一个hibernate教程网站并下载了一个罐子列表。但他们错了。你需要在hibernate网站上下载这些罐子,然后在“必要的”网站下面添加这些罐子。夹。但是你也需要一个JTA jar,因为某些原因jar不在所需的jar文件夹中。