Caused by:java.io.IOException: Cannot find any registered HttpDestinationFactory from the Bus.
解决方法:
原因是缺少依赖包
在pom.xml文件中添加:
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http-jetty</artifactId>
<version>3.1.6</version>
</dependency>