org.apache.camel.spring.Main Java Examples

The following examples show how to use org.apache.camel.spring.Main. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MyRouteBuilder.java    From camelinaction2 with Apache License 2.0 4 votes vote down vote up
/**
 * A main() so we can easily run these routing rules in our IDE
 */
public static void main(String... args) throws Exception {
    Main.main(args);
}
 
Example #2
Source File: MyRouteBuilder.java    From camelinaction2 with Apache License 2.0 4 votes vote down vote up
/**
 * A main() so we can easily run these routing rules in our IDE
 */
public static void main(String... args) throws Exception {
    Main.main(args);
}
 
Example #3
Source File: MyRouteBuilder.java    From camelinaction with Apache License 2.0 4 votes vote down vote up
/**
 * A main() so we can easily run these routing rules in our IDE
 */
public static void main(String... args) throws Exception {
    Main.main(args);
}
 
Example #4
Source File: MyRouteBuilder.java    From camelinaction with Apache License 2.0 4 votes vote down vote up
/**
 * A main() so we can easily run these routing rules in our IDE
 */
public static void main(String... args) throws Exception {
    Main.main(args);
}
 
Example #5
Source File: MyRouteBuilder.java    From servicemix with Apache License 2.0 2 votes vote down vote up
/**
 * Allow this route to be run as an application
 *
 * @param args
 */
public static void main(String[] args) throws Exception{
    new Main().run(args);
}