报错原因:
You have an error in your SQL syntax
你的SQL语句出现错误
报错位置:
check the manual that corresponds to your MySQL server version for the right syntax to use near ':/sql/schema.sql.t_film' at line 1
在':/sql/schema.sql附近使用正确的语法
报错排查:
1、xxxMapper接口
继承BaseMapper(对繁多的xml文件的简化),没有问题
2、实体类
经过检查没有问题
3、SQL
在报错信息中,发现不符合SQL语句的位置是FROM后面多了classpath:/sql/schema.sql.
本来应该直接接上表名,但是多了东西
4、xml配置文件
发现在mybatis-plus上,画蛇添足,多了schema: classpath:/sql/schema.sql
错误解决
在application.yml中删去画蛇添足的部分
项目成功运行!!