What dependency needs to be added to avoid java.lang.NoClassDefFoundError: org/glassfish/jersey/internal/guava/Sets?
What dependency needs to be added to avoid java.lang.NoClassDefFoundError: org/glassfish/jersey/internal/guava/Sets?
知道要在 pom.xml 中为这个错误添加什么 Maven 依赖项(也是版本)吗?我正在使用外部 jar,所以不确定为此添加什么。
这是 jersey-common
库。您可以尝试引用最新版本:
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>3.0.3</version>
</dependency>
如果失败,您可以尝试降低版本号 this list。
知道要在 pom.xml 中为这个错误添加什么 Maven 依赖项(也是版本)吗?我正在使用外部 jar,所以不确定为此添加什么。
这是 jersey-common
库。您可以尝试引用最新版本:
<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>3.0.3</version>
</dependency>
如果失败,您可以尝试降低版本号 this list。