Mule ESB - Specify JMS Queue Name as a property -


i want set queuename property key in mulesoft esb jms connector. queue names different based on environment. have different property files environment specific. want set queue name, environment specific, based on property value.

currently have this:

<jms:inbound-endpoint queue="q_test" connector-ref="active_mq" doc:name="q_test"/> 

however need functionality similar below:

<jms:inbound-endpoint queue=<property-key> connector-ref="active_mq" doc:name="q_test"/> 

and want use value properties file.

any appreciated.

queue names specified part of jms inbound endpoint, , there no restriction on use of property placeholder there, may do:

<jms:inbound-endpoint queue="${your.property}" /> 

and use 1 various techniques load different property placeholder configurers different environments.


Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -