application.yml 604 B

123456789101112131415161718192021222324252627282930
  1. server:
  2. port: 8082
  3. ################### spring配置 ###################
  4. spring:
  5. profiles:
  6. active: dev
  7. include: orm,mq,cache,umps,platform
  8. # redis:
  9. # host: localhost
  10. # port: 6379
  11. # password:
  12. http:
  13. converters:
  14. preferred-json-mapper: fastjson
  15. multipart:
  16. max-request-size: 100MB #最大请求大小
  17. max-file-size: 100MB #最大文件大小
  18. aop:
  19. proxy-target-class: true #false为启用jdk默认动态代理,true为cglib动态代理
  20. auto: true
  21. logging:
  22. level:
  23. root: info
  24. com.gxzc.zen: debug
  25. path: logs/
  26. file: zen.log
  27. #debug: true