application.yml 502 B

123456789101112131415161718192021222324
  1. server:
  2. port: 8082
  3. ################### spring配置 ###################
  4. spring:
  5. profiles:
  6. active: dev
  7. include: orm
  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: info