mysql connection details in springboot
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://${MYSQL_HOST:localhost}:3306/cache_test_db
username: root
password: password
initialization-mode: always
jpa:
show-sql: true
hibernate:
ddl-auto: update