application.yml 702 B

1234567891011121314151617181920212223242526272829303132333435
  1. server:
  2. port: 2002
  3. spring:
  4. application:
  5. name: seata-storage-service
  6. cloud:
  7. alibaba:
  8. seata:
  9. tx-service-group: fsp_tx_group #自定义事务组名称需要和seata-server中的对应
  10. nacos:
  11. discovery:
  12. server-addr: localhost:8848
  13. datasource:
  14. driver-class-name: com.mysql.jdbc.Driver
  15. url: jdbc:mysql://localhost:3306/seata_storage
  16. username: root
  17. password: root
  18. feign:
  19. hystrix:
  20. enabled: false
  21. client:
  22. config:
  23. default:
  24. connect-timeout: 30000
  25. read-timeout: 30000
  26. logging:
  27. level:
  28. io:
  29. seata: info
  30. mybatis:
  31. mapperLocations: classpath:mapper/*.xml
  32. ribbon:
  33. ReadTimeout: 2000
  34. ConnectTimeout: 2000