过程监控
在该模块中,您可以找到两个类来创建通常对进程监控有用的文件:spring-boot
-
ApplicationPidFileWriter
创建一个包含应用程序 PID 的文件(默认情况下,在文件名为 .application.pid
-
WebServerPortFileWriter
创建一个文件(或多个文件),其中包含正在运行的 Web 服务器的端口(默认情况下,在文件名为 .application.port
默认情况下,这些写入器未激活,但您可以启用它们:
扩展配置
在该文件中,您可以激活写入 PID 文件的侦听器(或侦听器):META-INF/spring.factories
org.springframework.context.ApplicationListener=\
org.springframework.boot.context.ApplicationPidFileWriter,\
org.springframework.boot.web.context.WebServerPortFileWriter