application.yml 851 Bytes
server:
  port: 8080

spring:
  thymeleaf:
    prefix: classpath:/templates/thymeleaf/
    suffix: .html
    mode: HTML5
    encoding: UTF-8
    cache: false
  datasource: 
    url: jdbc:postgresql://192.168.9.162:5432/financial_serv
    username: postgres
    password: authpass 
    driver-class-name: org.postgresql.Driver
    hikari:
      connection-timeout: 1800000
      maximum-pool-size: 20
#    hikari:
 #    maximum-pool-size: 
  http:
    multipart:
      max-file-size: 20Mb
      max-request-size: 40Mb
mybatis:
  mapper-locations: com/vion/financial/mapping/*.xml

logging:
  level:
    root: INFO
  pattern:
    level: INFO
    console: "[financial_serv]-[%d{yyyy-MM-dd HH:mm:ss.SSS}]-%m%n"
  path: F:\LOG\
#pagehelper:
#    helperDialect: postgresql
#    reasonable: true
#    supportMethodsArguments: true
#    params: count=countSql