Exception in thread “main” java.lang.NoClassDefFoundError: Could not initialize class com.sun.jersey.core.header.MediaTypes

后端 未结 3 727
陌清茗
陌清茗 2021-01-02 12:39

I\'m trying to run a jersey client and facing this issue.

WS Class:

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
im         


        
3条回答
  •  北荒
    北荒 (楼主)
    2021-01-02 13:15

    In my case I was not pulling in the jersey-core jar as a runtime dependency. Once i added it seemed to work fine.

提交回复
热议问题