Merge remote-tracking branch 'origin/develop' into develop

pull/104/head
chen.ma 3 years ago
commit 2fc576c56c

@ -24,6 +24,7 @@ import org.springframework.util.ResourceUtils;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
import java.util.Arrays; import java.util.Arrays;
import java.util.Objects;
import java.util.concurrent.BlockingQueue; import java.util.concurrent.BlockingQueue;
import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
@ -45,6 +46,8 @@ public class LarkSendMessageHandler implements SendMessageHandler {
private final InstanceInfo instanceInfo; private final InstanceInfo instanceInfo;
private static volatile String larkJson;
@Override @Override
public String getType() { public String getType() {
return NotifyPlatformEnum.LARK.name(); return NotifyPlatformEnum.LARK.name();
@ -166,7 +169,14 @@ public class LarkSendMessageHandler implements SendMessageHandler {
} }
private String getLarkJson(String filePath) throws FileNotFoundException { private String getLarkJson(String filePath) throws FileNotFoundException {
return FileUtil.readString(ResourceUtils.getFile(filePath), StandardCharsets.UTF_8); if (Objects.isNull(larkJson)) {
synchronized (LarkSendMessageHandler.class) {
if (Objects.isNull(larkJson)) {
larkJson = FileUtil.readString(ResourceUtils.getFile(filePath), StandardCharsets.UTF_8);
}
}
}
return larkJson;
} }
private String getReceives(NotifyDTO notifyConfig) { private String getReceives(NotifyDTO notifyConfig) {
@ -189,4 +199,5 @@ public class LarkSendMessageHandler implements SendMessageHandler {
} }
} }
} }

Loading…
Cancel
Save