Spring編寫用戶端


在本章中,我們將學習如何使用Spring WS為Spring WS編寫伺服器中建立的Web應用程式伺服器建立用戶端。

第1步: 按照Spring WS編寫服務章節中的說明,更新專案countryService 下的com.yiibai包。

第2步: 按照以下步驟中的說明在com.yiibai.client包建立一個檔案:CountryServiceClient.java,以及在com.yiibai包下建立一個檔案:MainApp.java

檔案:CountryServiceClient.java 的程式碼如下 -

package com.yiibai.client;

import org.springframework.ws.client.core.support.WebServiceGatewaySupport;
import com.yiibai.GetCountryRequest;
import com.yiibai.GetCountryResponse;

public class CountryServiceClient extends WebServiceGatewaySupport {
   public GetCountryResponse getCountryDetails(String country){
      String uri = "http://localhost:8080/countryService/";
      GetCountryRequest request = new GetCountryRequest();
      request.setName(country);

      GetCountryResponse response =(GetCountryResponse) getWebServiceTemplate()
         .marshalSendAndReceive(uri, request);
      return response;
   }
}

檔案:CountryServiceClient.java 的程式碼如下 -

package com.yiibai;

import org.springframework.oxm.jaxb.Jaxb2Marshaller;
import com.yiibai.client.CountryServiceClient;

public class MainApp {
   public static void main(String[] args) {
      CountryServiceClient client = new CountryServiceClient();
      Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
      marshaller.setContextPath("com.yiibai");
      client.setMarshaller(marshaller);
      client.setUnmarshaller(marshaller);
      GetCountryResponse response = client.getCountryDetails("United States");

      System.out.println("Country : " + response.getCountry().getName());
      System.out.println("Capital : " + response.getCountry().getCapital());
      System.out.println("Population : " + response.getCountry().getPopulation());
      System.out.println("Currency : " + response.getCountry().getCurrency());
   }
}

啟動Web服務

啟動Tomcat伺服器,並確保可以使用標準瀏覽器從webapps檔案夾存取其他網頁。

測試Web服務用戶端

在Eclipse下的應用程式中右鍵單擊MainApp.java並使用作為Java Application命令執行。 如果應用程式一切正常,它將列印以下訊息。

Country : United States
Capital : Washington
Population : 46704314
Currency : USD

在這裡,我們基於SOAP的Web服務建立了一個Client - CountryServiceClient.java。 MainApp使用CountryServiceClient命中Web服務,發出POST請求並獲取資料。