运行一个简单的Hibernate项目没有任何效果

时间:2014-01-06 14:11:26

标签: java hibernate postgresql

我正在使用Postgres 9.2,hibernate 4.3.0 final。

我有testClass

@Entity
@Table(name="testClass")

public class testClass implements Serializable {

    @Id
    @Column(name = "id")
    private Integer id;

    @Column(name="name")
    private String name;

    public Integer getId() {
        return id;
    }
}

从另一个班级的方法创建:

try {
   new Configuration().configure("/hibernate.cfg.xml");
   new testClass();
} catch(Exception e) {
   System.out.println(e);
}

这是我的hibernate.xml.cfg:

<?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-configuration>
    <session-factory name="postgres">
        <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
        <property name="hibernate.connection.password">123</property>
        <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/postgres</property>
        <property name="hibernate.connection.username">postgres</property>
        <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
        <property name="hbm2ddl.auto">create</property>
        <mapping class="testClass"/>

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

它在jboss服务器端执行:

[2014-01-06 05:59:01,592] Artifact server:ejb: Artifact is deployed successfully
17:59:22,880 INFO  [org.hibernate.cfg.Configuration] configuring from resource: /hibernate.cfg.xml
17:59:22,881 INFO  [org.hibernate.cfg.Configuration] Configuration resource: /hibernate.cfg.xml
17:59:22,889 INFO  [org.hibernate.cfg.Configuration] Configured SessionFactory: postgres

但没有任何反应:(
我在PostgresDB中检查新表但是什么都没有。

我错过了什么?

1 个答案:

答案 0 :(得分:6)

您期望发生什么?

您创建一个新的空实体,然后退出。

您没有persist()具有实体管理员的实体(或以Hibernate术语save()Session)。因此,就数据库而言,它永远不存在。它只是一个普通的Java对象,并且在删除最后一次引用时会收集垃圾。

你需要:

  • 使用Configuation生成SessionFactory并将SessionFactory存储在可访问的位置。您不想一直创建它,它应该在启动时创建。容器管理的持久性和注入可以很方便。

  • Session

  • 获取SessionFactory
  • 将新对象传递给Session.save(...),因此在正确生成密钥后,它会在数据库中获得INSERT等。

重新阅读Hibernate和/或JPA教程以涵盖对象生命周期的基础知识可能是个好主意。 The Getting Started Guide可能是一个很好的起点,尤其是the section on native Hibernate APIs

就个人而言,如果我做的是基本的东西,我会使用JPA API代替。 PersistenceUnitEntityManager等。请参阅Getting started with Hibernate and JPA