缺少CXF依赖的引入
本项目是基于SpringBoot,所以需要引入以下依赖
<dependency><groupId>org.apache.cxf</groupId><artifactId>cxf-spring-boot-starter-jaxws</artifactId><version>3.1.18</version>
</dependency>
常规的Spring项目可引入以下依赖
<dependency><groupId>org.apache.cxf</groupId><artifactId>cxf-rt-transports-http</artifactId><version>3.1.18</version>
</dependency>