@PreUpdate never called on respository.save()
In a spring-boot 3 app with spring-boot-starter-data-jpa I have an entity: @Entity public class SomeJson { public static final ObjectMapper MAPPER = new ObjectMapper(); public static final TypeReference<HashMap<String, Object>> MAP_REF = new TypeReference<HashMap<String, Object>>() {}; // some fields public String jsonData; @Transient public HashMap<String, Object> data = new HashMap<String, Object>(); @Transient private int initialHashCode = … Read more