application.yml 532 B

123456789101112131415161718192021222324252627
  1. #---------- wms-client ----------#
  2. # 项目配置
  3. app:
  4. name: wms-client
  5. description: ${app.name} application
  6. # 服务配置
  7. server:
  8. address: 127.0.0.1
  9. port: 9091
  10. servlet:
  11. context-path: /
  12. spring:
  13. profiles:
  14. active:
  15. # 使用CGLIB实现AOP
  16. aop:
  17. # true:基于类的代理, false基于接口的代理
  18. proxy-target-class: true
  19. jackson:
  20. serialization:
  21. # 兼容spring boot 1.x,返回给前端时间戳
  22. write-dates-as-timestamps: true