|
@@ -8,6 +8,7 @@ import com.sagacloud.route.processors.Maintainance.FilterPropertyProcessor;
|
|
|
import com.sagacloud.route.processors.Maintainance.QueryPropertyProcesspr;
|
|
|
import com.sagacloud.route.processors.Manufacturer.MaunfacturerFilter;
|
|
|
import com.sagacloud.route.processors.Manufacturer.GetVenderBySpecProcessor;
|
|
|
+import com.sagacloud.route.processors.PeriodTask.StatisticsProcessor;
|
|
|
import com.sagacloud.route.processors.VenderMapProcessor;
|
|
|
import com.sagacloud.route.processors.supplier.SupplierFilter;
|
|
|
import com.sagacloud.utils.Const;
|
|
@@ -15,6 +16,8 @@ import org.apache.commons.io.IOUtils;
|
|
|
|
|
|
import javax.ws.rs.core.MediaType;
|
|
|
import java.io.StringWriter;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
|
|
|
/**
|
|
|
* Created by Xiaoyu on 2018/7/10
|
|
@@ -104,6 +107,27 @@ public class Route extends ExceptionHandlerBaseRoute {
|
|
|
.to("direct:getPropertiesByPj")
|
|
|
.process(new FilterPropertyProcessor());
|
|
|
|
|
|
+
|
|
|
+ rest("/test/").get().produces(MediaType.APPLICATION_JSON).route()
|
|
|
+ .process(msg -> {
|
|
|
+ List<String> lst = new ArrayList<>();
|
|
|
+ for(int i = 0; i < 1000; i++){
|
|
|
+ lst.add("hh" + i);
|
|
|
+ }
|
|
|
+ msg.getOut().setBody(lst);
|
|
|
+ }).split(body(), (oldmsg, newmsg) -> {
|
|
|
+ if(oldmsg == null){
|
|
|
+ return newmsg;
|
|
|
+ }
|
|
|
+ oldmsg.getIn().setBody(oldmsg.getIn().getBody(String.class) + newmsg.getIn().getBody(String.class));
|
|
|
+ return oldmsg;
|
|
|
+ }).parallelProcessing().parallelAggregate().to("direct://test");
|
|
|
+
|
|
|
+ // 需要输入 body是Pj1101080001, getProperty("propertyData") 是 DPSelectPropertyResult类型,
|
|
|
+ // getProperty("idMap") 是 Map<String, String>类型, 说明: 所有DPID --> venderId
|
|
|
+ // getProperty("nameMap") 是 Map<String, Map<String, String>>类型 说明: 信息点Name --> (厂商库该信息点的值 --> 所属厂商)
|
|
|
+ from("direct:getProperty").process(new StatisticsProcessor());
|
|
|
+
|
|
|
//body为JSONObject,含有projectId字段
|
|
|
from("direct:getPropertiesByPj")
|
|
|
.process(new GetPropByPjProcessor())
|
|
@@ -117,9 +141,6 @@ public class Route extends ExceptionHandlerBaseRoute {
|
|
|
.route()
|
|
|
.to("direct:getPropertiesByPj");
|
|
|
|
|
|
- from("direct:buildVenderMap")
|
|
|
- .to(Const.venders+"/auxiliary/vender/query_detail")
|
|
|
- .process(new VenderMapProcessor());
|
|
|
}
|
|
|
|
|
|
|