mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-04-05 17:38:05 +08:00
🎨 优化代码
This commit is contained in:
parent
7a96f0f863
commit
7067c0080c
@ -225,6 +225,7 @@ public class WxMpMessageRouter {
|
|||||||
if (wxMpService == null) {
|
if (wxMpService == null) {
|
||||||
wxMpService = this.wxMpService;
|
wxMpService = this.wxMpService;
|
||||||
}
|
}
|
||||||
|
|
||||||
final WxMpService mpService = wxMpService;
|
final WxMpService mpService = wxMpService;
|
||||||
if (isMsgDuplicated(wxMessage)) {
|
if (isMsgDuplicated(wxMessage)) {
|
||||||
// 如果是重复消息,那么就不做处理
|
// 如果是重复消息,那么就不做处理
|
||||||
@ -253,11 +254,11 @@ public class WxMpMessageRouter {
|
|||||||
// 返回最后一个非异步的rule的执行结果
|
// 返回最后一个非异步的rule的执行结果
|
||||||
if (rule.isAsync()) {
|
if (rule.isAsync()) {
|
||||||
//获取当前线程使用的实际appId。兼容只有一个appId,且未显式设置当前使用的appId的情况
|
//获取当前线程使用的实际appId。兼容只有一个appId,且未显式设置当前使用的appId的情况
|
||||||
String appId = this.wxMpService.getWxMpConfigStorage().getAppId();
|
String appId = mpService.getWxMpConfigStorage().getAppId();
|
||||||
futures.add(
|
futures.add(
|
||||||
this.executorService.submit(() -> {
|
this.executorService.submit(() -> {
|
||||||
//传入父线程的appId
|
//传入父线程的appId
|
||||||
this.wxMpService.switchoverTo(appId);
|
mpService.switchoverTo(appId);
|
||||||
rule.service(wxMessage, context, mpService, WxMpMessageRouter.this.sessionManager,
|
rule.service(wxMessage, context, mpService, WxMpMessageRouter.this.sessionManager,
|
||||||
WxMpMessageRouter.this.exceptionHandler);
|
WxMpMessageRouter.this.exceptionHandler);
|
||||||
WxMpConfigStorageHolder.remove();
|
WxMpConfigStorageHolder.remove();
|
||||||
|
@ -37,4 +37,5 @@ public class ShareCloudBaseEnvRequest implements Serializable {
|
|||||||
@SerializedName("appids")
|
@SerializedName("appids")
|
||||||
private List<String> appids;
|
private List<String> appids;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user