Lazy load in BeanPersistController.preDelete does not work in batch mode#3657
Open
rPraml wants to merge 2 commits intoebean-orm:masterfrom
Open
Lazy load in BeanPersistController.preDelete does not work in batch mode#3657rPraml wants to merge 2 commits intoebean-orm:masterfrom
rPraml wants to merge 2 commits intoebean-orm:masterfrom
Conversation
rPraml
commented
Jul 24, 2025
| assertThat(master).isNotNull(); | ||
| // CHECKME: Deleting of master was denied by the PersistListener | ||
| // What about detail? Is this intended, that it will be deleted? | ||
| assertThat(master.getDetails()).hasSize(0); |
Contributor
Author
There was a problem hiding this comment.
CHECKME:
Can you tell me if the PersistController is intended to protect a bean from deletion? If so, then I would expect that if the deletion process was prevented by UtMaster, its details wouldn't be deleted.
But if you say the PersistController only takes care of the physical persistence, then that would be OK (although perhaps this should be explicitly mentioned again in the documentation for preInsert/Update/Delete).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We found an issue, where lazyLoad in preDelete of does not work in batch mode.
Example:
What happens here:
localBeaninstead. The lazyLoad happens on the wrong beanWorkaround
request.bean()and fetch data explicit with a query in preDelete (fromDb = DB.find(cls, request.bean().getId()))Possible fix: