使用spring Boot 项目要结合cxf发布webService接口,因为要使用jsp,所以总是能发布接口不能用jsp,最后解决的办法是把cxf的一系列jar都注释掉,只要下面一个
<dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-spring-boot-starter-jaxws</artifactId> <version>3.2.1</version> </dependency>
- Spring boot 1.4.x ------>cxf-spring-boot-starter-jaxws 3.1.x
- Spring boot 1.5.x------->cxf-spring-boot-starter-jaxws 3.2.x