| | |
| | | spring: |
| | | servlet: |
| | | multipart: |
| | | # 前端上传文件,限制单个文件的大小和限制所有文件的大小 |
| | | max-file-size: 500MB |
| | | max-request-size: 5000MB |
| | | logging: |
| | | charset: |
| | | console: UTF-8 |
| | |
| | | |
| | | pipIrr: |
| | | global: |
| | | dev: true #是否开发阶段,true或false |
| | | dev: false #是否开发阶段,true或false |
| | | dsName: ym #开发阶段,设置临时的数据库名称 |
| | | nginx: |
| | | webPort: 54321 |
| | | mw: |
| | | webPort: 8070 |
| | | actutorPort: 9070 |
| | | webPort: 8070 #通信中间件中应用,不能在web模块系统中应用 |
| | | actutorPort: 9070 #通信中间件中应用,不能在web模块系统中应用 |
| | | idSuffix: 0 |
| | | sso: |
| | | cacheMaximumSize: 10000 #登录用户缓存可缓存用户的最大值 |
| | |
| | | #项目编号 |
| | | #projectCode: |
| | | # ym: 100 |
| | | # pj: 101 |
| | | # sp: 101 |
| | | |
| | | #项目配置 |
| | | project: |
| | |
| | | comSendUrl: "http://127.0.0.1:8070/rtuMw/com/send" |
| | | rtuLogFileUrl: "http://127.0.0.1:8070/rtuMw/com/rtuLogFile" |
| | | rtuLogTextUrl: "http://127.0.0.1:8070/rtuMw/com/rtuLogText" |
| | | pj: |
| | | comSendUrl: "http://127.0.0.1:8071/rtuMw/com/send" |
| | | rtuLogFileUrl: "http://127.0.0.1:8071/rtuMw/com/rtuLogFile" |
| | | rtuLogTextUrl: "http://127.0.0.1:8071/rtuMw/com/rtuLogText" |
| | | sp: |
| | | comSendUrl: "http://127.0.0.1:8073/rtuMw/com/send" |
| | | rtuLogFileUrl: "http://127.0.0.1:8073/rtuMw/com/rtuLogFile" |
| | | rtuLogTextUrl: "http://127.0.0.1:8073/rtuMw/com/rtuLogText" |
| | | test: |
| | | comSendUrl: "http://127.0.0.1:8072/rtuMw/com/send" |
| | | rtuLogFileUrl: "http://127.0.0.1:8072/rtuMw/com/rtuLogFile" |
| | |
| | | - /wx/comRes/receive |
| | | - /app/captcha/get |
| | | - /file/file #web分布式文件系统 |
| | | - /file/fm #web分布式文件系统 |
| | | |
| | | #自动统计配置,自动统计定时任务会每天定时进行 |
| | | auto-statistics: |
| | |
| | | secret: SEC6042bc964d08899a5853eb321eb5a4d842a395982777f815bd07451c879228b7 |
| | | at-all: true |
| | | mobile: 18602657034 |
| | | pj: |
| | | sp: |
| | | enable: true #是否启用 |
| | | robot: |
| | | url: https://oapi.dingtalk.com/robot/send |
| | |
| | | #虚拟卡配置参数 |
| | | vc: |
| | | #虚拟卡最低余额报警值 |
| | | alarmValue: 10 |
| | | alarmValue: 10 |
| | | |
| | | rocketmq: |
| | | consumer: |
| | | group: consumer_group |
| | | # 一次拉取消息最大值,注意是拉取消息的最大值而非消费最大值 |
| | | pull-batch-size: 10 |
| | | name-server: 127.0.0.1:9876 |
| | | producer: |
| | | # 发送同一类消息的设置为同一个group,保证唯一 |
| | | group: producer_group |
| | | # 发送消息超时时间,默认3000 |
| | | sendMessageTimeout: 10000 |
| | | # 发送消息失败重试次数,默认2 |
| | | retryTimesWhenSendFailed: 2 |
| | | # 异步消息重试次数,默认2 |
| | | retryTimesWhenSendAsyncFailed: 2 |
| | | # 消息最大长度,默认1024 * 1024 * 4(默认4M) |
| | | maxMessageSize: 4096 |
| | | # 压缩消息阈值,默认4k(1024 * 4) |
| | | compressMessageBodyThreshold: 4096 |
| | | # 是否在内部发送失败时重试另一个broker,默认false |
| | | retryNextServer: false |