gpt4 book ai didi

java - org.glassfish.jersey.internal.RuntimeDelegateImpl 未找到

转载 作者:IT老高 更新时间:2023-10-28 21:13:43 30 4
gpt4 key购买 nike

我在我的项目中使用 jersey,并试图从字符串中解析 URI。

UriBuilder.fromUri("http://localhost:8000").build();

代码很简单,但下面出现错误

java.lang.ClassNotFoundException: org.glassfish.jersey.internal.RuntimeDelegateImpl

程序似乎找不到委托(delegate)。我已经导入了 javax.ws.rs.core.UriBuilder 并拥有应该在我的构建路径中包含委托(delegate)的 jersey-common 2.0。但我仍然收到此错误。

有人知道如何解决吗?谢谢!

最佳答案

如果您使用的是 Maven,请使用以下依赖项:

<dependency>
<groupId>org.glassfish.jersey.core</groupId>
<artifactId>jersey-common</artifactId>
<version>2.22.2</version>
<scope>test</scope>
</dependency>

对于 Gradle,以下内容将起作用:

testImplementation 'org.glassfish.jersey.core:jersey-common:2.22.2'

关于java - org.glassfish.jersey.internal.RuntimeDelegateImpl 未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19452887/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com