webservice restful接口跟soap协议的接口实现大同小异,只是在提供服务的类/接口的注解上存在差异,具体看下面的代码,然后自己对比下就可以了。
用到的基础类
User.java
1 @XmlRootElement(name="User") 2 public class User { 3 4 private String userName; 5 private String sex; 6 private int age; 7 8 public User(String userName, String sex, int age) { 9 super(); 10 this.userName = userName; 11 this.sex = sex; 12 this.age = age; 13 } 14 15 public User() { 16 super(); 17 } 18 19 public String getUserName() { 20 return userName; 21 } 22 public void setUserName(String userName) { 23 this.userName = userName; 24 } 25 public String getSex() { 26 return sex; 27 } 28 public void setSex(String sex) { 29 this.sex = sex; 30 } 31 public int getAge() { 32 return age; 33 } 34 public void setAge(int age) { 35 this.age = age; 36 } 37 38 public static void main(String[] args) throws IOException { 39 System.setProperty("http.proxySet", "true"); 40 41 System.setProperty("http.proxyHost", "192.168.1.20"); 42 43 System.setProperty("http.proxyPort", "8080"); 44 45 URL url = new URL("http://www.baidu.com"); 46 47 URLConnection con =url.openConnection(); 48 49 System.out.println(con); 50 } 51 }
接下来是服务提供类官网:www.fhadmin.org ,PhopuRestfulService.java
1 @Path("/phopuService") 2 public class PhopuRestfulService { 3 4 5 Logger logger = Logger.getLogger(PhopuRestfulServiceImpl.class); 6 7 @GET 8 @Produces(MediaType.APPLICATION_JSON) //指定返回数据的类型 json字符串 9 //@Consumes(MediaType.TEXT_PLAIN) //指定请求数据的类型 文本字符串 10 @Path("/getUser/{userId}") 11 public User getUser(@PathParam("userId")String userId) { 12 this.logger.info("Call getUser() method...."+userId); 13 User user = new User(); 14 user.setUserName("中文"); 15 user.setAge(26); 16 user.setSex("m"); 17 return user; 18 } 19 20 @POST 21 @Produces(MediaType.APPLICATION_JSON) //指定返回数据的类型 json字符串 22 //@Consumes(MediaType.TEXT_PLAIN) //指定请求数据的类型 文本字符串 23 @Path("/getUserPost") 24 public User getUserPost(String userId) { 25 this.logger.info("Call getUserPost() method...."+userId); 26 User user = new User(); 27 user.setUserName("中文"); 28 user.setAge(26); 29 user.setSex("m"); 30 return user; 31 } 32 }
web.xml配置,跟soap协议的接口一样
1 <!-- CXF webservice 配置 --> 2 <servlet> 3 <servlet-name>cxf-phopu</servlet-name> 4 <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class> 5 </servlet> 6 <servlet-mapping> 7 <servlet-name>cxf-phopu</servlet-name> 8 <url-pattern>/services/*</url-pattern> 9 </servlet-mapping>
Spring整合配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:jaxrs="http://cxf.apache.org/jaxrs" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd"> <import resource="classpath:/META-INF/cxf/cxf.xml" /> <import resource="classpath:/META-INF/cxf/cxf-servlet.xml" /> <import resource="classpath:/META-INF/cxf/cxf-extension-soap.xml" /> <!-- 配置restful json 解析器官网:www.fhadmin.org , 用CXF自带的JSONProvider需要注意以下几点 -1、dropRootElement 默认为false,则Json格式会将类名作为第一个节点,如{Customer:{"id":123,"name":"John"}},如果配置为true,则Json格式为{"id":123,"name":"John"}。 -2、dropCollectionWrapperElement属性默认为false,则当遇到Collection时,Json会在集合中将容器中类名作为一个节点,比如{"Customer":{{"id":123,"name":"John"}}},而设置为false,则JSon格式为{{"id":123,"name":"John"}} -3、serializeAsArray属性官网:www.fhadmin.org 默认为false,则当遇到Collecion时,格式为{{"id":123,"name":"John"}},如果设置为true,则格式为[{"id":123,"name":"john"}],而Gson等解析为后者 <bean id="jsonProviders" class="org.apache.cxf.jaxrs.provider.json.JSONProvider"> <property name="dropRootElement" value="true" /> <property name="dropCollectionWrapperElement" value="true" /> <property name="serializeAsArray" value="true" /> </bean> --> <!-- 服务类 --> <bean id="phopuService" class="com.phopu.service.PhopuRestfulService" /> <jaxrs:server id="service" address="/"> <jaxrs:inInterceptors> <bean class="org.apache.cxf.interceptor.LoggingInInterceptor" /> </jaxrs:inInterceptors> <!--serviceBeans:暴露的WebService服务类--> <jaxrs:serviceBeans> <ref bean="phopuService" /> </jaxrs:serviceBeans> <!--支持的协议--> <jaxrs:extensionMappings> <entry key="json" value="application/json"/> <entry key="xml" value="application/xml" /> <entry key="text" value="text/plain" /> </jaxrs:extensionMappings> <!--对象转换--> <jaxrs:providers> <!-- <ref bean="jsonProviders" /> 这个地方直接用CXF的对象转换器会存在问题,当接口发布,第一次访问没问题,但是在访问服务就会报错,等后续在研究下 --> <bean class="org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider" /> </jaxrs:providers> </jaxrs:server> </beans>
客户端调用示例:
对于get方式的服务,直接在浏览器中输入 http://localhost:8080/phopu/services/phopuService/getUser/101010500 就可以直接看到返回的json字符串
{"userName":"中文","sex":"m","age":26}
客户端调用代码如下:
1 public static void getWeatherPostTest() throws Exception{ 2 String url = "http://localhost:8080/phopu/services/phopuService/getUserPost"; 3 HttpClient httpClient = HttpClients.createSystem(); 4 //HttpGet httpGet = new HttpGet(url); //接口get请求,post not allowed 5 HttpPost httpPost = new HttpPost(url); 6 httpPost.addHeader(CONTENT_TYPE_NAME, "text/plain"); 7 StringEntity se = new StringEntity("101010500"); 8 se.setContentType("text/plain"); 9 httpPost.setEntity(se); 10 HttpResponse response = httpClient.execute(httpPost); 11 12 int status = response.getStatusLine().getStatusCode(); 13 log.info("[接口返回状态吗] : " + status); 14 15 String weatherInfo = ClientUtil.getReturnStr(response); 16 17 log.info("[接口返回信息] : " + weatherInfo); 18 }
客户端调用返回信息如下:
ClientUtil类是我自己封装的一个读取response返回信息的类,encoding是UTF-8
1 public static String getReturnStr(HttpResponse response) throws Exception { 2 String result = null; 3 BufferedInputStream buffer = new BufferedInputStream(response.getEntity().getContent()); 4 byte[] bytes = new byte[1024]; 5 int line = 0; 6 StringBuilder builder = new StringBuilder(); 7 while ((line = buffer.read(bytes)) != -1) { 8 builder.append(new String(bytes, 0, line, HTTP_SERVER_ENCODING)); 9 } 10 result = builder.toString(); 11 return result; 12 }
到这里,就介绍完了,大家手动去操作一下吧,有问题大家一块交流。
相关推荐
在本文中,我们将深入探讨如何将Spring框架与Apache CXF集成,以创建RESTful Web服务。Spring是一个广泛使用的Java企业级应用开发框架,而CXF则是一个强大的服务框架,支持Web服务(包括SOAP和RESTful)的开发。通过...
本教程将深入探讨如何在Spring环境中集成CXF以实现RESTful WebService接口。 首先,我们需要理解REST(Representational State Transfer)的概念。REST是一种软件架构风格,用于设计网络应用程序。它的核心思想是...
【Spring-CXF WebService】是基于Spring框架和Apache CXF实现的一个Web服务示例,它展示了如何在Spring环境中集成CXF来创建、部署和消费Web服务。Spring-CXF结合了Spring的强大功能和CXF的优秀Web服务支持,使得开发...
SSH整合CXF Webservice实例详解 在Java世界中,SSH(Spring、Struts、Hibernate)是一种常见的企业级应用开发框架组合,它提供了强大的MVC(Model-View-Controller)架构支持,以及持久层管理和业务逻辑处理。而CXF...
【描述】"cxf spring maven 实例 webservice"强调了这个示例的重点在于创建Web服务。Web服务是一种通过网络进行通信的应用程序,通常基于开放标准如WSDL(Web服务描述语言)和SOAP(简单对象访问协议)。CXF允许...
综上所述,这个项目为Java开发者提供了一个使用Spring和CXF构建Web服务的起点,涵盖了从基础架构到具体实现的多个层次,有助于快速启动Web服务开发,并且能够在MyEclipse环境中无缝集成,方便进行进一步的定制和扩展...
【CXF Webservice 开发实例】是基于Apache CXF框架实现Web服务的一种实践教程,它主要涉及了如何将CXF与Spring框架进行整合,以构建高效、可维护的Web服务。CXF是一个开源的Java框架,它允许开发者创建和消费各种Web...
本篇将深入探讨如何将Spring与CXF整合,以实现高效地调用Web Services。 1. **Spring框架**:Spring以其依赖注入(Dependency Injection, DI)和面向切面编程(Aspect-Oriented Programming, AOP)为核心,提供了一...
总的来说,这个"CXF Webservice Demo"是一个完整的示例,涵盖了从基础的字符串传递到复杂的对象交换,以及与Spring的集成。通过学习和理解这个示例,开发者能够更好地掌握如何在实际项目中使用CXF来创建高效、灵活且...
在"ws_spring_test"这个压缩包中,包含了一个实际的示例项目,展示了如何将Spring与CXF整合。这个例子很可能包含了以下关键组件: 1. **Spring配置文件**:通常以`applicationContext.xml`命名,定义了Spring容器的...
在Java开发领域,Spring框架以其强大的依赖注入和面向切面编程能力被广泛应用,而CXF则是一个优秀的开源服务开发框架,支持SOAP和RESTful服务。当Spring与CXF结合使用时,可以方便地创建和消费Web服务。本篇文章将...
在本文中,我们将深入探讨如何使用Apache CXF 2与Spring 2.5框架来开发Web服务实例。Apache CXF是一个流行的开源项目,它提供了一种简单且强大的方式来实现和消费SOAP和RESTful Web服务。Spring框架则以其模块化、...
这个项目对于初学者来说,是一个很好的实践平台,可以帮助理解Web服务的工作原理,掌握Spring、CXF和Tomcat的整合使用。同时,通过实际操作,还能加深对依赖注入、服务发布和消费等概念的理解。在实际项目中,这种...
本篇文章将详细探讨如何运用Spring和CXF来开发Web Service,并通过实例演示如何调用Web Service中的方法向数据库中插入数据。 首先,让我们了解Spring框架。Spring是一个开源Java平台,它为开发企业级应用提供了...
2. **CXF集成**:SpringBoot可以通过`spring-boot-starter-cxf`依赖来引入CXF。在配置文件`application.properties`或`application.yml`中,我们可以设置CXF的端点地址和其他相关配置。 3. **服务发布**:在服务...
本实例将介绍如何将Spring与CXF集成,以实现Webservice的发布和调用,并涉及拦截器的配置。 首先,我们来看`spring与cxf集成配置小实例`的服务器端配置。在`cxf_test_spring_server.zip`中,你将会找到服务器端的...
本篇文章将详细探讨如何使用CXF实现WebService,并通过实例进行深入解析。 **一、CXF简介** Apache CXF是一个强大的开源工具,它提供了多种方式来创建和使用Web服务,包括SOAP、RESTful API、XML以及JSON等。CXF...
总的来说,"cxf+spring的webservice实例"是一个实践性的教程,旨在帮助开发者理解如何在Spring环境中利用CXF快速构建和部署Web服务。通过这个实例,你可以掌握从创建服务到发布、测试的整个流程,进一步提升你的Java...
在本文中,我们将探讨如何将Spring与Apache CXF框架整合,以发布RESTful风格的Web服务。RESTful Web服务是一种轻量级的架构风格,它基于HTTP协议,使用URI(Uniform Resource Identifier)来定位资源,通过HTTP方法...
在本文中,我们将深入探讨如何将Apache CXF 2.7与Spring 3框架集成,以便在Java环境中创建和消费Web服务。这是一个重要的技术组合,因为它允许开发人员利用Spring的依赖注入和管理能力,以及CXF的强大Web服务支持。...