@ -179,7 +179,7 @@ For example, the following listener will get invoked before an Aggregate gets sa
@@ -179,7 +179,7 @@ For example, the following listener will get invoked before an Aggregate gets sa
[source,java]
----
@Bean
public ApplicationListener<BeforeSave> timeStampingSaveTime() {
public ApplicationListener<BeforeSaveEvent> timeStampingSaveTime() {
return event -> {
@ -196,21 +196,21 @@ public ApplicationListener<BeforeSave> timeStampingSaveTime() {
@@ -196,21 +196,21 @@ public ApplicationListener<BeforeSave> timeStampingSaveTime() {
| before an aggregate root gets saved, i.e. inserted or updated but after the decision was made if it will get updated or deleted.
The event has a reference to an https://github.com/spring-projects/spring-data-jdbc/blob/master/src/main/java/org/springframework/data/jdbc/core/conversion/AggregateChange.java[`AggregateChange`] instance.
The instance can be modified by adding or removing https://github.com/spring-projects/spring-data-jdbc/blob/master/src/main/java/org/springframework/data/jdbc/core/conversion/DbAction.java[`DbAction`]s.
@ -71,7 +71,7 @@ public class JdbcEntityTemplate implements JdbcEntityOperations {
@@ -71,7 +71,7 @@ public class JdbcEntityTemplate implements JdbcEntityOperations {
@ -79,7 +79,7 @@ public class JdbcEntityTemplate implements JdbcEntityOperations {
@@ -79,7 +79,7 @@ public class JdbcEntityTemplate implements JdbcEntityOperations {
@ -148,11 +148,11 @@ public class JdbcEntityTemplate implements JdbcEntityOperations {
@@ -148,11 +148,11 @@ public class JdbcEntityTemplate implements JdbcEntityOperations {
@ -196,7 +196,7 @@ public class JdbcRepositoryManipulateDbActionsIntegrationTests {
@@ -196,7 +196,7 @@ public class JdbcRepositoryManipulateDbActionsIntegrationTests {
@ -210,9 +210,9 @@ public class JdbcRepositoryManipulateDbActionsIntegrationTests {
@@ -210,9 +210,9 @@ public class JdbcRepositoryManipulateDbActionsIntegrationTests {
@ -77,7 +77,7 @@ public class JdbcRepositoryPropertyConversionIntegrationTests {
@@ -77,7 +77,7 @@ public class JdbcRepositoryPropertyConversionIntegrationTests {