The Bean Validation API is on the classpath but no implementation could be found
Unable to create a Configuration, because no Bean Validation provider could be found. Add a provider
增加bean的驗證依賴
hibernate Validator ,缺少了可用的驗證依賴的實現類,增加下面這個依賴
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>5.2.4.Final</version> </dependency>
轉: