gpt4 book ai didi

web-services - 信息 : WSSERVLET14: JAX-WS servlet initializing

转载 作者:行者123 更新时间:2023-11-28 22:08:47 27 4
gpt4 key购买 nike

我一直在尝试在 tomcat 上部署一个简单的 Web 服务,但我没有成功,它总是返回 404 错误。

我使用了这个例子中的代码:

JAX-WS 未初始化:enter image description here

enter image description here

所以我的 ws 设置正确了吗?但我真的不知道为什么它仍然不起作用。

谢谢你的时间,

机器人

最佳答案

使用您当前的设置,在您的浏览器中尝试:

http://localhost:8080/jaxwsExample-1.0.0-SNAPSHOT/HelloWs

您可以看到问题(在第一个链接中):

Now we just build the project with maven by mvn clean install, rename it to jaxwsExample.war (we can do that automatically in maven, but omit it for simplicity) and deploy it to the Tomcat.

因此,在 pom.xml 中添加 finalName:

<project ...>
<modelVersion>4.0.0</modelVersion>

<groupId>dk.sorokin.maksim</groupId>
<artifactId>jaxwsExample</artifactId>
<packaging>war</packaging>
<version>1.0.0-SNAPSHOT</version>

<name>JAX-WS Example</name>

<dependencies>
<dependency>
<groupId>com.sun.xml.ws</groupId>
<artifactId>jaxws-rt</artifactId>
<version>2.1.3</version>
</dependency>
</dependencies>

<build>
<finalName>jaxwsExample</finalName>
</build>

</project>

关于web-services - 信息 : WSSERVLET14: JAX-WS servlet initializing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18400026/

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