-
Notifications
You must be signed in to change notification settings - Fork 132
Add lifecycle callbacks and EntityCallback support #215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
We will add Spring Data-typical Lifecycle callbacks using application event listeners and the |
@mp911de Does it mean there will be Interfaces like |
Exactly. |
Also may be supporting SQL Function around inserting value: #268 |
We now support entity callbacks for: * AfterConvertCallback * BeforeConvertCallback * BeforeSaveCallback * AfterSaveCallback through R2dbcEntityTemplate.
Reintroduce deprecated setBeanFactory(…) method. Extract code into methods. Ensure that versioned entities are eagerly initialized to allow retries.
We now support entity callbacks for: * AfterConvertCallback * BeforeConvertCallback * BeforeSaveCallback * AfterSaveCallback through R2dbcEntityTemplate. Original pull request: #397.
Simplify what's new section. Original pull request: #397.
Reintroduce deprecated setBeanFactory(…) method. Extract code into methods. Ensure that versioned entities are eagerly initialized to allow retries. Original pull request: #397.
Formatting. Original pull request: #397.
Done. |
It would be nice if Spring Data R2DBC has hooks like
@PostLoad
,@PrePersist
,@PreUpdate
in JPA so that some computation for transient props could take place.The text was updated successfully, but these errors were encountered: