mybatis-plus.mapper-locations=classpath*:com/fdbatt/escrmow/data/*/mapper/*.xml
时间: 2023-10-18 20:05:11 浏览: 142
详解mybatis-plus的 mapper.xml 路径配置的坑
5星 · 资源好评率100%
这是 MyBatis-Plus 的配置,用于指定 Mapper XML 文件的位置。其中 `*` 表示通配符,可以匹配任意字符串。该配置的含义是在 `com.fdbatt.escrmow.data` 包及其子包下,所有以 `Mapper` 结尾的接口所对应的 XML 文件都在 `mapper` 目录下,且文件后缀名为 `.xml`。这样 MyBatis-Plus 就能够自动扫描并加载这些 XML 文件,从而生成对应的 Mapper 接口的实现类。
阅读全文