HANTE há 1 mês atrás
pai
commit
ad63f79495

+ 0 - 1
conf/utic-traf-server.pid

@@ -1 +0,0 @@
-6484

+ 1 - 1
utic-traf-server/src/main/java/com/utic/center/utic/traf/server/dao/repository/utic/UticTrafficRepository.java

@@ -15,7 +15,7 @@ public class UticTrafficRepository {
 
     private final UticTrafficMapper mapper;
 
-    @SqlOperation(type = SqlOperation.SqlType.SELECT, table = "NEXT_MONTH(DUAL)")
+//    @SqlOperation(type = SqlOperation.SqlType.SELECT, table = "NEXT_MONTH(DUAL)")
     public ViewTextDto findNextMonth() {
         return this.mapper.findNextMonth();
     }

+ 1 - 1
utic-traf-server/src/main/java/com/utic/center/utic/traf/server/service/LinkTrafCollectService.java

@@ -76,7 +76,7 @@ public class LinkTrafCollectService implements AbstractProcessService {
         });
     }
 
-    @ProcessingElapsed(type="TRAFFIC", name="수집원별 교통정보 조회", starting = false, endLine = true)
+    @ProcessingElapsed(type="COLLECT", name="수집원별 교통정보 조회", starting = false, endLine = true)
     @Override
     public boolean processing() {
 //        initialize(); // 작업전에 초기화 하지 않고 작업이 끝난후에 초기화한다.(LinkTrafPrcsPrepareService)

+ 1 - 1
utic-traf-server/src/main/java/com/utic/center/utic/traf/server/service/LinkTrafFusionService.java

@@ -60,7 +60,7 @@ public class LinkTrafFusionService implements AbstractProcessService {
 //        logInfo("소통정보 초기화", totalCnt, totalCnt, start);
     }
 
-    @ProcessingElapsed(type="TRAFFIC", name="링크 소통정보 퓨전", starting = false, endLine = true)
+    @ProcessingElapsed(type="FUSION", name="링크 소통정보 퓨전", starting = false, endLine = true)
     @Override
     public boolean processing() {
         // 0. 교통정보 초기화

+ 1 - 1
utic-traf-server/src/main/java/com/utic/center/utic/traf/server/service/LinkTrafMissingService.java

@@ -30,7 +30,7 @@ public class LinkTrafMissingService implements AbstractProcessService {
     private final LinkTrafCollectService collectService;
     private final LinkPatternService patternService;
 
-    @ProcessingElapsed(type="TRAFFIC", name="링크 소통정보 결측", starting = false, endLine = true)
+    @ProcessingElapsed(type="CORRECT", name="링크 소통정보 결측", starting = false, endLine = true)
     @Override
     public boolean processing() {
         // 모든 결측 알고리즘에 대해 결측 처리를 수행하고

+ 1 - 1
utic-traf-server/src/main/java/com/utic/center/utic/traf/server/service/LinkTrafSaveUticService.java

@@ -54,7 +54,7 @@ public class LinkTrafSaveUticService implements AbstractProcessService {
         log.info("[INF] {}", LogUtils.elapsedLog("교통정보 데이터 가공", System.currentTimeMillis() - start));
     }
 
-    @ProcessingElapsed(type="TRAFFIC", name="교통정보 UTIC 저장", endLine = true)
+    @ProcessingElapsed(type="SAVE", name="교통정보 UTIC 저장", endLine = true)
     @Override
     public boolean processing() {
         final long start = System.currentTimeMillis();