我有一个 java 应用程序,它嵌入了一个码头服务器来提供 http 服务。
如果我通过 url 访问它:
http://localhost:8080/doStop
它将停止码头服务器并自行终止。
我有两个选择:
1. calls `myserver.stop()`, which `myserver` is an instance of `org.mortbay.jetty.Server`, and had set `.setStopAtShutdown(true)`
2. just invoke `System.exit()`
我想知道调用System.exit()
来停止整个应用程序是否安全?