场景:第三方外调我们的接口,我们会发送异步的jms消息和同步的返回response。
问题:我们发送jms消息在回response之前,第三方要求我们先回response,再发送jms消息,因为接口定义的关系,没有办法在回response之后再发送jms消息,所以决定用线程来实现延迟发送jms消息。
代码demo:
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Demo {
public static void main(String[] args) {
int i = 1;
int j = 2;
//使用线程池创建线程
ExecutorService pool = Executors.newCachedThreadPool();
//线程的具体方法
pool.execute(new TestThread(i, j));
System.out.println("hahaha");
}
}
public class TestThread implements Runnable{
private int i;
private int j;
public TestThread(int i, int j){
this.i = i;
this.j = j;
}
public TestThread(){}
@Override
public void run() {
try {
Thread.sleep(2000);
System.out.println(j/i);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
这样就可以实现异步延迟2s执行,小白一个,如果有大佬发现问题,或者有更好的方法,请留言,谢谢。