-
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
@Autowired List<ToAutoWire> into Configuration that defines @Bean ToAutoWire fails [SPR-12646] #17247
Comments
Juergen Hoeller commented Rob, I'm afraid this is intentional: There is an inherent lifecycle problem in such a setup, with the As a way out, consider declaring the Juergen |
Rob Winch commented Juergen Hoeller Thank you for your response and the references to the related issues. I find it very surprising that this is intentional for a few reasons.
Given #1 will not be addressed, "Do you think it makes sense to address #2 and #3?" |
Juergen Hoeller commented The reason for #2 is Spring 4.0's fallback matching algorithm: Analogous to fallback matches for generic types vs raw types, instead of failing without a result, we'll do a best-effort pass and rather take an 'imperfect' match over none at all. This wasn't really designed for our present case but also applies to our scenario since we're not explicitly preventing it. So effectively, matches to other beans override self-references back to factory methods on the declaring bean, with no side effects triggered by attempts to resolve the self-references in such a case (which was the goal of #16634, still very much worth having). Just if it turns out that there are no proper matches to other beans, a self-reference is being considered as a fallback. I'm not a great fan of that end result but that's what it is right now. We could consider disallowing the fallback match altogether. As for raising an error in such a case, we're not doing that for regular self-references either: The autowire candidate algorithm explicitly skips references back to the declaring bean even if it does match the requested type, silently assuming that such self-references aren't intended. This dates back to Spring 2.5 even, IIRC. Now we're also skipping references back to factory methods on the declaring bean, through the same algorithm, and therefore silently proceed in such a case as well. All of that said, self-references weren't intended to work in the first place and shouldn't be relied on within our own configuration class arrangements. The simplest way out is to change the affected factory methods to static, explicitly declaring that they don't rely on instance state of the containing bean. However, preferably, a configuration class should just ask for injection of external matches and programmatically add defaults if necessary, or have the default instances declared on a separate configuration class that it imports. For your SEC-2822 purposes, does any of those alternatives work? Juergen |
Rob Winch commented Juergen Hoeller Thank you again for your follow up. In general, I find this behavior very unintuitive and think Spring should try to be more consistent or report an error (preferred).
Yes. I was able to use a static method to declare the Bean and everything is working now. Thank you for pointing me in this direction. |
Rob Winch opened SPR-12646 and commented
Starting with Spring 4.0.7 (4.0.6 works) the following setup will fail because only the ToAutoWire("a") will be
Autowired
:A few notes:
ConfigB
will correctly autowireToAutoWire("b")
Affects: 4.0.7, 4.0.8, 4.0.9, 4.1 GA, 4.1.1, 4.1.2, 4.1.3, 4.1.4
Reference URL: https://github.com/rwinch/spring-framework-issues/tree/SPR-12646
Issue Links:
@Configuration
class itself@Bean
methods too early in case of a circular referenceThe text was updated successfully, but these errors were encountered: