Spring WS - Написание клиента
В этой главе мы узнаем, как создать клиент для сервера веб-приложений, созданного в Spring WS - Writing Server, используя Spring WS.
Шаг | Описание |
---|---|
1 | Обновите проект countryService в пакете com.tutorialspoint, как описано в главе Spring WS - Writing Server. |
2 | Создайте CountryServiceClient.java в пакете com.tutorialspoint.client и MainApp.java в пакете com.tutorialspoint, как описано в следующих шагах. |
CountryServiceClient.java
package com.tutorialspoint.client;
import org.springframework.ws.client.core.support.WebServiceGatewaySupport;
import com.tutorialspoint.GetCountryRequest;
import com.tutorialspoint.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;
}
}
MainApp.java
package com.tutorialspoint;
import org.springframework.oxm.jaxb.Jaxb2Marshaller;
import com.tutorialspoint.client.CountryServiceClient;
public class MainApp {
public static void main(String[] args) {
CountryServiceClient client = new CountryServiceClient();
Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
marshaller.setContextPath("com.tutorialspoint");
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());
}
}
Запустить веб-службу
Запустите сервер Tomcat и убедитесь, что мы можем получить доступ к другим веб-страницам из папки webapps с помощью стандартного браузера.
Тестовый клиент веб-службы
Щелкните правой кнопкой мыши MainApp.java в своем приложении в Eclipse и используйте run as Java Applicationкоманда. Если с приложением все в порядке, оно напечатает следующее сообщение.
Country : United States
Capital : Washington
Population : 46704314
Currency : USD
Здесь мы создали Клиента - CountryServiceClient.javaдля веб-службы на основе SOAP. MainApp использует CountryServiceClient для обращения к веб-сервису, делает почтовый запрос и получает данные.