Kaynağa Gözat

BUG修复0702_1006

whc 4 yıl önce
ebeveyn
işleme
7f73ab8c6f

+ 15 - 0
mpwechatApp/src/main/resources/application-dev.properties

@@ -86,3 +86,18 @@ spring.ue.datasource.driver-class-name= com.microsoft.sqlserver.jdbc.SQLServerDr
 spring.ue.datasource.url= jdbc:sqlserver://219.128.77.86:1433;DatabaseName=qywechattest
 spring.ue.datasource.username= test
 spring.ue.datasource.password= 360ljtest!
+
+clientMember.port= 8090
+clientMember.service.id= memb
+
+clientQiyewechat.port= 7000
+clientQiyewechat.service.id= qiyewechat
+
+clientOauth2.port= 8031
+clientOauth2.service.id= oauth2
+
+clientZuul.port= 13001
+clientZuul.service.id= 192.168.50.32
+
+redirectMpUri.protocol= http://
+redirectMpUri.host= mem.360lj.com/mp3

+ 15 - 0
mpwechatApp/src/main/resources/application-prod.properties

@@ -69,3 +69,18 @@ spring.ue.datasource.driver-class-name= com.microsoft.sqlserver.jdbc.SQLServerDr
 spring.ue.datasource.url= jdbc:sqlserver://localhost:1433;DatabaseName=qywechat
 spring.ue.datasource.username= appauth
 spring.ue.datasource.password= 360lj.comAppauth#2020
+
+clientMember.port= 8005
+clientMember.service.id= memb
+
+clientQiyewechat.port= 7000
+clientQiyewechat.service.id= qiyewechat
+
+clientOauth2.port= 8031
+clientOauth2.service.id= oauth2
+
+clientZuul.port= 13000
+clientZuul.service.id= localhost
+
+redirectMpUri.protocol= http://
+redirectMpUri.host= mem.360lj.com/mp3

+ 15 - 0
mpwechatApp/src/main/resources/application-test.properties

@@ -69,3 +69,18 @@ spring.ue.datasource.driver-class-name= com.microsoft.sqlserver.jdbc.SQLServerDr
 spring.ue.datasource.url= jdbc:sqlserver://219.128.77.86:1433;DatabaseName=qywechattest
 spring.ue.datasource.username= test
 spring.ue.datasource.password= 360ljtest!
+
+clientMember.port= 8090
+clientMember.service.id= memb
+
+clientQiyewechat.port= 7000
+clientQiyewechat.service.id= qiyewechat
+
+clientOauth2.port= 8031
+clientOauth2.service.id= oauth2
+
+clientZuul.port= 13001
+clientZuul.service.id= 192.168.50.32
+
+redirectMpUri.protocol= http://
+redirectMpUri.host= mem.360lj.com/mp3

+ 1 - 22
mpwechatApp/src/main/resources/application.yml

@@ -44,7 +44,7 @@ spring:
             max-file-size : 10MB
             max-request-size : 20MB
     profiles:
-        active: dev
+        active: prod
     quartz:
         properties:
             org:
@@ -121,24 +121,3 @@ mybatis-plus:
         # 是否开启自动驼峰命名规则(camel case)映射,即从经典数据库列名 A_COLUMN(下划线命名) 到经典 Java 属性名 aColumn(驼峰命名) 的类似映射
         map-underscore-to-camel-case: false
 
-clientMember:
-    port: 8090
-    service:
-        id: memb
-clientQiyewechat:
-    port: 7000
-    service:
-        id: qiyewechat
-
-clientOauth2:
-    port: 8031
-    service:
-        id: oauth2
-clientZuul:
-    port: 13001
-    service:
-        id: 192.168.50.32
-
-redirectMpUri:
-    protocol: http://
-    host: mem.360lj.com/mp3

+ 2 - 0
qiyewechatApp/src/main/java/com/liangjiang11/wx/cp/controller/ExternalUserController.java

@@ -252,4 +252,6 @@ public class ExternalUserController {
     public String syncExternalUser(@PathVariable String corpid){
         return externalUserService.syncExternalUser(corpid, restTemplate);
     }
+
+
 }