Spring Boot Can Still Be Detected After Being Stopped (on Windows)
Symptoms
The command for stopping Spring Boot is successfully deployed during the deployment of the action Start/Stop Spring Boot, but the Spring Boot process can still be detected.
Cause Analysis
Spring Boot in the current path is registered as a Windows service and the startup mode is automatic startup.
Solution
- Run the following command to open the Windows service list:
services.msc
- Search for service names similar to devployMan_SpringBoot_01-0.0.1-SNAPSHOT.jar.
If a similar service name exists, run the following two commands in sequence:
nssm stop devployMan_SpringBoot_01-0.0.1-SNAPSHOT.jar nssm remove devployMan_SpringBoot_01-0.0.1-SNAPSHOT.jar
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.