Spring Boot + CXF to build a WebService services resources

  pom.xml file introduction of package:

<!--WerbService CXF依赖-->
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-frontend-jaxws</artifactId>
    <version>3.1.12</version>
</dependency>
<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-transports-http</artifactId>
    <version>3.1.12</version>
</dependency>

  Construction of server resources:

  https://www.cnblogs.com/xibei666/p/8970549.html

  https://blog.csdn.net/cs_hnu_scw/article/details/80181762

  https://www.imooc.com/article/25537?block_id=tuijian_wz

  Problems encountered and solutions:

  https://www.cnblogs.com/Big-Boss/p/11912679.html

  

Guess you like

Origin www.cnblogs.com/Big-Boss/p/11955934.html