springboot数据源配置
时间: 2023-08-08 22:12:25 浏览: 107
在Spring Boot中配置数据源可以使用application.properties或application.yml文件。下面是一个简单的示例:
在application.properties中:
```
spring.datasource.url=jdbc:mysql://localhost:3306/mydatabase
spring.datasource.username=your-username
spring.datasource.password=your-password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
```
在application.yml中:
```yaml
spring:
datasource:
url: jdbc:mysql://localhost:3306/mydatabase
username: your-username
password: your-password
driver-class-name: com.mysql.jdbc.Driver
```
请确保将`your-username`和`your-password`替换为您的数据库用户名和密码。还要根据您使用的数据库类型更改驱动程序类名。
您还可以配置其他数据源属性,如最大连接数、连接池大小等。有关更多详细信息,请参阅Spring Boot文档中关于数据源配置的章节。
阅读全文