XML
Incorrect XML Spring bean autowiring
Error
New
Last modified: 03 December 2024Reports incorrect autowiring of Spring beans configured in XML application contexts.
Example:
public interface FooInterface {...}
@Component public class FooBean implements FooInterface {...}
@Component public class OtherBean implements FooInterface {...}
@Component
public class MyComponent {
public void setFooInterface(FooInterface foo) {...}
}
<beans>
<bean class="beans.OtherBean" id="otherBean"/>
<bean class="beans.FooBean" id="fooBean"/>
<bean autowire="byType" class="beans.MyComponent" id="foo"/> <!-- reports "Could not autowire. There is more than one bean of 'FooInterface' type. -->
<!-- Beans: otherBean,fooBean. Properties: 'fooInterface' " -->
</beans>
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
SpringXmlAutowiringInspection
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Spring, 243.23126 |
Thanks for your feedback!
Was this page helpful?