application.yml 584 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
logging:
  file: logs/mainNode.log

debug: true

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://${HOST_DB:localhost}:${PORT_DB:3306}/${NAME_DB:curex_adt}?autoReconnect=true&useSSL=false
    password: ${PASSWORD_DB:f4k64g6a65fWGTYmE488NJsfu}
    username: ${USER_DB:curex_adt}

  mvc:
    view:
      prefix: /WEB-INF/jsp/
      suffix: .jsp
    
  jpa:
    database-platform: org.hibernate.dialect.MySQL57InnoDBDialect
    hibernate:
      ddl-auto: update
    properties:
      hibernate:
        show_sql: false
        format_sql: true