这是原有项目中mybatis指定mapper文件位置的配置:
mybatis.mapper-locations=classpath:/mybatis-mapper/*Mapper.xml
导入mybatis-plus 后,增加同样的配置即可解决问题:
mybatis-plus.mapper-locations=classpath:/mybatis-mapper/*Mapper.xml
2023-10-12 17:43:16
这是原有项目中mybatis指定mapper文件位置的配置:
mybatis.mapper-locations=classpath:/mybatis-mapper/*Mapper.xml
导入mybatis-plus 后,增加同样的配置即可解决问题:
mybatis-plus.mapper-locations=classpath:/mybatis-mapper/*Mapper.xml