12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- # Tomcat
- server:
- tomcat:
- uri-encoding: UTF-8
- max-threads: 1000
- min-spare-threads: 30
- port: 8503
- spring:
- # 环境 dev|test|pro
- profiles:
- active: dev
- session:
- store-type: none
- # jackson时间格式化
- jackson:
- time-zone: GMT+8
- date-format: yyyy-MM-dd HH:mm:ss
- http:
- multipart:
- max-file-size: 100MB
- max-request-size: 100MB
- enabled: true
- # 指定静态资源的路径
- system:
- app:
- name: "sailun-allsteel"
- desc: "赛轮全钢app rest"
- platform:
- redis:
- open: false
- shiro:
- redis: false
- # APP模块,是通过jwt认证的,如果要使用APP模块,则需要修改【加密秘钥】
- jwt:
- # 加密秘钥
- secret: f4e2e52034348f86b67cde581c0f9eb5[io.platform]
- # token有效时长,7天,单位秒
- expire: 604800
- header: token
|