Class BeforeConvertEvent<E>
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
org.springframework.data.relational.core.mapping.event.AbstractRelationalEvent<E>
org.springframework.data.relational.core.mapping.event.RelationalEventWithEntity<E>
org.springframework.data.relational.core.mapping.event.BeforeConvertEvent<E>
- All Implemented Interfaces:
Serializable,RelationalEvent<E>,WithEntity<E>
Gets published before an aggregate gets converted into a database change, but after the decision was made if an
insert or an update is to be performed.
The persisting process works as follows:
- A decision is made, if the aggregate is new and therefore should be inserted or if it is not new and therefore should be updated.
BeforeConvertCallbackandBeforeConvertEventget published.- An
AggregateChangeobject is created for the aggregate. It includes theDbActioninstances to be executed. This means that all the deletes, updates and inserts to be performed are determined. These actions reference entities of the aggregates in order to access values to be used in the SQL statements. This step also determines if the id of an entity gets passed to the database or if the database is expected to generate that id. BeforeSaveCallbackandBeforeSaveEventget published.- SQL statements get applied to the database.
AfterSaveCallbackandAfterSaveEventget published.
- Since:
- 1.1
- Author:
- Jens Schauder, Mark Paluch
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.springframework.data.relational.core.mapping.event.RelationalEventWithEntity
getEntity, getTypeMethods inherited from class org.springframework.context.ApplicationEvent
getTimestampMethods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
BeforeConvertEvent
- Parameters:
instance- the saved entity. Must not be null.- Since:
- 2.1.4
-