Mysql data source configuration
spring:
datasource:
url: jdbc:mysql://localhost:3306/database Replace # database with the corresponding database
username: root # root is replaced with the corresponding user
password: password # password Is replaced with the password
driver-class-name: com.mysql.cj.jdbc.Driver
Copy the code