Is Java EE required for hibernation

Are there any additional Java EE libraries needed to run standalone Hibernate Java applications, or is there a sufficient standard SDK?

+3
source share
3 answers

Hibernate works great on Java SE. It can be used as a JPA implementation on Java EE, but JPA can also be used perfectly on Java SE.

+4
source

Java EE is not required to run Hibernate. I think it's a good idea to start with the Hibernate documentation. I think it is very intuitive and easy to follow.
http://docs.jboss.org/hibernate/stable/core/reference/en/html/tutorial-firstapp.html

jar : https://www.hibernate.org/344.html

+3

Any JPA provider, including Hibernate, can be used outside of the Java EE container. There are several instructions for several providers in ORMs vs SQL: JPA history .

+1
source

Source: https://habr.com/ru/post/1709426/


All Articles