-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
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
Better Integration with camel #121
Comments
Thanks @turing85 and I think the case 1 and case 3 should be supported in |
For case 3, I am quite sure that it is only supported for externally defined connection factories, as well as the default connection factory, but not for a single, named connection factory (whether this "feature" will be used extensively in this form is another topic, having a homogenous default behaviour, however, is desirable in my opinion). I tested for case 1 beforehand without modification, and it did not work. I also tested by "just adding" With regards to the tests: I'd like to have some tests on our end to verify we do not release something that breaks the camel-integration. I will, however, provide additional tests to |
Hi @turing85
I will figure it out. |
Well, the root cause is that we was missing |
And for case 2 it also need |
As a user of the extension
io.quarkiverse:quarkus-artemis-jms
who also uses camelwhen I define
ConnectionFactory
s via a configuration file (application.properties
/application.yml
)then I want that that those
ConnectionFactory
s are automatically registered in the camel context, so that I can use them via their name, e.g.:As a user of the extension
io.quarkiverse:quarkus-artemis-jms
who also uses camelwhen I define
ConnectionFactory
s as beans in my application that have an@io.smallrye.common.annotation.Identifier("...")
then I want that that those
ConnectionFactory
s are automatically registered in the camel context, so that I can use them via their name, e.g.:As a user of the extension
io.quarkiverse:quarkus-artemis-jms
who also uses camelwhen I use only one
ConnectionFactory
(either through configuration or externally defined)then I want that this connection factory is registered automatically, and I do not have to set it explicitly, e.g.:
The text was updated successfully, but these errors were encountered: