application.yml 754 Bytes
server:
    port: 8080

spring:
    aop:
        proxy-target-class: true
    main:
        allow-bean-definition-overriding: true
    profiles:
        active: dev

    datasource:
        driver-class-name: org.postgresql.Driver
        druid:
            initial-size: 5
            min-idle: 5
            max-active: 20
            max-wait: 60000
            time-between-eviction-runs-millis: 60000
            min-evictable-idle-time-millis: 300000
            validation-query: null
            test-while-idle: true
            test-on-borrow: false
            test-on-return: false
            pool-prepared-statements: true
            max-pool-prepared-statement-per-connection-size: 20



logging:
    config: classpath:logback-spring.xml