1

I begin with Spring Framework to do the object relation mapping process, but i am not sure about if Spring 4 has an implicit ORM or just use other ORM Frameworks (like Hibernate, iBatis, etc).

Please help me to know. I have found some responses that say that Spring has an ORM and others say the opposite.

J. Abel
  • 681
  • 12
  • 27

1 Answers1

5

spring does not have its own orm implementation. spring's orm is a layer of abstraction that adds enhancements to the actual orm implementation that you use like hibernate/JDO or JPA.

jshcode
  • 171
  • 2