项目的子模块里,service调用mapper接口,找不到mapper接口对应的sql,此时需要在yml配置文件中配置如下代码
mybatis-plus:
mapper-locations: classpath*:mapper/*.xml
上述代码中classpath后面一定要加一个*,这是关键,否则调用mapper接口,系统会默认去主模块的路径下找mapper的sql
如果多个模块,mapper文件路径不一致,可以写多个配置,例如:
mybatis-plus:
mapper-locations: classpath*:mapper/*.xml,classpath*:mapper2/*.xml