ALZ
ALZ

Reputation: 1998

From where to download hibernate3.jar?

I started to learn hibernate and want to create sample application in Eclipse, in which to include hibernate jar file, but I cannot find it (hibernate3.jar) nor in hibernate-release-4.3.5.Final.zip (downloaded from http://hibernate.org/orm/downloads/) nor in hibernate-search-4.5.1.Final-dist.zip (downloaded from http://sourceforge.net/projects/hibernate/files/hibernate3/) archives.

From where should I get it?

Upvotes: 2

Views: 13263

Answers (3)

user3044236
user3044236

Reputation: 251

agree with ALZ: in version 4, it seems be under /hibernate-release-4.x.x.Final/lib/required folder, and is renamed to: hibernate-core-4.x.x.Final.jar I included this jar and the compilation errors went away.

Upvotes: 1

ALZ
ALZ

Reputation: 1998

Actually jar is called hibernate-core-4.3.5.Final.jar. I used Maven to include it and all it dependencies in project, like were suggested upper.

Upvotes: 2

Ankit Katiyar
Ankit Katiyar

Reputation: 3001

Check out these

http://sourceforge.net/projects/hibernate/files/hibernate3/3.1.3/

I suggest you learn latest stable version and all the jars available at http://hibernate.org/orm/downloads/

may be you have some other issue.

you may try this

http://www.java2s.com/Code/Jar/h/hibernate3.htm

all the required jars are there

Upvotes: 1

Related Questions