I get the NoSuchMethodError when trying build the REST service using jersey. Any help would be much appreciated.
My POM.xml :
I faced the issue too recently. Check if class with name com.sun.jersey.core.reflection.ReflectionHelper
is present in any other jar.
For me I had caliper.jar
also, and it was being loaded from there instead. That class did not have getContextClassLoaderPA.
Do a grep -ir com.sun.jersey.core.reflection.ReflectionHelper *
to see if any other jar shows up the same class.