You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/10/20 12:48:58 UTC

[camel] branch main updated: camel-jbang - Add missing annotation for IoC

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 8210336f774 camel-jbang - Add missing annotation for IoC
8210336f774 is described below

commit 8210336f7747f183561529734ad744be568eaf06
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Oct 20 14:48:45 2022 +0200

    camel-jbang - Add missing annotation for IoC
---
 docs/user-manual/modules/ROOT/pages/camel-jbang.adoc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
index cd5e069e6ca..ff358aa9bc0 100644
--- a/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
+++ b/docs/user-manual/modules/ROOT/pages/camel-jbang.adoc
@@ -1019,6 +1019,7 @@ based dependency injection in Java classes.
 You can use the following Camel annotations (they work on all runtimes):
 
 - `@org.apache.camel.BindToRegistry` on class level to create an instance of the class and register in the xref:registry.adoc[Registry].
+- `@org.apache.camel.Configuration` on class level to create an instance of the class and register in the xref:registry.adoc[Registry].
 - `@org.apache.camel.BeanInject` to dependency inject a bean on a class field.
 - `@org.apache.camel.PropertyInject` to inject a xref:using-propertyplaceholder.adoc[property placeholder]. Such as a property defined in `application.properties`.
 - `@org.apache.camel.BindToRegistry` on a method to create a bean by invoking the method.