gpt4 book ai didi

web-services - 如何停止这个 javax.xml.ws.Endpoint 服务

转载 作者:行者123 更新时间:2023-12-04 19:09:37 25 4
gpt4 key购买 nike

我喜欢下面的代码以便开始发布 wsdl

    package my.mimos.stp.MelodyWS.webservice;

import javax.xml.ws.Endpoint;



public class Server {

public static void main(String[] args) {

Endpoint.publish("http://localhost:8081/Melody/MelodyService", new MelodyWS());

System.out.println("Melody service is ready");

}

}

如果我想停止该服务,我该怎么办?我对 MelodyWS 进行了更改,想重新发布它。

最佳答案

您必须保留对 Endpoint 对象的引用并调用 stop()方法:

Endpoint ep = Endpoint.create(new MelodyWS());
ep.publish("http://localhost:8081/Melody/MelodyService");
..
ep.stop();

关于web-services - 如何停止这个 javax.xml.ws.Endpoint 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16453999/

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