1.消息推送去掉锁
This commit is contained in:
parent
f3567b07aa
commit
f1de90a6b4
|
@ -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";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user