From Null-pointer
SuppressWarnings
@SuppressWarnings({"SpringJavaAutowiringInspection"})
/* suppress autowiring warning at class level */
public class MyClass {
@SuppressWarnings({"SpringJavaAutowiringInspection"})
@Resource
/* suppress at field level */
private MyField field.
}