一、简单的Webservice发布
在实际的工作中自己发布Webservice的情况还是很小的,所以在这里简单的介绍两种发布Webservice
2.1 原生态JDK定义
1.编写服务接口
@WebService //WebService注解
public interface IHelloWorld {
public String getHellow( String name);
}
2.服务接口实现
@WebService //WebService注解
public class HelloWorld implements IHelloWorld {
public String getHellow(String name) {
String str="你好,世界;你好,"+name;
return str;
}
}
3.暴露服务
public static void main(String[] args) {
String address="http://localhost:8000/hellow";
HelloWorld hellow = new HelloWorld();
Endpoint.publish(address, hellow);
System.out.println("wsdl地址:"+address+"?wsdl")