Jersey/REST--NoSuchMethodError: com.sun.jersey.core.reflection.ReflectionHelper.getContextClassLoaderPA()Ljava/security/PrivilegedAction;

前端 未结 2 920
醉话见心
醉话见心 2021-01-15 07:07

I get the NoSuchMethodError when trying build the REST service using jersey. Any help would be much appreciated.

My POM.xml :

             


        
2条回答
  •  日久生厌
    2021-01-15 07:34

    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.

提交回复
热议问题