Guest User

Untitled

a guest
Dec 20th, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. spring.activemq.broker-url=tcp://127.0.0.1:61616
  2. # 在考虑结束之前等待的时间
  3. #spring.activemq.close-timeout=15s
  4. # 默认代理URL是否应该在内存中。如果指定了显式代理,则忽略此值。
  5. spring.activemq.in-memory=true
  6. # 是否在回滚回滚消息之前停止消息传递。这意味着当启用此命令时,消息顺序不会被保留。
  7. spring.activemq.non-blocking-redelivery=false
  8. # 密码
  9. spring.activemq.password=admin
  10. # 等待消息发送响应的时间。设置为0等待永远。
  11. spring.activemq.send-timeout=0
  12. spring.activemq.user=admin
  13. # 是否信任所有包
  14. #spring.activemq.packages.trust-all=
  15. # 要信任的特定包的逗号分隔列表(当不信任所有包时)
  16. #spring.activemq.packages.trusted=
  17. # 当连接请求和池满时是否阻塞。设置false会抛“JMSException异常”。
  18. #spring.activemq.pool.block-if-full=true
  19. # 如果池仍然满,则在抛出异常前阻塞时间。
  20. #spring.activemq.pool.block-if-full-timeout=-1ms
  21. # 是否在启动时创建连接。可以在启动时用于加热池。
  22. #spring.activemq.pool.create-connection-on-startup=true
  23. # 是否用Pooledconnectionfactory代替普通的ConnectionFactory。
  24. #spring.activemq.pool.enabled=false
  25. # 连接过期超时。
  26. #spring.activemq.pool.expiry-timeout=0ms
  27. # 连接空闲超时
  28. #spring.activemq.pool.idle-timeout=30s
  29. # 连接池最大连接数
  30. #spring.activemq.pool.max-connections=1
  31. # 每个连接的有效会话的最大数目。
  32. #spring.activemq.pool.maximum-active-session-per-connection=500
  33. # 当有"JMSException"时尝试重新连接
  34. #spring.activemq.pool.reconnect-on-exception=true
  35. # 在空闲连接清除线程之间运行的时间。当为负数时,没有空闲连接驱逐线程运行。
  36. #spring.activemq.pool.time-between-expiration-check=-1ms
  37. # 是否只使用一个MessageProducer
  38. #spring.activemq.pool.use-anonymous-producers=true
  39.  
  40.  
  41. server.port=9080
Add Comment
Please, Sign In to add comment