springboot yml数据库配置
时间: 2023-12-09 18:37:23 浏览: 186
Spring Boot使用yml格式进行配置的方法
在Spring Boot中,我们可以使用YAML文件来配置数据库连接。下面是一个示例:
```yaml
spring:
datasource:
url: jdbc:mysql://localhost:3306/testdb
username: root
password: password
driver-class-name: com.mysql.jdbc.Driver
```
在这个示例中,我们配置了一个MySQL数据库连接。`url`属性指定了数据库的URL,`username`和`password`属性指定了数据库的用户名和密码,`driver-class-name`属性指定了数据库驱动程序的类名。
如果你使用的是其他类型的数据库,只需要将URL和驱动程序的类名更改为相应的值即可。
阅读全文