Spring Boot With Mysql / Src / Main / Resources / Application

jpa: hibernate: ddl-auto: update show-sql: true properties: hibernate: formatsql: true

TrackKubernetes Learning Journey
Current SectionDocker
Progress19 of 271
spring:
  datasource:
    url: jdbc:mysql://${MYSQL_HOST:localhost}:${MYSQL_PORT:3306}/${MYSQL_DB:mydb}
    username: ${MYSQL_USER:root}
    password: ${MYSQL_PASSWORD:password}

  jpa:
    hibernate:
      ddl-auto: update
    show-sql: true
    properties:
      hibernate:
        format_sql: true