Spring AMQP - 如何在队列上设置参数?
Spring AMQP - how to set arguments on a Queue?
我尝试在队列上设置参数,但是 Spring 的 Queue
class 没有 setter 参数方法。
http://docs.spring.io/spring-amqp/api/org/springframework/amqp/core/Queue.html
有什么想法吗?谢谢
天哪!您只是为此错过了 ctor:http://docs.spring.io/spring-amqp/api/org/springframework/amqp/core/Queue.html#Queue-java.lang.String-boolean-boolean-boolean-java.util.Map-
如您所见,class 是不可变的,您只能通过 ctors 提供属性。
我尝试在队列上设置参数,但是 Spring 的 Queue
class 没有 setter 参数方法。
http://docs.spring.io/spring-amqp/api/org/springframework/amqp/core/Queue.html
有什么想法吗?谢谢
天哪!您只是为此错过了 ctor:http://docs.spring.io/spring-amqp/api/org/springframework/amqp/core/Queue.html#Queue-java.lang.String-boolean-boolean-boolean-java.util.Map-
如您所见,class 是不可变的,您只能通过 ctors 提供属性。