我最近一直在玩SpringBoot1.5.8版本。我可以将它作为restweb服务来处理传入的请求。
这就是我激活服务的方式。注意:linux环境。
nohup java -jar fooservice.jar &
然后我跟踪 nohup.out 文件来监视启动过程、任何传入的请求、任何抛出的异常等。
nohup.out
ps -ef | grep 命令找到正在运行的实例的pid,然后运行 kill -9 命令终止它。
ps -ef | grep
kill -9
有没有优雅的方法来停止服务?
您可以通过启用执行器关闭端点来关闭spring引导应用程序 /actuator/shutdown ,首先我们需要启用它 here
/actuator/shutdown
management.endpoint.shutdown.enabled=true endpoints.shutdown.enabled=true
然后调用它
localhost:port/actuator/shutdown