我不知道如何在Tomcat上更改我的JAX-WS WebService的URL。

本地主机:8080 / WSCalc / WSCalc?wsdl运行正常,但我想将URL更改为本地主机:8080 / ws / WSCalc / WSCalc?wsdl

使用以下配置,我可以运行localhost:8080 / ws / WSCalc /(它是index.jsp),但是我不能运行WebService localhost:8080 / ws / WSCalc / WSCalc?wsdl(它返回404)

目录webapps /包括:

WSCalc.war
WSCalc/
-index.jsp
-META-INF/context.xml
-WEB-INF/web.xml
-WEB-INF/sun-jaxws.xml
-WEB-INF/classes/*
-WEB-INF/lib/*


web.xml:

<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <listener>
        <listener-class>com.sun.xml.ws.transport.http.servlet.WSServletContextListener</listener-class>
    </listener>
    <servlet>
        <servlet-name>WSCalc</servlet-name>
        <servlet-class>com.sun.xml.ws.transport.http.servlet.WSServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>WSCalc</servlet-name>
        <url-pattern>/WSCalc</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
</web-app>


sun-jaxws.xml:

<endpoints version="2.0" xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime">
  <endpoint implementation="cz.vrana.WSCalc" name="WSCalc" url-pattern="/WSCalc"/>
</endpoints>


server.xml:

<Host name="localhost" appBase="webapps" unpackWars="true" autodeploy=""true">
     <Context path="/ws" docBase="." />
</Host>

最佳答案

您需要做的第一件事是更改应用程序部署的上下文。有关此信息,请参见The Context Container

另一方面,对于模式映射,您可以在web.xml中更改以/WSCalc/开头的所有路径。

<servlet-mapping>
    <servlet-name>WSCalc</servlet-name>
    <url-pattern>/WSCalc/*</url-pattern>
</servlet-mapping>


或者如果您想要一个模式

<servlet-mapping>
    <servlet-name>WSCalc</servlet-name>
    <url-pattern>/WSCalc/WSCalc</url-pattern>
</servlet-mapping>


在sun-jaxws.xml中更改为

<endpoint ... url-pattern="/WSCalc/WSCalc" />

09-05 02:54