项目是Gradle构建的,xml文件在src下面,
在这里插入图片描述

这时候启动项目运行方法的时候就会报错,提示没有找到配置文件,

[Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): XXX] with root cause

解决办法,在配置文件中添加指定的位置
mybatis-plus.type-aliases-package=com.rx.d.entity
mybatis-plus.mapper-locations=classpath:/com/rx/d/mapper/xml/*.xml
在这里插入图片描述
然后再build.gradle中指定sourceSets

sourceSets.main.resources.srcDirs = ["src/main/java","src/main/resources"]

在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐