标签:
package cn.ljl.sand.jws.chapter0.service; import javax.jws.WebService; import javax.xml.ws.Endpoint; @WebService public class HelloService { public String hello(String name) { return "Hello," + name; } public static void main(String[] args) { String address = "http://localhost:6666/service/hello"; Endpoint.publish(address, new HelloService()); } }
这里类有两个地方值得注意:
?wsdl
。标签:
原文地址:http://www.cnblogs.com/ywjy/p/5152983.html