I have read about them through various resources. Importants ones are :-
- Wikipedia article about each of them
- What's the difference between JPA and Hibernate?
Here is my understanding about whats the difference b/w them. I am not sure if i am right about JPA vs ORM
ORM: Object Relational Mapping is concept/process of converting the data from Object oriented language to relational DB and vice versa For example in java its done with the help of reflection and jdbc.
Hibernate: Its the implementation of above concept.
JPA: Its the one step above ORM. Its high level API and specification so that different ORM tools can implement so that it provides the flexibility to developer to change the implementation from one ORM to another (for example if application uses the JPA api and implementaion is hibernate. In future it can switch to IBatis if required. But on the other if application directly lock the implementation with Hibernate without JPA platform, switiching is going to be herculean task)
There can be ORM implementation with/without JPA specification.For example as per this link under hibernate section only Hibernate versions 3.2 and later provide an implementation for the Java Persistence API