spring-projects / spring-amqp-samples

Samples for Spring AMQP

Home Page:http://projects.spring.io/spring-amqp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to find params with amp

vvsuperman opened this issue · comments

for example, you use
spring.rabbitmq.publisher-confirms: true
spring.rabbitmq.publisher-returns: true
spring.rabbitmq.template.mandatory: true
and there are alsl
spring.rabbitmq.username...password
is there a document reference to all spring.rabbitmq.* ?

GitHub Issues are for reporting bugs or asking for new features; they are not for asking questions; please use Stack Overflow (tagged spring-amqp) for questions.

Regardless, this is a question for spring-boot; see the boot 'Common Application Properties' Appendix. Scroll down to RABBIT - as you can see there is a link to the RabbitProperties class; the properties are loaded into a bean of that type which can be accessed the normal Spring way (@Autowired etc).

thks, there are a tons of help