| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- server:
- port: 0 #端口
- spring:
- cloud:
- # nacos
- nacos:
- discovery:
- register-enabled: true
- server-addr: 127.0.0.1:8848
- username: nacos-dev
- password: nacos-dev
- namespace: 33360858-b0c2-4364-b8fb-d8879aa272a0
- circuitbreaker:
- sentinel:
- enabled: true
- sentinel:
- enabled: true
- transport:
- dashboard: 127.0.0.1:8858
- port: 0
- datasource:
- ds-flow-rules:
- nacos:
- server-addr: 127.0.0.1:8848
- username: nacos-dev
- password: nacos-dev
- namespace: 81037616-96ae-412c-a060-a633ba9731b9
- group-id: SENTINEL_GROUP
- data-id: ${spring.application.name}-flow-rules
- rule-type: flow
- data-type: json
- # 数据库配置
- datasource:
- url: jdbc:mysql://127.0.0.1:3306/central?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true&useSSL=false&serverTimezone=Asia/Shanghai
- username: root
- password: 123456
- # rabbitmq配置
- rabbitmq:
- host: 127.0.0.1
- port: 5672
- # redis配置
- redis:
- host: 127.0.0.1
- port: 6379
- database: 0
- password: HorO9496sCopE
- clientName: ${spring.application.name}-redis
- # 日志配置
- logging:
- level:
- com:
- atmob:
- central: debug
- mybatis:
- configuration:
- logImpl: org.apache.ibatis.logging.stdout.StdOutImpl
- config:
- file-path:
- root: E:/workspace/central-platform/
- pay-notify:
- host: https://central-test.atmob.com
- pay-status:
- payTimeoutSeconds: 3600
- pullTimeoutOutTradeNoCount: 5
- transferTimeoutSeconds: 300
- pullTimeoutOutTransferNoCount: 5
- ali-agreement:
- enable: true
- wf-transfer:
- baseUrl: http://101.42.105.13
- apiKey: 2f4cf89ec8de4e45824040199b8c10d8
- apiSecret: 1ffb95c08d3748599c95574052516ba8
- pay-error:
- warnEnabled: false
- webhookUrl: 'https://open.feishu.cn/open-apis/bot/v2/hook/7a458d4f-a31e-48b6-b9ed-dbce22d6f3af'
- filters:
- - name: '微信商户今日付款额度已达上限'
- cooldownMillis: 600000
- atAll: true
- keywords:
- - 'SEND_MONEY_LIMIT'
- - name: '微信商户付款余额不足'
- cooldownMillis: 600000
- atAll: true
- keywords:
- - 'NOTENOUGH'
- - name: '微信商户账户付款受限'
- cooldownMillis: 600000
- atAll: true
- keywords:
- - 'PAYER_ACCOUNT_ABNORMAL'
- risk-merchant:
- excluded:
- - 0
- filters:
- - name: '接口调用权限不足'
- riskCount: 5
- keywords:
- - '接口调用权限不足'
- serviceUrl:
- # 提现上报url
- transfer-report: http://192.168.10.10:483891
|