Like described in Set findbugs NotNull as default for all classes under a package I annotated my packages so all class fields are automatically marked as @NonNull
.
Now are all the @Autowired
not nullable, too, which leads to many FindBugs errors that these fields are not initialized. Is there a config to tell FindBugs that all fields should be @NonNull
except @Autowired
fields?