瀏覽代碼

********************WX******************
调整空间关系

zhangweixin 4 年之前
父節點
當前提交
ed7317d22a

+ 2 - 2
datacenter/src/main/kotlin/com/persagy/server/jms/TopicReceiver.kt

@@ -63,8 +63,8 @@ class TopicReceiver {
      *
      * @param
      */
-    @RabbitListener(queues = ["queue-center-adm"])
-    @RabbitHandler
+//    @RabbitListener(queues = ["queue-center-adm"])
+//    @RabbitHandler
     fun receiveMessage(message: String) {
         try {
             println("接收数据中心消息 , $message")

+ 1 - 1
datacenter/src/main/kotlin/com/persagy/server/mappers/IRelationCountMapper.kt

@@ -49,7 +49,7 @@ interface IRelationCountMapper {
     @SelectProvider(type = IRelationCountProvider::class , method = "getSql")
     fun relationCount(@Param("tableName") tableName: String, @Param("projectId") projectId: String): Int
 
-    @SelectProvider(type = IRelationCountProvider::class , method = "getSql")
+    @SelectProvider(type = IRelationCountProvider::class , method = "getSqlRelType")
     fun relationCountRelType(@Param("tableName") tableName: String, @Param("projectId") projectId: String,@Param("type") type: String): Int
 
 

+ 1 - 4
datacenter/src/main/kotlin/com/persagy/server/mappers/IRelationCountProvider.kt

@@ -60,12 +60,9 @@ open class IRelationCountProvider {
         }
 
         if(map["projectId"] != null&& map["projectId"] !=""){
-            sql.WHERE("project_id = '" + map["projectId"] + "'"+"and"+"type = '"+map["type"]+"'")
+            sql.WHERE("project_id = '" + map["projectId"] + "'"+" and "+"type = '"+map["type"]+"'")
         }
 
-
-
-
         println("----------------$sql")
         return sql.toString()
     }

+ 2 - 0
datacenter/src/main/kotlin/com/persagy/server/services/relation_calc/ManualRelationCalcService.kt

@@ -3825,6 +3825,7 @@ open class ManualRelationCalcService {
                 listSF.add(SFilter.or(SFilter.contain("name2",manualRelationCalcRequest.vagueTo!!),SFilter.contain("localId2",manualRelationCalcRequest.vagueTo!!),SFilter.contain("localName2",manualRelationCalcRequest.vagueTo!!)))
             }
             listSF.add(SFilter.eq("projectId", projectId))
+            listSF.add(SFilter.eq("type",  manualRelationCalcRequest.relType!!))
             val rSp2SpTwoList = CommonServices.rSp2SpTwoService.select(listSF).exec()
             if (rSp2SpTwoList.size>0) {
 
@@ -3834,6 +3835,7 @@ open class ManualRelationCalcService {
                     listId1.add(rSp2SpTwo.id1!!)
                     listId2.add(rSp2SpTwo.id2!!)
                 }
+                logger.debug("id1 = ${listId1.size}")
                 val sCascadeQuery = sQueryRequest.cascade!!.get(0)
                 sCascadeQuery.filters = "id in ${listId2.toJson()}"
                 list.add(SFilter.inList("id",listId1.toList()))

+ 9 - 9
datacenter/src/main/resources/application-dev.yml

@@ -34,8 +34,8 @@ spring:
     type:                               com.alibaba.druid.pool.DruidDataSource
     driver-class-name:                  org.postgresql.Driver
 #    url:                                jdbc:postgresql://60.205.177.43:5432/datacenterlabsl
-#    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
-    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
 #    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
     username:                           postgres
 #    password:                           persagy_2020qwe!@#
@@ -47,13 +47,13 @@ spring:
       max-file-size:                   500MB        # 限制单个文件的最大值
 
     #配置rabbitMq 服务器
-#  rabbitmq:
-#    host: 192.168.64.15
-#    port: 9936
-#    username: admin
-#    password: brzj123456
-#    #虚拟host 可以不设置,使用 server 默认 host
-#    virtual-host: /test
+  rabbitmq:
+    host: 192.168.64.15
+    port: 9936
+    username: admin
+    password: brzj123456
+    #虚拟host 可以不设置,使用 server 默认 host
+    virtual-host: /test
 
 #  rabbitmq:
 #    host: 39.102.43.179

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

@@ -53,7 +53,7 @@ class SchedulerTask {
     //cron表达式:每隔5秒执行一次
 //    @Scheduled(cron = "0 */5 * * * ?")
 //    @Scheduled(cron="0/30 * *  * * ? ")   //每5秒执行一次
-    @Scheduled(cron = "0 */1 * * * ?")
+//    @Scheduled(cron = "0 */1 * * * ?")
     fun scheduled() {
         logger.info("同步数据中心任务开始至中台")
         messageProcessing.syncDataCenter()

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

@@ -53,7 +53,7 @@ class SchedulerTaskRel {
     //cron表达式:每隔5秒执行一次
 //    @Scheduled(cron = "0 */5 * * * ?")
 //    @Scheduled(cron="0/5 * *  * * ? ")   //每5秒执行一次
-    @Scheduled(cron = "0 */3 * * * ?")
+//    @Scheduled(cron = "0 */3 * * * ?")
     fun scheduled() {
         logger.info("同步数据中心任务开始至数据中台-关系数据")
         messageProcessing.syncDataCenterRel()

+ 3 - 3
datasyn/src/main/resources/application-dev.yml

@@ -6,8 +6,8 @@ spring:
     #    username:                           postgres
     #    password:                           123qwe!@#
 #    url:                                jdbc:postgresql://192.168.64.14:5432/datacenterlabsl
-    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
-#    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
+#    url:                                jdbc:postgresql://192.168.64.15:5432/datacenter
+    url:                                jdbc:postgresql://39.102.40.239:5432/datacenter
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj
@@ -47,7 +47,7 @@ mqtopid:
 
 custom:
   #true 代表eureka  false  代表 http
-  eurekaorhttp:                       true
+  eurekaorhttp:                       false
 
 # 服务名
 servicename:

+ 1 - 1
scanbuilding/src/main/kotlin/com/persagy/server/controller/task/ScanTaskBaseController.kt

@@ -67,7 +67,7 @@ open class ScanTaskBaseController {
     fun count(@RequestBody request: SCountRequest): SCountResponse {
         val withFilterList = ArrayList<SFilter>()
         withFilterList.add(SFilter.eq("projectId", SPageContext.getHeader("projectId").toString()))
-        withFilterList.add(SFilter.eq(SLength("classCode"), 6))
+        withFilterList.add(SFilter.lt(SLength("classCode"), 7))
         return ScanTaskBaseService.count(request,withFilterList)
     } // Function count()
 

+ 2 - 2
scanbuilding/src/main/resources/application-test.yml

@@ -7,8 +7,8 @@ spring:
     #    username:                           postgres
     #    password:                           123qwe!@#
 #    url:                                jdbc:postgresql://172.17.100.16:5432/datacenter
-    url:                                jdbc:postgresql://datacenter:5432/datacenter
-#    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
+#    url:                                jdbc:postgresql://datacenter:5432/datacenter
+    url:                                jdbc:postgresql://datacenter:5432/datacenterlabsl
     username:                           postgres
     #    password:                           persagy_2020qwe!@#
     password:                           cGVyc2FneV8yMDIwcXdlIUAj