项目框架:ssm
github地址:https://github.com/wosyingjun/beauty_ssm
出现报错(本地运行正常,服务器报错):
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>