| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 8081
- spring:
- application:
- name: jzg-auth
- cloud:
- nacos:
- server-addr: 192.168.0.250:8848
- username: nacos
- password: nacos
- config:
- file-extension: yaml
- namespace: 9fceaca4-c1d2-4bb8-aac9-f64d4b7de73c
- group: DEFAULT_GROUP
- discovery:
- namespace: 9fceaca4-c1d2-4bb8-aac9-f64d4b7de73c
- config:
- import:
- - nacos:mysql
- - nacos:redisson
- - nacos:minio
- config:
- sso: 0
- seata:
- enabled: true
- application-id: ${spring.application.name}
- # 事务组的名称,对应service.vgroupMapping.default_tx_group=xxx中配置的default_tx_group
- tx-service-group: default_tx_group
- # 配置事务组与集群的对应关系
- service:
- vgroup-mapping:
- # default_tx_group为事务组的名称,default为集群名称(与registry.conf中的一致)
- default_tx_group: default
- disable-global-transaction: false
- registry:
- type: nacos
- nacos:
- application: seata-server
- server-addr: 192.168.0.250:8848
- group: SEATA_GROUP
- namespace: ba488f58-c785-49b4-9c02-b5d9b8a965a5
- username: nacos
- password: nacos
- # registry.conf中,配置cluster名称
- cluster: default
- wechat:
- open:
- properties:
- app:
- componentAppId: wx612ca90988c46947
- componentSecret: 75b7d4cda453b2075dec23f849278bc0
- feign:
- client:
- jzg-partner:
- url: http://localhost:8087/
|