Incorrectly configured XML bean lookup-method
Reports incorrect <lookup-method> for a bean in XML application contexts.
Example:
public abstract class FooLookupBean {
protected abstract FooBean createCommand();
private FooBean createCommand() {...}
protected static FooBean createCommandStatic() {...}
protected abstract FooBean createWithArgs(String foo);
protected abstract OtherBean createOtherBean();
}
<beans>
<bean class="FooLookupBean" id="lookupTest">
<lookup-method bean="fooBean" name="createCommand"/>
<!-- private -->
<lookup-method bean="fooBean" name="createCommand"/> <!-- "Method must be public or protected" -->
<!-- static -->
<lookup-method bean="fooBean" name="createCommandStatic"/> <!-- Static method not allowed here -->
<!-- with arguments -->
<lookup-method bean="fooBean" name="createWithArgs"/> <!-- Method must have no parameters -->
<!-- not exist -->
<lookup-method bean="fooBean" name="unknown"/> <!-- unknown method -->
<!-- mismatch -->
<lookup-method bean="fooBean" name="createOtherBean"/> <!-- Lookup method return type does not match the 'FooBean' bean class -->
</bean>
<bean class="FooBean" id="fooBean"/>
<bean class="OtherBean" id="otherBean"/>
</beans>
Locating this inspection
- 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.
SpringBeanLookupMethodInspection- Via Settings dialog
Path to the inspection settings via IntelliJ Platform IDE Settings dialog, when you need to adjust inspection settings directly from your IDE.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Spring, 242.22892 |
Last modified: 11 September 2024