tags:

views:

186

answers:

4

In our java project, We decided to use ORM object/relational mapping technique in objects' persisting.

But we hesitate to use a specific framework to do this.So, what is the best framework for java can do this task?

+7  A: 

Hibernate is an excellent choice.

Chris Ballance
Look no further.
OscarRyz
+2  A: 

As Chris says, Hibernate is an excellent choice.

A (not-exhaustive) list can be found on wikipedia

Hibernate is a superset of JPA. If you stay within the bounds of the JPA, then you can theoretically switch to a differenct JPA implementation at a later point...

toolkit
+2  A: 

As toolkit said about what Chris says, Hibernate is the choice.

:D :D :D :D

OscarRyz
+1  A: 

Hibernate of course, but if you seek standardizations, then JPA or JDO

Mohammed