Reports incorrect method references in the factory-method attribute of the <bean> element.
Example:
public class MyFactory {
public static FooBean createBean() {}
}
<beans>
<bean class="MyFactory" id="factory"/>
<bean factory-bean="factory" factory-method="createBean"/> <!-- Factory method 'createBean' must not be static -->
</beans>