Hi,
I want to confirm that Spring Java Config is the way to go.
Now, we’re facing many warnings like:
[jersey.internal.Errors] logErrors The following warnings have been detected: WARNING: HK2 service reification failed for [one of our REST api classes] with an exception:\nMultiException stack 1 of 2\njava.lang.NoSuchMethodException: Could not find a suitable constructor in [one of our REST api classes] class.\n\tat org.glassfish.jersey.inject.hk2.JerseyClassAnalyzer.getConstructor...
although it works!
Also, the following internal packages warnings:
com.atlassian.confluence.util.io
but it is part of AttachmentTextExtractor
as in @Override public Optional<InputStreamSource> extract(Attachment att)
org.apache.commons.io
, org.apache.commons.io.output
which we don’t user in our code
Any ideas how to fix these issues.
Thanks