Answers for "spring to mysql connect"

SQL
-1

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
Posted by: Guest on July-16-2021

Code answers related to "spring to mysql connect"

Code answers related to "SQL"

Browse Popular Code Answers by Language