123456789101112131415161718192021222324252627282930313233343536 |
- server:
- port: 2001
- spring:
- application:
- name: seata-order-service
- cloud:
- alibaba:
- seata:
- tx-service-group: fsp_tx_group #自定义事务组名称需要和seata-server中的对应
- nacos:
- discovery:
- server-addr: localhost:8848
- datasource:
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://localhost:3306/seata_order
- username: root
- password: root
- feign:
- hystrix:
- enabled: false
- client:
- config:
- default:
- connect-timeout: 30000
- read-timeout: 30000
- logging:
- level:
- io:
- seata: info
- mybatis:
- mapperLocations: classpath:mapper/*.xml
- ribbon:
- ReadTimeout: 2000
- ConnectTimeout: 2000
|