Browse Source

********************WX***********************
同步关系

zhangweixin 4 years ago
parent
commit
385ba3d436

+ 7 - 3
datasyn/src/main/kotlin/com/persagy/server/syn/models/tools/EquipUtil.kt

@@ -2383,9 +2383,13 @@ object EquipUtil {
         equipment.classCode = mapObj["classCode"].toString()
         equipment.id =  mapObj["id"]!!.toString()
         equipment.name =  mapObj["name"]!!.toString()
-        val containsKey2 = mapObj.containsKey("localId")
-        if (containsKey2) {
-            equipment.localId =  mapObj["localId"]!!.toString()
+        try {
+            val containsKey2 = mapObj.containsKey("localId")
+            if (containsKey2) {
+                equipment.localId =  mapObj["localId"]!!.toString()
+            }
+        } catch (e: Exception) {
+            e.printStackTrace()
         }
         val containsKey3 = mapObj.containsKey("localId")
         if (containsKey3) {

+ 1 - 2
datasyn/src/main/kotlin/com/persagy/server/syn/task/SchedulerTaskTwo.kt

@@ -29,7 +29,6 @@ package com.persagy.server.syn.task
 import com.persagy.server.syn.jms.MessageProcessing
 import org.slf4j.LoggerFactory
 import org.springframework.beans.factory.annotation.Autowired
-import org.springframework.scheduling.annotation.Scheduled
 import org.springframework.stereotype.Service
 
 /**
@@ -52,7 +51,7 @@ class SchedulerTaskTwo {
     //cron表达式:每隔5秒执行一次
 //    @Scheduled(cron = "0 */3 * * * ?")
 //    @Scheduled(cron = "0 */1 * * * ?")
-    @Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
+//    @Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
     fun scheduled() {
         try {
             logger.info("同步中台任务开始} *****************************************************************")