Untitled

 avatar
unknown
plain_text
3 years ago
1.0 kB
6
Indexable
server:
  port: 8095


springdoc:
  api-docs:
    path: /api-docs # normally we would need to access it via {address}:{port}/v3/api-docs

spring:
  lombok:
    addLombokGeneratedAnnotation: true
  logging:
    level:
      root: debug
  devtools:
    restart:
      enabled: true
  flyway:
    enabled: false
    baselineOnMigrate: true
    validateOnMigrate: false
    locations: classpath:db/migration
    url: ${DB_URL:jdbc:sqlserver://**hided**.database.windows.net;database=**hided**-dev}
    user: **hided**
    password:**hided**

  jackson:
    serialization:
      indent-output: true

  datasource:
    type: com.zaxxer.hikari.HikariDataSource
    url: ${DB_URL:jdbc:sqlserver://**hided**.database.windows.net;database=**hided**-dev}
    username: **hided**
    password: **hided**
    hikari:
      poolName: Hikari∂k
      auto-commit: false
      data-source-properties:
        cachePrepStmts: true
        prepStmtCacheSize: 250
        prepStmtCacheSqlLimit: 2048
        useServerPrepStmts: true
  jpa:
    show-sql: false
Editor is loading...