Loading

摘要: 异步任务 @Service public class AsyncService { @Async //标识着这是一个异步任务 public void hello(){ try { Thread.sleep(3000); } catch (InterruptedException e) { e.printStackTrace(); } System.out.println("数据处理中 .... "... 阅读全文
posted @ 2020-09-13 11:33 青岑 阅读(142) 评论(0) 推荐(0) 编辑