如何从jax ws webservice的8080更改端口?

时间:2017-10-24 03:15:31

标签: java web-services tomcat soap jax-ws

我遵循了https://www.mkyong.com/webservices/jax-ws/deploy-jax-ws-web-services-on-tomcat/本教程,并在端口8080上运行了一个Web服务。

我看到了这个选项:

jax-ws webservice's endpoint is always localhost

但我想知道在可配置文件中设置端口是否还有其他方法?

我只有sun-jaxws.xml和web.xml。我还需要1个文件吗?

我将它定义为:

@WebService(endpointInterface="com.abc.service.ClassName",portName = "WebservicePort", 
serviceName = "ABCFunctions")

Sun jaxws.xml看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<endpoints
  xmlns="http://java.sun.com/xml/ns/jax-ws/ri/runtime"
  version="2.0">
  <endpoint
      name="ABCFunctions"
      implementation="com.abc.service.ClassName""
      url-pattern="/ABCFunctions"/>
</endpoints>

web.xml看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, 
Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/j2ee/dtds/web-app_2_3.dtd">

<web-app>
    <listener>
        <listener-class>
                com.sun.xml.ws.transport.http.servlet.WSServletContextListener
        </listener-class>
    </listener>
    <servlet>
        <servlet-name>ABCFunctions</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>ABCFunctions</servlet-name>
        <url-pattern>/ABCFunctions</url-pattern>
    </servlet-mapping>
    <session-config>
        <session-timeout>120</session-timeout>
    </session-config>
</web-app>

截至目前,我只能通过Tomcat的server.xml连接器配置进行更改。 有没有办法让webservice有一个单独的端口??

<Connector port="8080" protocol="HTTP/1.1" 
       connectionTimeout="20000" 
       redirectPort="8443" />

1 个答案:

答案 0 :(得分:0)

发布网络服务时,您可以更改端口号