Spring Expression Language (SpEL) を static フィールドに注入しようとしている ('null' 値が注入される) ことを報告します。

例:


@Controller
public class MyController {
    @Value("#{systemProperties['some.key']}")  //  static フィールドへの注入は許可されていません
    static String spelWithDefaultValue;
}