java.lang.LinkageError: ClassCastException

前端 未结 3 2051
-上瘾入骨i
-上瘾入骨i 2020-12-19 00:59

I do experience a really annoying problem with TestNG and RESTeasy.

I do have a class that runs several tests against an API class which uses the RESTeasy framework

3条回答
  •  抹茶落季
    2020-12-19 01:23

    I solved this problem by changing org.glassfish.jersey version in my pom.xml

    Below is my pom.xml

     
          javax.ws.rs
          javax.ws.rs-api
          2.1.1
     
     
          org.glassfish.jersey.core
          jersey-client
          2.31
     
    

提交回复
热议问题