我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Apache CXF中如何构建RESTful Web Service

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Apache CXF中如何构建RESTful Web Service

Apache CXF中如何构建RESTful Web Service,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

介绍一下怎么通过CXF来发布RESTful的Web Service.

首先是实体类,注意其中的@XmlRootElement注解

package com.googlecode.garbagecan.cxfstudy.jaxrs;   import java.util.Date;   import javax.xml.bind.annotation.XmlRootElement;   @XmlRootElement(name="Customer")   public class Customer {      private String id;      private String name;      private Date birthday;      public String getId() {          return id;      }      public void setId(String id) {          this.id = id;      }      public String getName() {          return name;      }      public void setName(String name) {          this.name = name;      }      public Date getBirthday() {          return birthday;      }      public void setBirthday(Date birthday) {          this.birthday = birthday;      }      @Override     public String toString() {          return org.apache.commons.lang.builder.ToStringBuilder.reflectionToString(this);      }  }

RESTful Web Service接口类,可以通过修改@Produces注解来声明暴露接口返回的json还是xml数据格式

package com.googlecode.garbagecan.cxfstudy.jaxrs;   import javax.ws.rs.GET;  import javax.ws.rs.Path;  import javax.ws.rs.PathParam;  import javax.ws.rs.Produces;  import javax.ws.rs.QueryParam;   @Path(value = "/customer")   @Produces("*/*")  //@Produces("application/xml")  //@Produces("application/json")  public interface CustomerService {      @GET     @Path(value = "/{id}/info")      Customer findCustomerById(@PathParam("id")String id);            @GET     @Path(value = "/search")      Customer findCustomerByName(@QueryParam("name")String name);  }

RESTful Web Service接口实现类

package com.googlecode.garbagecan.cxfstudy.jaxrs;   import java.util.Calendar;   public class CustomerServiceImpl implements CustomerService {       public Customer findCustomerById(String id) {          Customer customer = new Customer();          customer.setId(id);          customer.setName(id);          customer.setBirthday(Calendar.getInstance().getTime());          return customer;      }            public Customer findCustomerByName(String name) {          Customer customer = new Customer();          customer.setId(name);          customer.setName(name);          customer.setBirthday(Calendar.getInstance().getTime());          return customer;      }  }

Server端代码

package com.googlecode.garbagecan.cxfstudy.jaxrs;   import org.apache.cxf.interceptor.LoggingInInterceptor;  import org.apache.cxf.interceptor.LoggingOutInterceptor;  import org.apache.cxf.jaxrs.JAXRSServerFactoryBean;   public class MyServer {      public static void main(String[] args) throws Exception {          JAXRSServerFactoryBean factoryBean = new JAXRSServerFactoryBean();          factoryBean.getInInterceptors().add(new LoggingInInterceptor());          factoryBean.getOutInterceptors().add(new LoggingOutInterceptor());          factoryBean.setResourceClasses(CustomerServiceImpl.class);          factoryBean.setAddress("http://localhost:9000/ws/jaxrs");          factoryBean.create();      }  }

Client端代码

package com.googlecode.garbagecan.cxfstudy.jaxrs;   import org.apache.commons.httpclient.HttpClient;  import org.apache.commons.httpclient.HttpStatus;  import org.apache.commons.httpclient.methods.GetMethod;   public class MyClient {       public static void main(String[] args) throws Exception {          go("http://localhost:9000/ws/jaxrs/customer/1/info");          go("http://localhost:9000/ws/jaxrs/customer/search?name=abc");      }            private static void go(String url) throws Exception {          HttpClient client = new HttpClient();          GetMethod method = new GetMethod(url);          int statusCode = client.executeMethod(method);          if (statusCode != HttpStatus.SC_OK) {              System.err.println("Method failed: " + method.getStatusLine());          }          byte[] responseBody = method.getResponseBody();          System.out.println(new String(responseBody));      }  }

测试

首先运行MyServer类,然后运行MyClient类来验证Web Service。

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注编程网行业资讯频道,感谢您对编程网的支持。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Apache CXF中如何构建RESTful Web Service

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Apache CXF中如何构建RESTful Web Service

Apache CXF中如何构建RESTful Web Service,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。介绍一下怎么通过CXF来发布RESTful的W
2023-06-17

Apache CXF中如何创建安全的Web Service

Apache CXF中如何创建安全的Web Service,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。我们在使用Web Service的过程中,很多情况是需要对web ser
2023-06-17

Apache CXF中如何压缩Web Service数据

这期内容当中小编将会给大家带来有关Apache CXF中如何压缩Web Service数据,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。在现实应用中有些时候会有比较大的数据对象需要传输,或者在一个比较慢的
2023-06-17

如何构建 Golang RESTful API,并使用中间件进行身份验证?

本文介绍了如何构建 golang restful api。首先,通过导入必要的库、定义数据模型和创建路由来构建 restful api。其次,使用 go-chi/chigot 和 go-chi/chi/middleware 创建和应用中间件
如何构建 Golang RESTful API,并使用中间件进行身份验证?
2024-05-14

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录