JPA Auditing
April 2, 2020
Spring Boot and JPA contain some features that will automatically record audit changes to Entities. I needed to make the following changes to my application to get this to work:
The application needed the @EnableApaAuditing annotation :::java package com.drumcoder.diary;
import org.modelmapper.ModelMapper; import org.springframework …