server:
  port: 8082


###################  spring配置  ###################
spring:
  profiles:
    active: dev
    include: orm,mq,cache,umps,platform
#  redis:
#    host: localhost
#    port: 6379
#    password:
  http:
    converters:
      preferred-json-mapper: fastjson
    multipart:
      max-request-size: 100MB #最大请求大小
      max-file-size: 100MB #最大文件大小
  aop:
    proxy-target-class: true #false为启用jdk默认动态代理,true为cglib动态代理
    auto: true
logging:
  level:
    root: info
    com.gxzc.zen: debug
  path: logs/
  file: zen.log

#debug: true