@HidetadaKomatu
springboot启动失败
Description:
The Bean Validation API is on the classpath but no implementation could be found
Action:
Add an implementation, such as Hibernate Validator, to the classpath
排除cxf-spring-boot-starter-jaxws里的validation-api
```
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-spring-boot-starter-jaxws</artifactId>
<version>3.2.5</version>
<exclusions>
<exclusion>
<groupId>javax.validation</groupId>
<artifactId>validation-api</artifactId>
</exclusion>
</exclusions>
</dependency>
```
springboot2.0集成webservice1.什么是webservice 简单来说,webservice就是远程调用技术,也叫XML Web Service WebService是一种可以接收从Internet或者I...