Spring コンポーネントの Autowired および注入された static メソッド/フィールドを報告します。

例:


@Component
public class MyComponent {
	@Autowired
	static FooInterface foo;  // "static メンバーをオートワイヤリングしてはなりません" が報告されます
}