报错信息为:
com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Unknown error 1146
org.hibernate.exception.SQLGrammarException: could not extract ResultSet
解决方法:mysql设置不区分大小写,重启mysql即可
- mysql登录root用户,修改/etc/my.cnf文件
vim etc/my.cnf
- 在 [mysqld] 节点下,加入一行:
lower_case_table_names=1
- 重启 MySQL ;
service mysqld restart