Explorar el Código

配置文件更新

wangsy hace 7 meses
padre
commit
65118aeb04
Se han modificado 37 ficheros con 140 adiciones y 107 borrados
  1. 1 1
      admin-service/src/main/resources/bootstrap.yml
  2. 1 1
      aipt-service/src/main/resources/bootstrap.yml
  3. 1 1
      bi-service/src/main/resources/bootstrap.yml
  4. 1 2
      cdssman-service/src/main/java/com/diagbot/dto/DiseaseSubDetailDTO.java
  5. 47 0
      cdssman-service/src/main/java/com/diagbot/dto/KlConceptDTO.java
  6. 0 5
      cdssman-service/src/main/java/com/diagbot/entity/KlConcept.java
  7. 13 21
      cdssman-service/src/main/java/com/diagbot/facade/KlDiseaseFacade.java
  8. 1 1
      cdssman-service/src/main/resources/bootstrap.yml
  9. 1 1
      config-server/src/main/resources/shared/application-local.yml
  10. 5 5
      config-server/src/main/resources/shared/gateway-service-local.yml
  11. 7 7
      config-server/src/main/resources/shared/icss-service-local.yml
  12. 7 7
      config-server/src/main/resources/shared/icssman-service-local.yml
  13. 9 9
      config-server/src/main/resources/shared/ltkg-service-local.yml
  14. 2 2
      config-server/src/main/resources/shared/ltkg-service-pro.yml
  15. 10 10
      config-server/src/main/resources/shared/mrman-service-dev.yml
  16. 6 6
      config-server/src/main/resources/shared/mrqcman-service-dev.yml
  17. 7 7
      config-server/src/main/resources/shared/tran-service-local.yml
  18. 2 2
      config-server/src/main/resources/shared/triage-service-local.yml
  19. 1 1
      data-service/src/main/resources/bootstrap.yml
  20. 1 1
      diagbotman-service/src/main/resources/bootstrap.yml
  21. 1 1
      eureka-server/src/main/resources/bootstrap.yml
  22. 1 1
      feedback-service/src/main/resources/bootstrap.yml
  23. 1 1
      gateway-service/src/main/resources/bootstrap.yml
  24. 1 1
      icss-service/src/main/resources/bootstrap.yml
  25. 1 1
      icssman-service/src/main/resources/bootstrap.yml
  26. 1 1
      knowledgeman-service/src/main/resources/bootstrap.yml
  27. 1 1
      log-service/src/main/resources/bootstrap.yml
  28. 1 1
      ltapi-service/src/main/resources/bootstrap.yml
  29. 1 1
      monitor-service/src/main/resources/bootstrap.yml
  30. 1 1
      mrman-service/src/main/resources/bootstrap.yml
  31. 1 1
      mrqcman-service/src/main/resources/bootstrap.yml
  32. 1 1
      prec-service/src/main/resources/bootstrap.yml
  33. 1 1
      precman-service/src/main/resources/bootstrap.yml
  34. 1 1
      tran-service/src/main/resources/bootstrap.yml
  35. 1 1
      triage-service/src/main/resources/bootstrap.yml
  36. 1 1
      uaa-service/src/main/resources/bootstrap.yml
  37. 1 1
      user-service/src/main/resources/bootstrap.yml

+ 1 - 1
admin-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
aipt-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
bi-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 2
cdssman-service/src/main/java/com/diagbot/dto/DiseaseSubDetailDTO.java

@@ -1,6 +1,5 @@
 package com.diagbot.dto;
 
-import com.diagbot.entity.KlConcept;
 import lombok.Getter;
 import lombok.Setter;
 
@@ -17,6 +16,6 @@ import java.util.List;
 public class DiseaseSubDetailDTO implements Serializable {
     private Integer rid;
     private String rname;
-    private List<KlConcept> details;
+    private List<KlConceptDTO> details;
     private List<Integer> libType;
 }

+ 47 - 0
cdssman-service/src/main/java/com/diagbot/dto/KlConceptDTO.java

@@ -0,0 +1,47 @@
+package com.diagbot.dto;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Getter;
+import lombok.Setter;
+
+
+/**
+ * @author dsYun
+ * @Description:
+ * @date 2024-10-11 14:07
+ */
+@Setter
+@Getter
+public class KlConceptDTO {
+
+    /**
+     * 概念id
+     */
+    private Long id;
+
+    /**
+     * 对应术语id
+     */
+    private Long libId;
+
+    /**
+     * 概念名称(冗余)
+     */
+    private String libName;
+
+    /**
+     * 概念词性type(冗余)
+     */
+    private Integer libType;
+
+    /**
+     * 启用状态(0:禁用,1:启用)
+     */
+    private Integer status;
+
+    /**
+     * 药品分类
+     */
+    private String drugC;
+}

+ 0 - 5
cdssman-service/src/main/java/com/diagbot/entity/KlConcept.java

@@ -72,11 +72,6 @@ public class KlConcept implements Serializable {
      */
     private Integer status;
 
-    /**
-     * 药品分类
-     */
-    private String drugC;
-
     public Long getId() {
         return id;
     }

+ 13 - 21
cdssman-service/src/main/java/com/diagbot/facade/KlDiseaseFacade.java

@@ -3,15 +3,7 @@ package com.diagbot.facade;
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import com.baomidou.mybatisplus.core.metadata.IPage;
 import com.diagbot.client.UserServiceClient;
-import com.diagbot.dto.DiseaseAllDetailDTO;
-import com.diagbot.dto.DiseaseDetailDTO;
-import com.diagbot.dto.DiseasePageDTO;
-import com.diagbot.dto.DiseaseSubDetailDTO;
-import com.diagbot.dto.DiseaseTreeDetailDTO;
-import com.diagbot.dto.KlConceptAllDTO;
-import com.diagbot.dto.KlConceptSimDTO;
-import com.diagbot.dto.KlDiseaseDTO;
-import com.diagbot.dto.RespDTO;
+import com.diagbot.dto.*;
 import com.diagbot.entity.CommonParam;
 import com.diagbot.entity.KlConcept;
 import com.diagbot.entity.KlDisease;
@@ -128,14 +120,14 @@ public class KlDiseaseFacade extends KlDiseaseServiceImpl {
 
                     diseaseSubDetailDTO.setRid(x.getRid());
                     diseaseSubDetailDTO.setRname(x.getRname());
-                    List<KlConcept> details = diseaseSubDetailDTO.getDetails();
+                    List<KlConceptDTO> details = diseaseSubDetailDTO.getDetails();
                     diseaseSubDetailDTO.setDetails(details);
-                    KlConcept klConcept = new KlConcept();
+                    KlConceptDTO klConceptDTO = new KlConceptDTO();
                     String DrugClass = StringUtil.isNotBlank(x.getDrugC()) ? x.getDrugC() : "其他";
-                    klConcept.setDrugC(DrugClass);
-                    klConcept.setId(x.getEid());
-                    klConcept.setLibName(x.getItemName());
-                    details.add(klConcept);
+                    klConceptDTO.setDrugC(DrugClass);
+                    klConceptDTO.setId(x.getEid());
+                    klConceptDTO.setLibName(x.getItemName());
+                    details.add(klConceptDTO);
 
                     disSubDetailMap.put(x.getRid(), diseaseSubDetailDTO);
                 } else {
@@ -143,14 +135,14 @@ public class KlDiseaseFacade extends KlDiseaseServiceImpl {
 
                     diseaseSubDetailDTO.setRid(x.getRid());
                     diseaseSubDetailDTO.setRname(x.getRname());
-                    List<KlConcept> details = Lists.newArrayList();
+                    List<KlConceptDTO> details = Lists.newArrayList();
                     diseaseSubDetailDTO.setDetails(details);
-                    KlConcept klConcept = new KlConcept();
+                    KlConceptDTO klConceptDTO = new KlConceptDTO();
                     String DrugClass = StringUtil.isNotBlank(x.getDrugC()) ? x.getDrugC() : "其他";
-                    klConcept.setDrugC(DrugClass);
-                    klConcept.setId(x.getEid());
-                    klConcept.setLibName(x.getItemName());
-                    details.add(klConcept);
+                    klConceptDTO.setDrugC(DrugClass);
+                    klConceptDTO.setId(x.getEid());
+                    klConceptDTO.setLibName(x.getItemName());
+                    details.add(klConceptDTO);
 
                     disSubDetailMap.put(x.getRid(), diseaseSubDetailDTO);
                 }

+ 1 - 1
cdssman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: dev
+    active: pro
 
 eureka:
   client:

+ 1 - 1
config-server/src/main/resources/shared/application-local.yml

@@ -103,4 +103,4 @@ crypt:
 
 mrqc:
   server:
-    address: http://192.168.2.234:8090
+    address: http://173.18.12.192:5858

+ 5 - 5
config-server/src/main/resources/shared/gateway-service-local.yml

@@ -18,9 +18,9 @@ spring:
   redis:
     database:
       cache: 0 # Redis限流缓存索引
-    host: 192.168.2.236  #Redis服务器地址
-    port: 6378 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
-    password: lantone # Redis服务器连接密码(默认为空)
+    host: 173.18.12.194  #Redis服务器地址
+    port: 6379 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
+    password: # Redis服务器连接密码(默认为空)
     lettuce:
       pool:
         max-active: 8 # 连接池最大连接数(使用负值表示没有限制)
@@ -30,9 +30,9 @@ spring:
     timeout: 20000 # 连接超时时间(毫秒)
   #mq
   rabbitmq:
-    host: localhost
+    host: 173.18.12.194
     port: 5672
-    username: guest
+    username: dsYun
     password: guest
     publisher-confirms: true
     virtual-host: /

+ 7 - 7
config-server/src/main/resources/shared/icss-service-local.yml

@@ -7,9 +7,9 @@ spring:
     druid:
       driver-class-name: com.mysql.cj.jdbc.Driver
       platform: mysql
-      url: jdbc:mysql://192.168.2.236:3306/sys-icss?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
+      url: jdbc:mysql://173.18.12.194:3306/sys-icss?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
       username: root
-      password: lantone
+      password: dsYun8!@#
       # 连接池的配置信息
       # 初始化大小,最小,最大
       initialSize: 5
@@ -67,9 +67,9 @@ spring:
 
   #mq
   rabbitmq:
-    host: localhost
+    host: 173.18.12.194
     port: 5672
-    username: guest
+    username: dsYun
     password: guest
     publisher-confirms: true
     virtual-host: /
@@ -78,9 +78,9 @@ spring:
   redis:
     database:
       cache: 5 # Redis缓存索引
-    host: 192.168.2.236  #Redis服务器地址
-    port: 6378 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
-    password: lantone # Redis服务器连接密码(默认为空)
+    host: 173.18.12.194  #Redis服务器地址
+    port: 6379 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
+    password: # Redis服务器连接密码(默认为空)
     lettuce:
       pool:
         max-active: 8 # 连接池最大连接数(使用负值表示没有限制)

+ 7 - 7
config-server/src/main/resources/shared/icssman-service-local.yml

@@ -7,9 +7,9 @@ spring:
     druid:
       driver-class-name: com.mysql.cj.jdbc.Driver
       platform: mysql
-      url: jdbc:mysql://192.168.2.236:3306/sys-icss?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
+      url: jdbc:mysql://173.18.12.194:3306/sys-icss?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
       username: root
-      password: lantone
+      password: dsYun8!@#
       # 连接池的配置信息
       # 初始化大小,最小,最大
       initialSize: 5
@@ -65,9 +65,9 @@ spring:
 
   #mq
   rabbitmq:
-    host: localhost
+    host: 173.18.12.194
     port: 5672
-    username: guest
+    username: dsYun
     password: guest
     publisher-confirms: true
     virtual-host: /
@@ -76,9 +76,9 @@ spring:
   redis:
     database:
       cache: 5 # Redis缓存索引
-    host: 192.168.2.236  #Redis服务器地址
-    port: 6378 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
-    password: lantone # Redis服务器连接密码(默认为空)
+    host: 173.18.12.194  #Redis服务器地址
+    port: 6379 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
+    password: # Redis服务器连接密码(默认为空)
     lettuce:
       pool:
         max-active: 8 # 连接池最大连接数(使用负值表示没有限制)

+ 9 - 9
config-server/src/main/resources/shared/ltkg-service-local.yml

@@ -12,9 +12,9 @@ spring:
       datasource:
         neo4j:
           driver-class-name: org.neo4j.jdbc.Driver
-          url: jdbc:neo4j:http://192.168.3.150:7474
+          url: jdbc:neo4j:http://173.18.12.194:7474
           username: neo4j
-          password: 12345678
+          password: dsYun8!@#
           #定义初始连接数
           initialSize: 0
           #定义最大连接数
@@ -28,9 +28,9 @@ spring:
         mysql:
           driver-class-name: com.mysql.cj.jdbc.Driver
           platform: mysql
-          url: jdbc:mysql://192.168.2.236:3306/sys-ltkg?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
+          url: jdbc:mysql://173.18.12.194:3306/sys-ltkg?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
           username: root
-          password: lantone
+          password: dsYun8!@#
 
 
   cloud:
@@ -42,9 +42,9 @@ spring:
 
   #mq
   rabbitmq:
-    host: localhost
+    host: 173.18.12.194
     port: 5672
-    username: guest
+    username: dsYun
     password: guest
     publisher-confirms: true
     virtual-host: /
@@ -91,11 +91,11 @@ mybatis-plus:
 
 nlprel:
   server:
-    address: http://192.168.3.150:3456
+    address: http://173.18.12.190:3456
 
 qa:
   server:
-    address: http://192.168.3.150:9998
+    address: http://173.18.12.193:9998
 term:
   server:
-    address: http://192.168.3.150:23232
+    address: http://173.18.12.190:23232

+ 2 - 2
config-server/src/main/resources/shared/ltkg-service-pro.yml

@@ -28,9 +28,9 @@ spring:
         mysql:
           driver-class-name: com.mysql.cj.jdbc.Driver
           platform: mysql
-          url: jdbc:mysql://192.168.2.122:3306/sys-ltkg?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
+          url: jdbc:mysql://173.18.12.191:3306/sys-ltkg?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
           username: root
-          password: lantone
+          password: dsYun8!@#
 
 
   cloud:

+ 10 - 10
config-server/src/main/resources/shared/mrman-service-dev.yml

@@ -52,17 +52,17 @@ spring:
         master:
           driver-class-name: com.mysql.cj.jdbc.Driver
           platform: mysql
-          url: jdbc:mysql://192.168.2.237:3306/qc?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false&allowMultiQueries=true
+          url: jdbc:mysql://173.18.12.194:3306/qc?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false&allowMultiQueries=true
           username: root
-          password: lantone
+          password: dsYun8!@#
           druid:
             initial-size: 5
         slave:
           driver-class-name: com.mysql.cj.jdbc.Driver
           platform: mysql
-          url: jdbc:mysql://192.168.2.237:3306/qc?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false&allowMultiQueries=true
+          url: jdbc:mysql://173.18.12.194:3306/qc?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false&allowMultiQueries=true
           username: root
-          password: lantone
+          password: dsYun8!@#
           druid:
             initial-size: 5
 
@@ -75,10 +75,10 @@ spring:
 
   #mq
   rabbitmq:
-    host: 192.168.2.236
+    host: 173.18.12.194
     port: 5672
-    username: lantone
-    password: lantone
+    username: dsYun
+    password: guest
     publisher-confirms: true
     virtual-host: /
 
@@ -86,9 +86,9 @@ spring:
   redis:
     database:
       cache: 8 # cache索引
-    host: 192.168.2.236  #Redis服务器地址
+    host: 173.18.12.194  #Redis服务器地址
     port: 6379 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
-    password: lantone # Redis服务器连接密码(默认为空)
+    password: # Redis服务器连接密码(默认为空)
     lettuce:
       pool:
         max-active: 8 # 连接池最大连接数(使用负值表示没有限制)
@@ -126,4 +126,4 @@ mybatis-plus:
     map-underscore-to-camel-case: true
     cache-enabled: false
 
-qc.address: http://192.168.2.236:5858
+qc.address: http://173.18.12.195:5858

+ 6 - 6
config-server/src/main/resources/shared/mrqcman-service-dev.yml

@@ -7,9 +7,9 @@ spring:
     druid:
       driver-class-name: com.mysql.cj.jdbc.Driver
       platform: mysql
-      url: jdbc:mysql://192.168.2.236:3306/sys-mrqc?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
+      url: jdbc:mysql://173.18.12.194:3306/sys-mrqc?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
       username: root
-      password: lantone
+      password: dsYun8!@#
       # 连接池的配置信息
       # 初始化大小,最小,最大
       initialSize: 5
@@ -59,10 +59,10 @@ spring:
 
   #mq
   rabbitmq:
-    host: 192.168.2.236
+    host: 173.18.12.194
     port: 5672
-    username: lantone
-    password: lantone
+    username: dsYun
+    password: guest
     publisher-confirms: true
     virtual-host: /
 
@@ -96,4 +96,4 @@ mybatis-plus:
     cache-enabled: false
 
 imageUrl:
-  prefix: http://192.168.2.236:82
+  prefix: http://173.18.12.194:82

+ 7 - 7
config-server/src/main/resources/shared/tran-service-local.yml

@@ -7,9 +7,9 @@ spring:
     druid:
       driver-class-name: com.mysql.cj.jdbc.Driver
       platform: mysql
-      url: jdbc:mysql://192.168.2.236:3306/sys-tran?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
+      url: jdbc:mysql://173.18.12.194:3306/sys-tran?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf8&characterSetResults=utf8&useSSL=false
       username: root
-      password: lantone
+      password: dsYun8!@#
       # 连接池的配置信息
       # 初始化大小,最小,最大
       initialSize: 5
@@ -59,9 +59,9 @@ spring:
 
   #mq
   rabbitmq:
-    host: localhost
+    host: 173.18.12.194
     port: 5672
-    username: guest
+    username: dsYun
     password: guest
     publisher-confirms: true
     virtual-host: /
@@ -70,9 +70,9 @@ spring:
   redis:
     database:
       mr: 7 # Redis病历索引
-    host: 192.168.2.236  #Redis服务器地址
-    port: 6378 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
-    password: lantone # Redis服务器连接密码(默认为空)
+    host: 173.18.12.194  #Redis服务器地址
+    port: 6379 # Redis服务器连接端口(本地环境端口6378,其他环境端口是6379)
+    password: # Redis服务器连接密码(默认为空)
     lettuce:
       pool:
         max-active: 8 # 连接池最大连接数(使用负值表示没有限制)

+ 2 - 2
config-server/src/main/resources/shared/triage-service-local.yml

@@ -14,9 +14,9 @@ spring:
 
   #mq
   rabbitmq:
-    host: localhost
+    host: 173.18.12.194
     port: 5672
-    username: guest
+    username: dsYun
     password: guest
     publisher-confirms: true
     virtual-host: /

+ 1 - 1
data-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
diagbotman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
eureka-server/src/main/resources/bootstrap.yml

@@ -1,3 +1,3 @@
 spring:
   profiles:
-    active: local
+    active: pro

+ 1 - 1
feedback-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
gateway-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-      active: local
+      active: pro
   main:
     allow-bean-definition-overriding: true
 

+ 1 - 1
icss-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
icssman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
knowledgeman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
log-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
ltapi-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
monitor-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
mrman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: dev
 
 eureka:
   client:

+ 1 - 1
mrqcman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
prec-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
precman-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
tran-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
triage-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: local
+    active: pro
 
 eureka:
   client:

+ 1 - 1
uaa-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: dev
+    active: pro
   main:
     allow-bean-definition-overriding: true
 

+ 1 - 1
user-service/src/main/resources/bootstrap.yml

@@ -9,7 +9,7 @@ spring:
         enabled: true
         serviceId: config-server
   profiles:
-    active: dev
+    active: pro
 
 eureka:
   client: