Package org.apache.camel.component.jetty.JettyRouteTest

Examples of org.apache.camel.component.jetty.JettyRouteTest.MyBookService


    @Override
    protected RouteBuilder createRouteBuilder() throws Exception {
        return new RouteBuilder() {
            public void configure() throws Exception {
                from("jetty:http://localhost:9080/myapp/myservice").process(new MyBookService());
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.apache.camel.component.jetty.JettyRouteTest.MyBookService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.