Invalid bound statement (not found): 问题已解决
我的问题出现在mapper层
原因是yml文件中配置的问题mybatis-plus: mapper-locations: classpath:mapping/*.xml
因为是mybatisplus自动生成代码 多了一层
应改为mybatis-plus: mapper-locations: classpath:mapping/*/*.xml
我的问题出现在mapper层
原因是yml文件中配置的问题mybatis-plus: mapper-locations: classpath:mapping/*.xml
因为是mybatisplus自动生成代码 多了一层
应改为mybatis-plus: mapper-locations: classpath:mapping/*/*.xml