Difference between JAX-WS, Axis2 and CXF

后端 未结 4 1571
梦如初夏
梦如初夏 2020-12-12 09:22

What is the difference between:

  1. JAX-WS
  2. Axis2
  3. CXF

All three can be used to create webservices in Java.
As of I know JAX-WS

4条回答
  •  眼角桃花
    2020-12-12 09:57

    In short.

    WSDL WS-* are language-agnostic.

    JAX-WS are Java standard to build web service.

    Apache CXF and Apache Axis 2 are two implementations of JAX-WS. They also offer JAX-RS implementations so that you can build Restful services.

    CXF has better integration with Spring, and Camel(camel-cxf). And Axis 2 seems not have a active release.

提交回复
热议问题