|
@@ -25,6 +25,7 @@ import com.diagbot.vo.StandConvert;
|
|
|
import com.google.common.collect.Lists;
|
|
|
import io.github.lvyahui8.spring.facade.DataFacade;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
import java.util.HashMap;
|
|
@@ -55,6 +56,8 @@ public class PushFacade {
|
|
|
PushNewServiceClient pushNewServiceClient;
|
|
|
@Autowired
|
|
|
RedisUtil redisUtil;
|
|
|
+ @Value("${PushNew.url}")
|
|
|
+ String pushUrl;
|
|
|
|
|
|
/**
|
|
|
* 推送fac(兼容新版和5.0)
|
|
@@ -123,6 +126,7 @@ public class PushFacade {
|
|
|
public PushDTO pushNewFac(PushVO pushVo) {
|
|
|
PushDTO pushDTO = new PushDTO();
|
|
|
Map<String, Object> debug = new LinkedHashMap<>();
|
|
|
+ debug.put("大数据推送地址", pushUrl);
|
|
|
|
|
|
// 模型处理数据
|
|
|
long start = System.currentTimeMillis();
|