@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...