1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- # Tomcat
- server:
- tomcat:
- uri-encoding: UTF-8
- max-threads: 1000
- min-spare-threads: 30
- port: 9010
- #8086
- # context-path: /admin
- # 单位 KB
- max-http-header-size: 100000
- # mysql
- 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
- # 指定静态资源的路径
- #新加 开启Aop代理
- aop:
- proxy-target-class: true
- system:
- app:
- name: "erp"
- desc: "ERP"
- platform:
- redis:
- open: false
- shiro:
- redis: false
- # APP模块,是通过jwt认证的,如果要使用APP模块,则需要修改【加密秘钥】
- jwt:
- # 加密秘钥
- secret: f4e2e52034348f86b67cde581c0f9eb5[io.platform]
- # token有效时长,7天,单位秒
- expire: 604800
- header: token
|