項(xiàng)目框架:ssm
github地址:https://github.com/wosyingjun/beauty_ssm
出現(xiàn)報(bào)錯(cuò)(本地運(yùn)行正常费变,服務(wù)器報(bào)錯(cuò)):
Error creating bean with name 'org.springframework.validation.beanvalidation
解決辦法:
找到pom.xml中的
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>4.2.0.Final</version>
</dependency>
改為:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>5.1.0.Final</version>
</dependency>