FengChaoYu 3 semanas atrás
pai
commit
9712016852

+ 1 - 6
pom.xml

@@ -88,12 +88,7 @@
         <dependency>
             <groupId>com.baomidou</groupId>
             <artifactId>mybatis-plus-boot-starter</artifactId>
-            <version>3.1.2</version>
-        </dependency>
-        <dependency>
-            <groupId>com.baomidou</groupId>
-            <artifactId>mybatis-plus-generator</artifactId>
-            <version>3.1.2</version>
+            <version>3.4.2</version>
         </dependency>
         <dependency>
             <groupId>org.apache.velocity</groupId>

+ 28 - 41
src/main/java/com/gree/mall/miniapp/config/wx/WxConfiguration.java

@@ -27,19 +27,27 @@ import java.util.Objects;
 @Configuration
 public class WxConfiguration {
 
-    //企业微信  key=agentId
-    public static Map<Integer, WxCpService> cpServices =Maps.newConcurrentMap();
     //微信小程序API key = companyWechatId
-    public static Map<String,WxMaService> wxMaService = Maps.newConcurrentMap();
+    public static Map<String, WxMaService> wxMaService = Maps.newConcurrentMap();
     //微信支付服务 key = companyWechatId
-    public static Map<String,WxPayService> wxPayServices = Maps.newConcurrentMap();
+    public static Map<String, WxPayService> wxPayServices = Maps.newConcurrentMap();
     //发货模板  key = companyWechatId
-    public static Map<String,String> temFhNotice = Maps.newConcurrentMap();
+    public static Map<String, String> temFhNotice = Maps.newConcurrentMap();
 
     @Value("${wechat.payment.notifyUrl}")
     private String notifyUrl;
-//    @Value("${wechat.payment.refundNotifyUrl}")
+    //    @Value("${wechat.payment.refundNotifyUrl}")
 //    private String refundNotifyUrl;
+    @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
@@ -51,51 +59,31 @@ public class WxConfiguration {
     public void initWxServices() {
         //查询企业微信配置
         List<AdminCompanyWechat> list = adminCompanyWechatService.list();
-        reloadWxConfig(list,redisUtil,keyPath,notifyUrl);
+        reloadWxConfig(list, redisUtil, keyPath, notifyUrl);
+        //初始化微信小程序服务
+        initWxMaService(redisUtil, wechatSubAppid, wechatSubSecret);
     }
 
-    public static void reloadWxConfig(List<AdminCompanyWechat> list,RedisUtil redisUtil,String keyPath,String notifyUrl){
+    public static void reloadWxConfig(List<AdminCompanyWechat> list, RedisUtil redisUtil, String keyPath, String notifyUrl) {
 
-        cpServices.clear();
         wxMaService.clear();
         wxPayServices.clear();
 
-        for(AdminCompanyWechat companyWechat : list){
-            if(StringUtils.isEmpty(companyWechat.getMchId())||StringUtils.isEmpty(companyWechat.getSubAppId())||StringUtils.isEmpty(companyWechat.getSubSecret())){
+        for (AdminCompanyWechat companyWechat : list) {
+            if (StringUtils.isEmpty(companyWechat.getMchId()) || StringUtils.isEmpty(companyWechat.getSubAppId()) || StringUtils.isEmpty(companyWechat.getSubSecret())) {
                 continue;
             }
-            //初始化企业微信服务
-            initCpService(companyWechat,redisUtil);
             //初始化微信支付服务
-            initWxPayService(companyWechat,keyPath,notifyUrl);
-            //初始化微信小程序服务
-            initWxMaService(companyWechat,redisUtil);
-        }
-    }
-
-    /**
-     * 初始化企业微信服务
-     */
-    private static void initCpService(AdminCompanyWechat companyWechat,RedisUtil redisUtil){
-        Map<Integer,String> secretMap = new HashMap<>();
-        for (Integer agentId : secretMap.keySet()) {
-            //初始化企业微信服务
-            if (Objects.nonNull(agentId)) {
-                val configStorage = new WxCpLettuceRedisConfig(redisUtil);
-                configStorage.setAgentId(agentId);
-                configStorage.setCorpSecret(secretMap.get(agentId));
-                WxCpService wxCpService = new WxCpServiceImpl();
-                wxCpService.setWxCpConfigStorage(configStorage);
-                cpServices.put(agentId, wxCpService);
-            }
+            initWxPayService(companyWechat, keyPath, notifyUrl);
         }
     }
 
     /**
      * 初始化微信支付服务
+     *
      * @param companyWechat
      */
-    private static void initWxPayService(AdminCompanyWechat companyWechat,String keyPath,String notifyUrl){
+    private static void initWxPayService(AdminCompanyWechat companyWechat, String keyPath, String notifyUrl) {
 
         String path = keyPath.toLowerCase();
         WxPayConfig wxPayConfig = new WxPayConfig();
@@ -108,21 +96,20 @@ public class WxConfiguration {
         wxPayConfig.setKeyPath(path);
         WxPayService wxPayService = new WxPayServiceImpl();
         wxPayService.setConfig(wxPayConfig);
-        wxPayServices.put(companyWechat.getCompanyWechatId(),wxPayService);
+        wxPayServices.put(companyWechat.getCompanyWechatId(), wxPayService);
     }
 
     /**
      * 初始化小程序服务
      */
-    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);
-      // temFhNotice.put(companyWechat.getCompanyWechatId(),companyWechat.getTemplate());
+        wxMaService.put(wechatSubAppid, service);
     }
 
 

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

@@ -94,18 +94,17 @@ 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
 
 
-#微信支付
-wechat.appId=wxaddd13c267e81e70
-wechat.mchId=1602811075
-wechat.mchKey=ZfiretopAdmin20210309GreeAdminSe
-wechat.subAppId=wxd935838591c00e16
-wechat.subSecret=a19f2ec72d9e1f0b4f86fac729f6ba81
-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
 
 

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

@@ -99,31 +99,19 @@ ali.accessKeyId=LTAI4G3XTLh8G8DiTpXHpWgt
 ali.accessKeySecret=LYe8uf7Lg9WxJ1xejk45qnPFqxXLzN
 
 
-
-
-wechat.cp.corpId=ww45c857d993f173ad
-wechat.cp.appConfigs[0].agentId=1000002
-wechat.cp.appConfigs[0].secret=j7Wt6iWfG2Qyg164TBdrK22Z2rPtUPrB-PO2xCQiM0o
-wechat.cp.appConfigs[0].token=0
-wechat.cp.appConfigs[0].aesKey=0
-wechat.cp.appConfigs[1].agentId=0
-wechat.cp.appConfigs[1].secret=4EkulXcH6sSSmjJJOsmWaui9DdgKmIPbLRCL2VHIIMs
-wechat.cp.appConfigs[1].token=0
-wechat.cp.appConfigs[1].aesKey=0
-
 work.token=gRmv6tlY0YeHKcrVBmLrnr1SEO
 work.encodingAesKey=CMcyfkZBnmV9DNOAkljQNE2K83BbI1vUDyjPQoRuHGR
 
 #gree.url=http://47.115.43.13:9090/glinterface
 #gree.url.token=${gree.url}/token
 #gree.url.fxInstallReq=${gree.url}/fxInstallReq
-#微信配置
-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 - 9
src/main/resources/bootstrap-test.properties

@@ -94,18 +94,16 @@ 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
 
-
-#微信支付
-wechat.appId=wxaddd13c267e81e70
-wechat.mchId=1602811075
-wechat.mchKey=ZfiretopAdmin20210309GreeAdminSe
-wechat.subAppId=wxd935838591c00e16
-wechat.subSecret=a19f2ec72d9e1f0b4f86fac729f6ba81
-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