diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpService.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpService.java index c544c7f46..6df78c12d 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpService.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/WxMpService.java @@ -20,6 +20,7 @@ import me.chanjar.weixin.mp.config.WxMpConfigStorage; import me.chanjar.weixin.mp.enums.WxMpApiUrl; import java.util.Map; +import java.util.function.Function; /** * 微信公众号API的Service. @@ -393,6 +394,8 @@ public interface WxMpService extends WxService { */ boolean switchover(String mpId); + boolean switchover(String mpId, Function func); + /** * 进行相应的公众号切换. * @@ -401,6 +404,8 @@ public interface WxMpService extends WxService { */ WxMpService switchoverTo(String mpId); + WxMpService switchoverTo(String mpId, Function func); + /** * 返回客服接口方法实现类,以方便调用其各个接口. * diff --git a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/BaseWxMpServiceImpl.java b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/BaseWxMpServiceImpl.java index e2230e2a8..cb2479c57 100644 --- a/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/BaseWxMpServiceImpl.java +++ b/weixin-java-mp/src/main/java/me/chanjar/weixin/mp/api/impl/BaseWxMpServiceImpl.java @@ -43,6 +43,7 @@ import java.util.HashMap; import java.util.Map; import java.util.concurrent.TimeUnit; import java.util.concurrent.locks.Lock; +import java.util.function.Function; import static me.chanjar.weixin.mp.enums.WxMpApiUrl.Other.*; @@ -156,6 +157,10 @@ public abstract class BaseWxMpServiceImpl implements WxMpService, RequestH @Setter private WxMpFreePublishService freePublishService = new WxMpFreePublishServiceImpl(this); + @Getter + @Setter + private Function configStorageFunction; + private Map configStorageMap = new HashMap<>(); private int retrySleepMillis = 1000; @@ -575,21 +580,43 @@ public abstract class BaseWxMpServiceImpl implements WxMpService, RequestH @Override public WxMpService switchoverTo(String mpId) { + return switchoverTo(mpId, configStorageFunction); + } + + @Override + public WxMpService switchoverTo(String mpId, Function func) { if (this.configStorageMap.containsKey(mpId)) { WxMpConfigStorageHolder.set(mpId); return this; } - + if (func != null) { + WxMpConfigStorage storage = func.apply(mpId); + if (storage != null) { + this.addConfigStorage(mpId, storage); + return this; + } + } throw new WxRuntimeException(String.format("无法找到对应【%s】的公众号配置信息,请核实!", mpId)); } @Override public boolean switchover(String mpId) { + return switchover(mpId, configStorageFunction); + } + + @Override + public boolean switchover(String mpId, Function func) { if (this.configStorageMap.containsKey(mpId)) { WxMpConfigStorageHolder.set(mpId); return true; } - + if (func != null) { + WxMpConfigStorage storage = func.apply(mpId); + if (storage != null) { + this.addConfigStorage(mpId, storage); + return true; + } + } log.error("无法找到对应【{}】的公众号配置信息,请核实!", mpId); return false; }