Reports attempts to inject Spring Expression Language (SpEL) into static fields ('null' value is injected).

Example:


@Controller
public class MyController {
    @Value("#{systemProperties['some.key']}")  //  Injection to static fields is not allowed
    static String spelWithDefaultValue;
}