gpt4 book ai didi

java - 使用maven启动应用程序时出现 "Could not find artifact javax.xml.ws:WebServiceContext"错误如何解决?

转载 作者:行者123 更新时间:2023-11-30 06:08:08 25 4
gpt4 key购买 nike

我正在关注this guide构建一个名为 [Entando][2] 的应用程序。

特别是,我使用 maven 命令执行了 2.2 中的步骤来构建应用程序

mvn archetype:generate -Dfilter=entando-archetype-webapp-generic

并且成功了。

然后启动应用程序,编写为使用 maven 命令

mvn clean jetty:run

起初我遇到了描述的错误 here但由于那里的答案解决了。

现在我遇到了类似的 javax.xml.ws:WebServiceContext 错误:

我尝试通过添加以下内容来修改 pom.xml 文件:

<dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>WebServiceContext</artifactId>
<version>2.2.11</version>
</dependency>

但它不起作用,导致错误:

Could not find artifact javax.xml.ws:WebServiceContext:jar:1.1.1 in snapshot-repository (https://oss.sonatype.org/content/repositories/snapshots/)

如何解决?

最佳答案

我找到了一个解决方案,我会分享它以防有人需要它:

pom.xml 中我添加了:

    <dependency>
<groupId>javax.xml.ws</groupId>
<artifactId>jaxws-api</artifactId>
<version>2.2.6</version>
</dependency>

关于java - 使用maven启动应用程序时出现 "Could not find artifact javax.xml.ws:WebServiceContext"错误如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50853585/

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