123456789101112131415161718192021222324252627 |
- #---------- wms-client ----------#
- # 项目配置
- app:
- name: wms-client
- description: ${app.name} application
- # 服务配置
- server:
- address: 127.0.0.1
- port: 9091
- servlet:
- context-path: /
- spring:
- profiles:
- active:
- # 使用CGLIB实现AOP
- aop:
- # true:基于类的代理, false基于接口的代理
- proxy-target-class: true
- jackson:
- serialization:
- # 兼容spring boot 1.x,返回给前端时间戳
- write-dates-as-timestamps: true
|