-
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
Regression: custom composed @Profile annotation without runtime retention no longer supported with component scanning #23901
Comments
@pavelspicak, did you declare your custom annotation with runtime retention as follows? @Retention(RetentionPolicy.RUNTIME)
@Profile("sapConnector")
public @interface SapConnectorProfile {
} |
Also, how is the component annotated with Is that via component scanning, |
Hi, I get a similar problem with my composed annotation contains |
Hello, you are right @sbrannen. I was missing With Thank you very much. |
It works for me also but I curious why it needs the annotation for version 5.2 since before it wasn't? |
@pavelspicak and @kingtran2112, thanks for the feedback. Glad to hear that it works now for you. Please note, however, that In light of that, it is not possible that it worked before Spring Framework 5.2 without |
I am sorry but you are not right with "In light of that, it is not possible that it worked before Spring Framework 5.2 without I have created a small app with Spring Boot version You can take a look here: https://github.com/pavelspicak/customProfileAnnotation If you run
|
@pavelspicak, thanks for providing the example project. I'll take a look. |
Hi @pavelspicak,
You're correct! It turns out that my statement was only partially true. So I apologize for that. My statement was true for any annotations looked up by Spring using reflection. However, as your example project demonstrates, the same was not true for annotations looked up via ASM (i.e., by analyzing the compiled byte code directly). So, thanks for providing the example project, because that helped me get to the bottom of this mystery! 👍 Speaking of which, I executed
That showed that something must have been reading the "invisible" Prior to Spring Framework 5.2, our ASM-based annotation processing also looked up class retention annotations by accident. This bug was fixed in #22886, and the new As of Spring Framework 5.2, all annotations are now required to be annotated with In addition, please note that Spring only uses ASM to look up annotations during component scanning (e.g., for annotations on component-scanned classes such as In other words, most user code should not be affected by this change in Spring Framework 5.2. I'll add a note to the Core Container upgrade notes to point this out as well. I hope this clarifies everything, and thanks again for sticking your ground and providing a failing example project! Cheers, Sam |
Hi @sbrannen, thank you very much for the clarification. |
Affects: Spring 5.2
If I create custom
@Profile
annotation such as this:and then annotate some bean with
@SapConnectorProfile
and set the propertyspring.profiles.active=demoConnector
, the bean is still loaded.If I use
@Profile("sapConnector")
directly on the bean, the bean is not loaded.My original question on stack overflow: https://stackoverflow.com/questions/58554912/custom-spring-profile-annotation
The text was updated successfully, but these errors were encountered: