| | |
| | | server: |
| | | port: 1234 |
| | | |
| | | spring: |
| | | servlet: |
| | | multipart: |
| | | max-file-size: 20MB # 单个文件大小 |
| | | max-request-size: 1024MB # 一次请求文件总大小 |
| | | profiles: |
| | | active: dev |
| | | |
| | | mybatis-plus: |
| | | type-aliases-package: com.yunchu.limslaboratory.pojo |
| | | mapper-locations: classpath:mapper/*.xml |
| | | type-aliases-package: com.yuanchu.limslaboratory.pojo |
| | | mapper-locations: classpath*:/mapper/*.xml |
| | | global-config: |
| | | banner: off # 关闭mybatis-plus启动图标 |
| | | banner: off # 关闭mybatis-plus启动图标 |
| | | |
| | | feign: |
| | | client: |
| | | config: |
| | | default: |
| | | connectTimeout: 2000 |
| | | readTimeout: 3000 |
| | | loggerLevel: FULL |
| | | httpclient: |
| | | enabled: false # 关闭 httpclient |
| | | okhttp: |
| | | enabled: true # 开启 okhttp |