12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- server:
- servlet:
- context-path: /file/
- spring:
- profiles:
- active: uat
- servlet:
- multipart:
- max-file-size: 10240MB
- max-request-size: 10240MB
- swagger:
- enabled: true
- docket:
- apis:
- title: "文件上传"
- base-package: cn.jiheng.factory.application.file.interfaces.facade
- authorization:
- key-name: Authorization
- ui-config:
- json-editor: true
- description: "统一上传返回文件id,url为完整url不需要拼接"
- cn:
- jiheng:
- auth:
- permit-url-list:
- - /swagger-ui.html
- - /webjars/**
- - /swagger-resources/**
- - /v2/**
- - /favicon.ico
- - /doc.html
- - /csrf
- - /error**
- - /**
- token-prefix: 'Bearer '
- token:
- expire:
- long:
- time: 172800
- refreshTime: 345600
- short:
- time: 7200
- logging:
- file:
- path: logs
- max-size: 10MB
- level:
- root: info
- cn.jiheng.factory.application.file: info
- mybatis-plus:
- mapper-locations: classpath*:/mapper/*.xml
- global-config:
- db-config:
- table-prefix: t_
- table-underline: true
- logic-delete-field: deleted #全局逻辑删除字段值 3.3.0开始支持,详情看下面。
- logic-delete-value: 1 # 逻辑已删除值(默认为 1)
- logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
|