application.yml.in 1.38 KB
spring:
  thymeleaf:
    prefix: classpath:/templates/thymeleaf/
    suffix: .html
    mode: HTML5
    encoding: UTF-8
    cache: false
  datasource: 
    url: jdbc:postgresql://PH_AUTH_SERV_IP:5432/financial_serv
    username: postgres
    password: authpass 
    driver-class-name: org.postgresql.Driver
   ###################以下为druid增加的配置###########################
    type: com.alibaba.druid.pool.DruidDataSource
    # 下面为连接池的补充设置,应用到上面所有数据源中
    # 初始化大小,最小,最大
    initialSize: 5
    minIdle: 5
    maxActive: 20
    # 配置获取连接等待超时的时间
    maxWait: 60000
    # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
    timeBetweenEvictionRunsMillis: 60000
    # 配置一个连接在池中最小生存的时间,单位是毫秒
    minEvictableIdleTimeMillis: 300000
#    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