Hi.
if I want messages on queues to be handled according to priority,
it seems like the only thing that works is to call:
before each send with the required priority.Code:jmsTemplate.setPriority
However, there is also a configuration on the AMQ broker:
prioritizedMessages
This seems to have no influence on anything from my testings.Code:<destinationPolicy> <policyMap> <policyEntries> <policyEntry queue=">" prioritizedMessages="true">
Should this be used or is it enough to set the jms template?
thanks


Reply With Quote