Reports autowired and injected static methods/fields of Spring components.

Example:


@Component
public class MyComponent {
	@Autowired
	static FooInterface foo;  // reports "Don't autowire static members"
}