package camelinaction; import org.apache.camel.spring.Main; /** * Class to run the Camel client which uses a static server list * where the Service Call configuration is setup globally on the CamelContext */ public class MyClientGlobalApplication { public static void main(String[] args) throws Exception { Main main = new Main(); main.setApplicationContextUri("static-route-global.xml"); main.run(); } }