blob: e81f5cc7ca460c15fc627fcbf641b8277a4b107d [file] [log] [blame]
[[HowshouldIinvokemyPOJOsorSpringServices-HowshouldIinvokemyPOJOsorSpringServices]]
=== How should I invoke my POJOs or Spring Services?
The various options are described in detail in
link:../bean-integration.adoc[Bean Integration], in particular the
link:bean-binding.adoc[Bean Binding] describes how we invoke a bean
inside a route.
See the link:pojo-consuming.adoc[POJO Consuming] for examples using
either the `@Consume` annotation or using the routing DSL:
[source,java]
----
from("jms:someQueue").bean(MyBean.class, "someMethod");
----
[[HowshouldIinvokemyPOJOsorSpringServices-SeeAlso]]
==== See Also
* link:../bean-integration.adoc[Bean Integration]
* link:bean-binding.adoc[Bean Binding]
* link:pojo-consuming.adoc[POJO Consuming]