mapper-locations: classpath:mapper/*/*.xml
时间: 2023-09-03 09:10:41 浏览: 159
Mybatis-Plus 搭建与使用入门(小结)
这是一个 MyBatis 的配置,用于指定 mapper 文件的位置。其中,`classpath:mapper/*/*.xml` 表示在 classpath 下的 mapper 目录下,寻找所有子目录中的 XML 文件作为 MyBatis 的 mapper 文件。具体解释如下:
- `classpath`:表示在 classpath 路径下查找。
- `mapper`:表示 mapper 文件所在的目录。
- `*`:通配符,表示任意字符,用于匹配所有的子目录。
- `/*.xml`:表示任意名称的 XML 文件,这里限定了只有一层目录。
例如,如果在 classpath 下有以下目录结构:
```
- src
- main
- java
- resources
- mapper
- user
- UserMapper.xml
- order
- OrderMapper.xml
```
那么,`classpath:mapper/*/*.xml` 就会匹配到 `UserMapper.xml` 和 `OrderMapper.xml` 两个文件。注意,MyBatis 也支持其他的配置方式,如使用绝对路径、相对路径等。
阅读全文