What is Maven dependency for Hibernate?

Hi,

What is Maven dependency for Hibernate?

How to add the maven dependency of Hibernate in Java based project. I have project in Java and now i want to use the Hibernate in my project.

How to use Hibernate in Maven?

Tell me the code of maven dependency in pom.xml file of a maven project.

Thanks

View Answers

July 13, 2017 at 10:49 AM

Hi,

Hibernate is ORM framework and its very popular in Java developers. It is very popular for developing data access layer for enterprise applications.

In maven based project you can easily include it by adding dependency code into pom.xml file.

Here is the code Hibernate maven dependency code that you should include in pom.xml file:

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>5.2.10.Final</version>
</dependency>

Check Hibernate tutorials section for complete Hibernate online tutorials.

Thanks









Related Tutorials/Questions & Answers:
Advertisements