Skip to content
Advertisement

program using hibernate does not terminate

I created a program using Hibernate.

The program reaches the main function end, nevertheless the program is running.

I wonder if it happens when SessionFactory is configured using Hibernate Version 4.x.

Is the way to configure wrong?


manual1_1_first_hibernate_apps.java

JavaScript

Util.java

JavaScript

The following console log snippets when program terminate and use buildSessionFactory method.

JavaScript

but if do not use deprecated buildSessionFactory method and terminated(program is running), the above two lines do not appear.

ENVIRONMENT:

 Hibernate 4.3.1
 DERBY
 JRE 1.8
 IntelliJ IDEA 13

Advertisement

Answer

maybe, I solved this problem.

I saw the thread dump after Util.getSessionFactory().close() called, a thread named “pool-2-thread-1” state was TIMED_WAITING (parking).

The following snippets dump

JavaScript

I thought the cause is thread named “pool-2-thread-1” that created by buildSessionFactory method.

As a result of comparing the two buildSessionFactory method, I noticed that ServiceRegistry resources has not released.

Program successfully terminated by releasing it.

The following code, I adding.

Util.java

JavaScript

thanks.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement