-
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
Spring may invoke @Bean methods too early in case of a circular reference [SPR-12018] #16634
Comments
Christopher Smith commented I have posted a minimal test case on GitHub. Note that the container invokes the |
Christopher Smith commented I will also note in passing that this is an issue specifically because |
Juergen Hoeller commented I couldn't reproduce that the Note that the problem goes away through removing the Juergen |
Juergen Hoeller commented As it seems, Juergen |
Christopher Smith commented This is a simplified version of my real-world case, in which I'm trying to modify I included the Ideally, I'd like to remove |
Juergen Hoeller commented It's of course irritating behavior but as far as my current analysis goes, it's an unfortunate consequence of the container's best-effort circular reference resolution algorithm. A null value may be a valid bean instance in some cases (e.g. as a return value of a factory method), and therefore a valid injection result. As a help for detecting such cases, a non-null assertion in your factory method that is supposed to return the pre-injected field would help. But anyway, you got a point that the container should be smarter about detecting and handling such circles. I just have a suspicion that even injecting null references may be exactly what some people want in some cases... Juergen |
Christopher Smith commented The non-null assertion would make it fail sooner, but it wouldn't get the wiring actually working. The behavior I expected was either to attempt to resolve the bean externally if one was available or to throw on duplicate beans. |
Juergen Hoeller commented It turns out that this self reference is the consequence of our autowire candidate filtering mechanism when trying to inject the That said, the general problem with the null value is that the Juergen |
Juergen Hoeller commented Indeed, I was just referring to detecting the effect sooner - assertions do help there, and are generally recommended for factory methods which access instance state. As for the problem itself, the correct solution is to exclude self-references not only to the very same bean (which we do for a long time already) but also to a factory method on the same bean. I've fixed this for 4.1 RC2 now; to be backported to 4.0.7 as well. Juergen |
Christopher Smith commented I think this is what I was trying to describe. Essentially, this is the reasoning I was expecting:
|
Juergen Hoeller commented After some back and forth, this feels like the right behavior to me, in particular since we've been excluding direct self references before... We're simply excluding references to factory methods on the original bean as well now. This will be available in the upcoming 4.1.0 snapshot. Feel free to give it a try... Juergen |
Christopher Smith commented "Factory" is overloaded. In this context, does "factory method" equal |
Juergen Hoeller commented "Factory method" is any method pointed to by the "factoryMethodName" attribute on a BeanDefinition: typically derived from an Juergen |
Christopher Smith opened SPR-12018 and commented
If an
@Configuration
superclass provides a method annotated@Bean
, the JavaConfig system can start invoking the superclass's@Bean
methods before the actual object is fully constructed. If a subclass overrides one of these@Bean
methods, and the superclass depends on retrieving a valid object from it, the superclass's initialization will fail.The JavaConfig system should not treat
@Configuration
objects as live service objects until all dependencies have been injected and the@PostConstruct
methods called.Affects: 4.0.6
Issue Links:
@Autowired
List into Configuration that defines@Bean
ToAutoWire fails@Configuration
class itself@Condition
exclusionThe text was updated successfully, but these errors were encountered: