application-dev.yml 792 B

12345678910111213141516171819202122232425262728293031323334
  1. # 服务器端口
  2. server:
  3. port: 8118
  4. # 数据源配置
  5. spring:
  6. datasource:
  7. url: ${blade.datasource.customer.dev.url}
  8. username: ${blade.datasource.customer.dev.username}
  9. password: ${blade.datasource.customer.dev.password}
  10. # rabbitmq的相关配置
  11. rabbitmq:
  12. host: 127.0.0.1
  13. port: 5672
  14. username: guest
  15. password: guest
  16. publisher-confirm-type: correlated
  17. publisher-returns: true
  18. # 虚拟机
  19. virtual-host: /hx-yf
  20. # 缓存相关配置
  21. cache:
  22. # 缓存超时时间(单位:秒)
  23. time-out: 300
  24. # 发送
  25. send:
  26. socket:
  27. # 队列
  28. queue: tradeErp_to_socket_queue
  29. # 交换机
  30. exchange: tradeErp_to_socket_exchange
  31. # 路由器
  32. routingKey: tradeErp_to_socket_routingKey