在 Java 中使用 Thread.currentThread().join()
2022-09-03 04:19:43
以下代码取自泽西岛项目中的一个示例。请参阅此处。
public class App {
private static final URI BASE_URI = URI.create("http://localhost:8080/base/");
public static final String ROOT_PATH = "helloworld";
public static void main(String[] args) {
try {
System.out.println("\"Hello World\" Jersey Example App");
final ResourceConfig resourceConfig = new ResourceConfig(HelloWorldResource.class);
final HttpServer server = GrizzlyHttpServerFactory.createHttpServer(BASE_URI, resourceConfig, false);
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
server.shutdownNow();
}
}));
server.start();
System.out.println(String.format("Application started.\nTry out %s%s\nStop the application using CTRL+C",
BASE_URI, ROOT_PATH));
//////////////////////////////
Thread.currentThread().join();
//////////////////////////////
} catch (IOException | InterruptedException ex) {
//
}
}
}
我了解除了使用.Thread.currentThread().join();
我是一个Java新手,我的理解是,这将阻止当前线程(在本例中为主线程)的执行,并有效地将其死锁。也就是说,它将导致当前(主)线程阻塞,直到当前(主)线程完成,这永远不会发生。
这是正确的吗?如果是这样,为什么会这样?