程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> WebService的一些案例,WebService案例

WebService的一些案例,WebService案例

編輯:JAVA綜合教程

WebService的一些案例,WebService案例


       既然要實現WebService,首先先來創建一個Service類

package cn.happy.webservice;

import javax.jws.WebService;
import javax.xml.ws.Endpoint;
@WebService
public class Service {
    

    public void say(String name){
          System.out.println("Hello"+name);
      }
      public static void main(String[] args) {
         Endpoint.publish("http://localhost:50000/hello", new Service());
         System.out.println("server is listening ....");
      }
}

         根據上面創建的服務http://localhost:50000/hello添加?wsdl去解析一些關鍵類

  

      

          在提出一個測試類

package test;

import cn.happy.service.Service;
import cn.happy.service.ServiceService;

public class MyTest {

    /**
     * @param args
     */
    public static void main(String[] args) {
        ServiceService service=new ServiceService();
        Service port=service.getServicePort();
        port.say("好好好");
    }

}

 

 

    另外還有一些連接別的service服務的方式

 

     選取wsdl

 

 

     也可以直接通過http://192.168.15.54:50000/hello去網頁訪問,

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved