Spring编写客户端
在本章中,我们将学习如何使用Spring WS为Spring WS编写服务器中创建的Web应用程序服务器创建客户端。
第1步: 按照Spring WS编写服务章节中的说明,更新项目countryService 下的com.zyiz
包。
第2步: 按照以下步骤中的说明在com.zyiz.client
包创建一个文件:CountryServiceClient.java,以及在com.zyiz
包下创建一个文件:MainApp.java
。
文件:CountryServiceClient.java 的代码如下 -
package com.zyiz.client; import org.springframework.ws.client.core.support.WebServiceGatewaySupport; import com.zyiz.GetCountryRequest; import com.zyiz.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.zyiz; import org.springframework.oxm.jaxb.Jaxb2Marshaller; import com.zyiz.client.CountryServiceClient; public class MainApp { public static void main(String[] args) { CountryServiceClient client = new CountryServiceClient(); Jaxb2Marshaller marshaller = new Jaxb2Marshaller(); marshaller.setContextPath("com.zyiz"); 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请求并获取数据。
上一篇:Spring服务器(单元测试)
下一篇:Spring客户端(单元测试)
- Java教程
- Vim教程
- Swing教程
- Spring教程
- Spring Web Services教程
- Spring MVC教程
- Spring JDBC教程
- Spring Cloud教程
- Spring Boot教程
- Spring Boot CLI教程
- Spring Batch教程
- Spring AOP教程
- PDFBox教程
- JSP教程
- JSF教程
- JPA教程
- Java面向对象设计
- Java设计模式
- Java虚拟机教程
- Java泛型教程
- Java正则表达式教程
- Java数据类型教程
- Java并发编程教程
- Java密码学教程
- Java多线程教程
- Java国际化(i18n)教程
- JavaFX教程
- Java9教程
扫描二维码
程序员编程王