12345678910111213141516171819202122232425262728293031 |
- #spring:
- # profiles:
- # active: dev
- # servlet:
- # multipart:
- # enabled: true
- # max-file-size: 20MB
- # max-request-size: 200MB
- server:
- port: 8084
- #log配置
- logging:
- file:
- name: printServer
- path: ./logs
- config: classpath:logback-spring.xml
- level:
- root: info
- logback:
- rollingpolicy:
- max-history: 30
- max-file-size: 10MB
- data:
- app:
- # 程序应用版本
- # @变量名@ 读取pom.xml中的值
- version: @project.version@
- lable:
- title: "EI Auto Print"
- exit: "退出"
- setting: "配置"
|