sping boot mybatis配置文件在哪
时间: 2023-09-30 18:09:45 浏览: 97
在 Spring Boot 中使用 MyBatis,可以在 application.properties 或 application.yml 配置文件中配置 MyBatis 相关的属性。
如果你使用的是 application.properties 文件,则可以在文件中添加以下属性:
```
# MyBatis 配置
mybatis.config-location=classpath:mybatis-config.xml
mybatis.mapper-locations=classpath:mapper/*.xml
mybatis.type-aliases-package=com.example.domain
```
如果你使用的是 application.yml 文件,则可以在文件中添加以下属性:
```yaml
mybatis:
config-location: classpath:mybatis-config.xml
mapper-locations: classpath:mapper/*.xml
type-aliases-package: com.example.domain
```
其中,`mybatis.config-location` 属性用于指定 MyBatis 的配置文件,`mybatis.mapper-locations` 属性用于指定 Mapper 文件的路径,`mybatis.type-aliases-package` 属性用于指定实体类的路径。
如果你的 MyBatis 配置文件和 Mapper 文件都放在了默认的位置(即 classpath:mybatis-config.xml 和 classpath:mapper/*.xml),则可以省略这些属性。
注意,在 Spring Boot 中使用 MyBatis 时,一定要保证 MyBatis 的配置文件和 Mapper 文件都放在类路径下,否则会出现找不到文件的错误。
阅读全文