运行我的代码后,Java应用程序不会关闭

时间:2015-06-15 13:54:10

标签: java hibernate

我在Hibernate 4中尝试Netbeans 8,问题是在提交完成后应用程序仍在运行。

这是代码

public class TestHibernateAnotation {


/**
 * @param args the command line arguments
 */
public static void main(String[] args) {

Users user = new Users();
 Users user2 = new Users();

user2.setUser_name("Djalil");
user.setUser_name("Daniel");

Session session = HibernateUtil.getSessionFactory().openSession();
session.beginTransaction();
session.save(user);
session.save(user2);
session.getTransaction().commit();
session.close();
System.out.print("End of code");

}
}

我的Hibernate配置

<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate      Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-   configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/SalesTest</property>
<property name="hibernate.connection.username">postgres</property>
<property name="hibernate.connection.password">admin</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.hbm2ddl.auto">create</property>
<mapping class="testhibernateanotation.NewClass"/>
<mapping class="testhibernateanotation.Users"/>

关于这个问题的任何想法 谢谢,

4 个答案:

答案 0 :(得分:2)

您需要在session.close();之后显式销毁服务注册表。这似乎是较新的hibernate版本中的一个错误。所以基本上你最后清理的代码应该是这样的:

sessionFactory.close();
StandardServiceRegistryBuilder.destroy(sessionFactory.getSessionFactoryOptions().getServiceRegistry());

插件:我发布了一个示例here - 包括此问题。

答案 1 :(得分:1)

I found the solution (in an other post), it would be adding this to your config files:

<property name="hibernate.c3p0.acquire_increment">1</property>
<property name="hibernate.c3p0.idle_test_period">100</property>
<property name="hibernate.c3p0.max_size">10</property>
<property name="hibernate.c3p0.max_statements">10</property>
<property name="hibernate.c3p0.min_size">10</property>
<property name="hibernate.c3p0.timeout">100</property>

They said that it is bug in hibernate 4

答案 2 :(得分:0)

您将不得不关闭SessionFactory对象[HibernateUtil.getSessionFactory()。openSession()]

SessionFactory是一个重量级对象;它通常是在应用程序启动期间创建的,并保留以备后用。SessionFactory是线程安全的对象,并由应用程序的所有线程使用。 我们可以在任何应用程序中为每个数据库创建一个SessionFactory实现。如果您的应用程序引用多个数据库,则需要为每个数据库创建一个SessionFactory。

它是如何设计休眠SessionFactory的。

https://docs.jboss.org/hibernate/orm/3.5/api/org/hibernate/SessionFactory.html

答案 3 :(得分:-1)

Session s = HibernateUtil.getSessionFactory().getCurrentSession();
s.beginTransaction();
// ...
StandardServiceRegistryBuilder.destroy(s.getSessionFactory().getSessionFactoryOptions().getServiceRegistry());