big666666 commented on issue #677:
URL: 
https://github.com/apache/incubator-seata-samples/issues/677#issuecomment-2562267981

   spring:
     application:
       name: cloud_cart
   
     cloud:
       nacos:
         discovery:
           server-addr: 127.0.0.1:8848
       sentinel: #流量控制中心
         transport:
           dashboard: localhost:8089 # sentinel-dashboard地址
           port: 8721
         eager: true
         filter:
           enabled: true
       seata:
         application-id: ${spring.application.name}
         tx-service-group: default_tx_group
         registry:
           type: nacos
           nacos:
             application: seata-server
             server-addr: 127.0.0.1:8848
             namespace:
             group: SEATA_GROUP
             cluster: default
             username: nacos
             password: nacos
         config:
           type: nacos
           nacos:
             server-addr: 127.0.0.1:8848
             group: SEATA_GROUP
             username: nacos
             password: nacos
             namespace:
             data-id: seataServer.properties
   # 解决service.vgroupMapping.default_tx_group configuration item is 
required错误,添加下配置
   seata:
     service:
       vgroup-mapping:
         default_tx_group: default
       grouplist:
         default: 127.0.0.1:8091
       disable-global-transaction: false


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@seata.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@seata.apache.org
For additional commands, e-mail: dev-h...@seata.apache.org

Reply via email to