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