mybatis连接数据库配置yml
时间: 2024-08-15 15:00:34 浏览: 53
Sptring Boot整合mybatis(连接数据库测试及md5加密)
MyBatis是一个优秀的持久层框架,它允许通过XML或者注解的方式来配置数据库连接。在Spring Boot项目中,可以使用YAML(Yet Another Markup Language)作为配置文件格式,对MyBatis进行配置。
在`application.yml`或`application.properties`文件中,你需要设置以下关键信息:
1. 数据源(DataSource)配置:
```yaml
spring.datasource:
type: com.zaxxer.hikari.HikariDataSource # HikariCP是一个流行的轻量级数据源
driver-class-name: ${jdbc.driverClassName} # 驱动类名,如mysql:mysql-connector-java
url: jdbc:mysql://localhost:3306/test?serverTimezone=UTC
username: root
password: password
```
2. MyBatis的相关配置:
```yaml
mybatis:
config-location: classpath:mybatis-config.xml # MyBatis的全局配置文件
mapper-locations: classpath:mapper/*.xml # Mapper接口所在的包路径
mybatis-spring:
mapper-registry: strict # 开启严格注册模式,确保映射器接口存在
```
注意替换 `${jdbc.driverClassName}` 和数据库相关的URL为你实际项目的驱动和数据库地址。
阅读全文