1.消息推送去掉锁

This commit is contained in:
邱贞招 2024-09-16 16:17:23 +08:00
parent f3567b07aa
commit f1de90a6b4

View File

@ -127,13 +127,11 @@ public class ReceiveController {
log.info("接收到receive方法时间: " + System.currentTimeMillis()); log.info("接收到receive方法时间: " + System.currentTimeMillis());
// 使用线程池提交任务 // 使用线程池提交任务
scheduledExecutorService.submit(() -> { scheduledExecutorService.submit(() -> {
synchronized (lock) {
try { try {
handleBody(obj); handleBody(obj);
} catch (UnsupportedEncodingException | NoSuchAlgorithmException | InvalidKeyException e) { } catch (UnsupportedEncodingException | NoSuchAlgorithmException | InvalidKeyException e) {
e.printStackTrace(); e.printStackTrace();
} }
}
}); });
/*************明文模式 end****************/ /*************明文模式 end****************/
return "ok"; return "ok";