Camel first experience
问题 I'm very new with Apache Camel. I can't get the simplest Camel example working. Here is the code: public class CamelFE { public static void main(String[] args) { CamelContext cc = new DefaultCamelContext(); cc.addRoutes(new RouteBuilder() { @Override public void configure() throws Exception { System.out.println("Go!"); from("file://Users/Foo/Desktop/IN") .to("file://Users/Foo/Desktop/OUT"); }); } cc.start(); cc.stop(); } Both directories exists, in the from one there is one simple file, helo