Spring Data JPA Repository Populators 1. Introduction In this quick article, we’ll explore Spring JPA Repository Populators with a quick example. The Spring Data JPA repository populator is a great alternative for data.sql script. Spring Data JPA repository populator supports JSON and XML file formats. In the following sections, we’ll… Continue Reading spring-data-jpa-repository-populators

Spring JPA – Multiple Databases 1. Overview In this tutorial, we’ll implement a simple Spring configuration for a Spring Data JPA system with multiple databases. Further reading: Spring Data JPA – Derived Delete Methods Learn how to define Spring Data deleteBy and removeBy methods Read more → Configuring a DataSource… Continue Reading spring-data-jpa-multiple-databases

Transactions with Spring and JPA 1. Overview This tutorial will discuss the right way to configure Spring Transactions, how to use the @Transactional annotation and common pitfalls. For a more in-depth discussion on the core persistence configuration, check out the Spring with JPA tutorial. Basically, there are two distinct ways… Continue Reading transaction-configuration-with-jpa-and-spring