]
Tim Russell commented on WFLY-4277:
-----------------------------------
Looking again today, this might or might not be a dupe of WFLY-3475. Feel free to blast it
if so. Thanks.
Support annotation-property-replacement option in
@JMSConnectionFactory, @JMSPasswordCredential
-----------------------------------------------------------------------------------------------
Key: WFLY-4277
URL:
https://issues.jboss.org/browse/WFLY-4277
Project: WildFly
Issue Type: Feature Request
Components: JMS
Affects Versions: 8.2.0.Final
Reporter: Tim Russell
Assignee: Jeff Mesnil
See org.jboss.as.messaging.deployment.JMSContextProducer, getJMSContext. Currently the
values in JMSConnectionFactory and JMSPasswordCredential are do not go through the
property replacement process. Doing so would be nice in order to externalize configuration
settings, e.g.
{code:java}
@Inject
@JMSConnectionFactory("${remoteConnectionFactoryName}")
private JMSContext context;
{code}