Spring Data JPA - Introduction



Spring Data JPA is another great framework from the Spring Data family. It has been designed on top of JPA, which makes it easy to implements JPA based repositories. The objective of Spring Data JPA is to improve the implementation of data access layers. The developers at Spring usually make necessary improvements over the time to make things easier for us by removing a lot of boilerplate code as discussed above. Spring Data is such a framework that removes a lot of configuration and coding hassle when we deal with data access layers for our application.

Advertisements