So, I would like to use the findbugs annotations to suppress warnings we deem ok code.
Do we need to deploy the annotation.jar and jsr305.jar into our production runtime, or do we only need these jars in the classpath for our Eclipse project and our unix build environment?
Annotations have varying retention policies:
Logic would indicate that SOURCE retention annotations would not be needed at runtime, CLASS should not, and RUNTIME must be available.
A quick glance at the JSR 305 annotations indicates that they use the RUNTIME retention policy (example), which indicates to me that these jars would indeed be needed to load the classes at runtime to satisfy the annotation contract.
But I haven't actually tested this myself.
Per my related question, you normally won't run into any problems if these annotations aren't present at runtime, even though some of them do have @Retention(RUNTIME)
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With