Spring WS - Cliente de Escrita
Neste capítulo, aprenderemos como criar um cliente para o servidor de aplicativos da web criado no Spring WS - Writing Server usando Spring WS.
Degrau | Descrição |
---|---|
1 | Atualize o projeto countryService no pacote com.tutorialspoint conforme explicado no capítulo Spring WS - Writing Server. |
2 | Crie CountryServiceClient.java no pacote com.tutorialspoint.client e MainApp.java no pacote com.tutorialspoint conforme explicado nas etapas a seguir. |
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());
}
}
Inicie o serviço da web
Inicie o servidor Tomcat e certifique-se de que podemos acessar outras páginas da web a partir da pasta webapps usando um navegador padrão.
Cliente de serviço da Web de teste
Clique com o botão direito em MainApp.java em seu aplicativo no Eclipse e use run as Java Applicationcomando. Se tudo estiver ok com o aplicativo, ele imprimirá a seguinte mensagem.
Country : United States
Capital : Washington
Population : 46704314
Currency : USD
Aqui, criamos um cliente - CountryServiceClient.javapara o serviço da web baseado em SOAP. MainApp usa CountryServiceClient para acessar o serviço da web, fazer uma solicitação de postagem e obter os dados.