FengChaoYu 3 nedēļas atpakaļ
vecāks
revīzija
0fafd8cccb

+ 16 - 6
src/main/java/com/gree/mall/manager/config/wx/WxConfiguration.java

@@ -31,6 +31,16 @@ public class WxConfiguration {
 
     @Value("${wechat.payment.notifyUrl}")
     private String notifyUrl;
+    @Value("${wechat.appid}")
+    private String wechatAppid;
+    @Value("${wechat.mch.id}")
+    private String wechatMchId;
+    @Value("${wechat.mch.key}")
+    private String wechatMchKey;
+    @Value("${wechat.sub.appid}")
+    private String wechatSubAppid;
+    @Value("${wechat.sub.secret}")
+    private String wechatSubSecret;
     @Value("${wechat.keyPath}")
     private String keyPath;
     @Autowired
@@ -44,6 +54,8 @@ public class WxConfiguration {
         //查询企业微信配置
         List<AdminCompanyWechat> list = AdminCompanyWechatService.list();
         reloadWxConfig(list, redisUtil, keyPath, notifyUrl);
+        //初始化微信小程序服务
+        initWxMaService(redisUtil, wechatSubAppid, wechatSubSecret);
     }
 
     public static void reloadWxConfig(List<AdminCompanyWechat> list, RedisUtil redisUtil, String keyPath, String notifyUrl) {
@@ -57,8 +69,6 @@ public class WxConfiguration {
             }
             //初始化微信支付服务
             initWxPayService(companyWechat, keyPath, notifyUrl);
-            //初始化微信小程序服务
-            initWxMaService(companyWechat, redisUtil);
         }
     }
 
@@ -86,14 +96,14 @@ public class WxConfiguration {
     /**
      * 初始化小程序服务
      */
-    private static void initWxMaService(AdminCompanyWechat companyWechat, RedisUtil redisUtil) {
+    private static void initWxMaService(RedisUtil redisUtil, String wechatSubAppid, String wechatSubSecret) {
         WxMaDefaultConfigImpl config = new WxMaLettuceRedisConfig(redisUtil);
         // 使用上面的配置时,需要同时引入jedis-lock的依赖,否则会报类无法找到的异常
-        config.setAppid(companyWechat.getSubAppId());
-        config.setSecret(companyWechat.getSubSecret());
+        config.setAppid(wechatSubAppid);
+        config.setSecret(wechatSubSecret);
         WxMaService service = new WxMaServiceImpl();
         service.setWxMaConfig(config);
-        wxMaService.put(companyWechat.getCompanyWechatId(), service);
+        wxMaService.put(wechatSubAppid, service);
     }
 
 

+ 7 - 3
src/main/resources/bootstrap-dev.properties

@@ -90,8 +90,7 @@ spring.redis.lettuce.pool.max-idle=100
 spring.redis.lettuce.pool.min-idle=0
 spring.redis.timeout=100000ms
 
-min.app.id=
-min.secret=
+#阿里云key
 ali.accessKeyId=LTAI4G3XTLh8G8DiTpXHpWgt
 ali.accessKeySecret=LYe8uf7Lg9WxJ1xejk45qnPFqxXLzN
 
@@ -108,7 +107,12 @@ corp.mini.secret=sni3_54CCweAeEgJ4WF6FPnYyrw6tv2Ll8RyJf6Xyck
 thread.size = 1
 
 
-#微信证书
+#微信
+wechat.appid=wxaddd13c267e81e70
+wechat.mch.id=1602811075
+wechat.mch.key=ZfiretopAdmin20210309GreeAdminSe
+wechat.sub.appid=wxd935838591c00e16
+wechat.sub.secret=a19f2ec72d9e1f0b4f86fac729f6ba81
 wechat.keyPath=classpath:/static/apiclient_cert.p12
 
 #物流回调

+ 7 - 6
src/main/resources/bootstrap-prd.properties

@@ -88,18 +88,19 @@ spring.redis.lettuce.pool.max-idle=100
 spring.redis.lettuce.pool.min-idle=0
 spring.redis.timeout=100000ms
 
+#阿里云key
 ali.accessKeyId=LTAI4G3XTLh8G8DiTpXHpWgt
 ali.accessKeySecret=LYe8uf7Lg9WxJ1xejk45qnPFqxXLzN
 
 #延迟消息线程数量
 thread.size = 1
 
-wechat.appId=wxaddd13c267e81e70
-wechat.mchId=1602811075
-wechat.mchKey=ZfiretopAdmin20210309GreeAdminSe
-wechat.subAppId=wx21d155e8a449d9b1
-wechat.subSecret=5135bee0279f4f6f6e37e165ddbdd39a
-wechat.subMchId=1611148455
+#微信
+wechat.appid=wxaddd13c267e81e70
+wechat.mch.id=1602811075
+wechat.mch.key=ZfiretopAdmin20210309GreeAdminSe
+wechat.sub.appid=wxd935838591c00e16
+wechat.sub.secret=a19f2ec72d9e1f0b4f86fac729f6ba81
 wechat.keyPath=classpath:/static/apiclient_cert.p12
 
 #发票API

+ 7 - 3
src/main/resources/bootstrap-test.properties

@@ -90,8 +90,7 @@ spring.redis.lettuce.pool.max-idle=100
 spring.redis.lettuce.pool.min-idle=0
 spring.redis.timeout=100000ms
 
-min.app.id=
-min.secret=
+#阿里云key
 ali.accessKeyId=LTAI4G3XTLh8G8DiTpXHpWgt
 ali.accessKeySecret=LYe8uf7Lg9WxJ1xejk45qnPFqxXLzN
 
@@ -108,7 +107,12 @@ corp.mini.secret=sni3_54CCweAeEgJ4WF6FPnYyrw6tv2Ll8RyJf6Xyck
 thread.size = 1
 
 
-#微信证书
+#微信
+wechat.appid=wxaddd13c267e81e70
+wechat.mch.id=1602811075
+wechat.mch.key=ZfiretopAdmin20210309GreeAdminSe
+wechat.sub.appid=wxd935838591c00e16
+wechat.sub.secret=a19f2ec72d9e1f0b4f86fac729f6ba81
 wechat.keyPath=classpath:/static/apiclient_cert.p12
 
 #物流回调