Enterprise Java
-
Asynchronous and Transactional Event Listeners in Spring
The built-in event publication functionality exists from the early Spring versions and it is still useful for handling basic communication…
Read More » -
Neo4j: Cypher – Deleting duplicate nodes
I had a problem on a graph I was working on recently where I’d managed to create duplicate nodes because…
Read More » -
Call on me, or Asynchronous REST
This article is a very simple example of a working asynchronous REST application, made with Spring Boot + Java 8.…
Read More » -
Spring Boot – spring.config.name – Case Study
Externalizing Spring Boot application properties is useful when the same application code must be used with different configuration. If the…
Read More » -
Access the EntityManager from Spring Data JPA
Spring Data JPA allows you to rapidly develop your data access layer through the use of Repository interfaces. Occasionally you…
Read More » -
Add EntityManager.refresh to all Spring Data Repositories
In my previous post Access the EntityManager from Spring Data JPA I showed how to extend a single Spring Data…
Read More » -
Using MySQL JDBC Driver With Spring Boot
In this article, I will show you how to connect a MySQL database with your Spring Boot application. Tools used…
Read More » -
PagingAndSortingRepository – How to Use With Thymeleaf
For this tutorial, I will demonstrate how to display a list of a business’ clients in Thymeleaf with pagination. 1…
Read More » -
Validation in Thymeleaf + Spring
Overview Important topics we will be discussing are dealing with null values, empty strings, and validation of input so we…
Read More »