-
Notifications
You must be signed in to change notification settings - Fork 38.4k
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
@Valid annotation can't establish dependency relationship between beans #29730
Comments
@Validated
bean method
@vishalsingh2972 Thank you! I am not authorized to assign, so I will wait for @sbrannen's response. |
@vishalsingh2972 thanks for the offer but we haven't triaged the issue yet so nobody can really work on it really. Except if you've found what the issue was? |
@uphy I can't reproduce the issue that you have described. Both with framework 5.3 and 6.x, the shutdown is initiated with the sleep there and it ends up with:
Going forward, please share a sample that we can run rather than code in text that we'll have to copy/paste anyway in a project to be able to investigate. You can do that by attaching a zip to the issue or sharing a link to a GitHub repository with the code. I am going to close this but we can reopen if you manage to reproduce. Please provide more instructions in that case. |
@snicoll Thank you for checking. I could reproduce the issue again with latest environment. See the following link for the complete demo project: Could you reopen this issue? |
@Validated
bean method
Thanks, I've reproduced it now. This is similar to #22526 |
As of 6.2, we leniently tolerate late retrieval of existing instances during |
We can't call
@Validated
bean's method on application shutdown becausedefaultValidator
bean is destroyed first even though we are referring it.Sample Application
MyBean
with@Validated
depends ondefaultValidator
implicitly throughMethodValidationInterceptor
MyService
depends onMyBean
MyService
takes a while to destroy and it callsMyBean
at lastBeanCreationNotAllowedException
See the following link for the complete demo app code:
https://github.com/uphy/20231010_BeanCreationNotAllowedExceptionDemo
Workaround
@DependsOn("defaultValidator")
toMyBean
@ConfigurationProperties
annotation toMyBean
(ref spring-projects/spring-boot@f60f3cb)MethodValidationExcludeFilter
to exclude method validation fromMyBean
Environment
The text was updated successfully, but these errors were encountered: