Posts tagged with JPA
What is the difference between JDBC, JPA, Hibernate and Spring Data?
In this blogpost I talk about the differences between JDBC, JPA, Hibernate and the various Spring Data projects and how they relate.
Read more →Writing dynamic queries with Spring Data JPA
With Spring Data, we can easily write queries usinng @Query. For more dynamic queries, we can use the Example and Specification API, which we'll explore here.
Read more →Loading initial data with Spring
With Spring, you can set up your initial data in different ways. In this tutorial we'll discover database migration tools, and other options.
Read more →JPA made easy with Spring data's repositories
With Spring Data it's very easy to create a simple CRUD application without the hassle of creating your own DAO's. Spring Boot makes it even easier for you.
Read more →Testing your Spring Data JPA repository
Spring Data allows you to create repositories by writing a simple interface. In this article I'll write some integration tests for a repository using DBUnit
Read more →