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
  • 890
  • 3
  • 17
  • 38

1 Answers1

6

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
  • 181
  • 2