@@ -14,7 +14,6 @@ public class InitEnvRoute extends RouteBuilder {
public void configure() throws Exception {
fromF("timer://simpleTimer?period=1m").to("direct:syn");
- ;
from("direct:syn")
.to(dataPlatform + "/mng/project/query?bridgeEndpoint=true&secret=A123456")
@@ -0,0 +1,16 @@
+package com.sagacloud.route.processors;
+/*
+ * Author: Jxing
+ * Create Time: 2018/7/11
+ */
+
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+public class GetInsuranceNoListProcessor implements Processor {
+ @Override
+ public void process(Exchange exchange) throws Exception {
+ }
+}