Christina Lin
example
Open up /example/src/main/resources/OSGI-INF/blueprint/blueprint.xml and remove the demo route, so you are left with a blank canvas.
Remove the bean setting in the blueprint.xml
Right click on camel file, choose Debug AS, click on Local Camel Context (without tests) to start debugging
Let's try the debugging mode, this time, on log component, set a breakpoint by click on the red dot...
Kick off the route by placing another xml file into myxml folder, It will take you to the debugging view,
Click on the arrow to continue on to next breakpoint or the rest of the route.
<?xml version="1.0" encoding="UTF-8"?>
<!-- Red Hat Stock Exchange and Trading Systems-->
<stocktrading>
<name>Christina Lin</name>
<custId>A123456789</custId>
<vip>1</vip>
<stockId>XYZ</stockId>
<shares>11</shares>
</stocktrading>
<?xml version="1.0" encoding="UTF-8"?>
<!-- Red Hat Stock Exchange and Trading Systems-->
<stocktrading>
<name>Frank Jarrod</name>
<custId>F475678678</custId>
<vip>4</vip>
<stockId>ABC</stockId>
<shares>20</shares>
</stocktrading>