We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JMS connector accepts only jakarta.jms.ConnectorFactory injected as a bean.
jakarta.jms.ConnectorFactory
So for legacy javax clients manual usage of the shim tooling is needed.
@Produces @ApplicationScoped @Named("activemq-cf") public jakarta.jms.ConnectionFactory connectionFactory() { return JakartaJms.create(new ActiveMQConnectionFactory("tcp://127.0.0.1:61616")); }
We should make shim usage implicit/seamless.
@Produces @ApplicationScoped @Named("activemq-cf") public javax.jms.ConnectionFactory connectionFactory() { return new ActiveMQConnectionFactory("tcp://127.0.0.1:61616"); }
The text was updated successfully, but these errors were encountered:
danielkec
Successfully merging a pull request may close this issue.
JMS connector accepts only
jakarta.jms.ConnectorFactory
injected as a bean.So for legacy javax clients manual usage of the shim tooling is needed.
We should make shim usage implicit/seamless.
The text was updated successfully, but these errors were encountered: