报错如下:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.example.food.mapper.UserMapper1.editMoney
at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) ~[mybatis-3.5.6.jar:3.5.6]
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:51) ~[mybatis-plus-core-3.4.2.jar:3.4.2]
....................................................
解决方案:
1.修改pox文件
<build>
<resources>
<resource>
<!-- xml放在java目录下-->
<directory>src/main/java</directory>
<includes>
<include>**/*.xml</include>
</includes>
</resource>
<!--指定资源的位置(xml放在resources下,可以不用指定)-->
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
</build>
2.增加@MapperScan
3.修改application.properties文件
一、如果你的xml文件是在放在java的文件夹下的
那么你的application.properties的mybatis-plus.mapper-locations应该为classpath*:com/example/mapper/xml/*.xml
二、如果的你xml文件夹在resources文件夹下
那么你的application.properties的mybatis-plus.mapper-locations应该为classpath*:/mapper/xml/*.xml
结尾
都是平时自己学习遇到的问题,如果有不对的地方,请见谅。