Apache CXF使用Jetty发布WebService

一、概述

Apache CXF提供了用于方便地构建和开发WebService的可靠基础架构。它允许创建高性能和可扩展的服务,可以部署在Tomcat和基于Spring的轻量级容器中,也可以部署在更高级的服务器上,例如Jboss、WebSphere或WebLogic。 CXF提供了以下功能:

  • WebService服务标准支持:

Java API for XML Web Services (JAX-WS)
SOAP
WebService描述语言(Web Services Description Language ,WSDL)
消息传输优化机制(Message Transmission Optimization Mechanism,MTOM)
WS-Basic Profile
WS-Addressing
WS-Policy
WS-ReliableMessaging
WS-Security

  • 前端建模:CXF允许使用不同的前端API来创建Service。如CXF允许使用简单的工厂Bean并通过JAX-WS实现来创建WebService,允许创建动态WebService客户端。
  • 工具支持:CXF提供了在Java Bean、WebService和WSDL之间进行转换的工具,提供了对Maven和Ant集成的支持,并无缝地支持Spring集成。
  • RESTful支持:CXF支持Restful,并支持Java平台的JAX-RS实现。
  • 对不同传输和绑定的支持:CXF支持不同数据类型的传输,除了支持SOAP和HTTP协议绑定外,还支持JAXB和AEGIS绑定。
  • 对非XML绑定的支持:CXF支持非XML绑定,如JSON、CORBA、JBI和SCA等。
  • Code First和Xml First:CXF支持使用Code First或者Xml First的方式创建WebService。

 

二、使用CXF内置jetty发布WebService

maven:

<properties>  
        <cxf.version>3.1.4</cxf.version>  
</properties>

<dependency>  
        <groupId>org.apache.cxf</groupId>  
        <artifactId>cxf-rt-frontend-jaxws</artifactId>  
        <version>${cxf.version}</version>  
</dependency>  
  
<dependency>  
        <groupId>org.apache.cxf</groupId>  
        <artifactId>cxf-rt-transports-http</artifactId>  
        <version>${cxf.version}</version>  
</dependency>  
          
          
<!-- 使用cxf内置的jetty服务器发布WebService -->  
<dependency>  
        <groupId>org.apache.cxf</groupId>  
        <artifactId>cxf-rt-transports-http-jetty</artifactId>  
        <version>${cxf.version}</version>  
</dependency> 

 

---

接口:

@WebService
public interface HelloService{

    public String helloCxf();

    public String hello(String name);public User getUser(int id);

    public void saveUser(User user);

}

 

实现:

@WebService(serviceName = "helloService",
        endpointInterface = "cn.lg.ws.hellocxf.HelloService"
)
public class HelloServiceImpl implements HelloService{

    @Override
    public String helloCxf(){
        return "Hello CXF!";
    }

    @Override
    public String hello(String name)
    {
        return "Hello " + name;
    }

    @Override
    public User getUser(int id) {
        User u1 = new User();
        return u1;
    }

    @Override
    public void saveUser(User user) {
        System.out.println(user.toString());
    }

}

 

发布:

public class PublishService{
    /**
     * 使用CXF的JaxWsServerFactoryBean发布服务
     * @param
     */
    public static void main(String[] args) {
        JaxWsServerFactoryBean factory = new JaxWsServerFactoryBean();
        factory.setServiceClass(HelloService.class);
        //服务发布地址
        factory.setAddress("http://localhost:8088/soap/hello");
        factory.setServiceBean(new HelloServiceImpl());
        factory.create();
        System.out.println("publish success");
    }
}

 

使用浏览器访问 http://localhost:8088/soap/hello?wsdl 可以看到wsdl如下,则说明发布成功

 

使用CXF在客户端调用WebService:

public class ClientTest{
    public static void main(String[] args) {
        JaxWsProxyFactoryBean jwpfb = new JaxWsProxyFactoryBean();
        jwpfb.setServiceClass(HelloService.class);
        jwpfb.setAddress("http://localhost:8088/sop/hello");
        HelloService hs = (HelloService) jwpfb.create();
        System.out.println(hs.getUser(101));
        Q.p(hs.hello("luangeng"));
    }
}

---

相关类可通过以下命令产生:

wsimport -p com.ickes.cxf.client -keep http://localhost:8088/sop/hello?wsdl

 

转载于:https://www.cnblogs.com/luangeng/p/6575061.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值