溫馨提示×

springboot數(shù)據(jù)庫連接怎么配置

小億
240
2023-12-11 14:33:33

在Spring Boot中,可以通過在`application.properties`或`application.yml`文件中配置數(shù)據(jù)庫連接。
1. application.properties配置:

spring.datasource.url=jdbc:mysql://localhost:3306/mydb
spring.datasource.username=your-username
spring.datasource.password=your-password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver

2. application.yml配置:

spring:

??datasource:

????url:?jdbc:mysql://localhost:3306/mydb

????username:?your-username

????password:?your-password

????driver-class-name:?com.mysql.jdbc.Driver

請注意將上述配置中的your-usernameyour-password替換為您自己的數(shù)據(jù)庫用戶名和密碼,jdbc:mysql://localhost:3306/mydb替換為您的數(shù)據(jù)庫URL。
此外,您還可以配置其他的數(shù)據(jù)庫連接池屬性,例如最大連接數(shù)、最小空閑連接數(shù)等。這些屬性可以根據(jù)您的具體需求進(jìn)行配置。

0