...
If you use maven then you can easily compile and install the example from the command line:
...
About
This example shows how to exchange data using a shared database table.
...
In the camel-context.xml
file in the src/main/resources/META-INF/spring
folder we have the Spring XML file to setup and configure the database, as well the CamelContext.
...
And then in the same file we setup our Camel application. At first we have a orderBean that we use in the routes to generate new orders and process orders as well.
...
...
Notice how we have externalized the SQL queries, and use Camels property placeholder to refer to the sql.properties
file.
...
...
Notice in the SQL queries below we use named parameters which must start with prefix ':#' and then the name, eg :#amount. Then Camel will bind that parameter with the given name, from the
message body (if its a java.util.Map
) or from a message header with the name. If none parameter could be found, Camel throws an exception.
...
Running the example
This example can be run from the command line
...
...
Press ctrl + c to stop the example.
...