Spring Boot as a Windows Service in 5 Minutes
We take a look at how you can get up and running quickly using Spring Boot to create a Windows service as well as pass configuration details.
Join the DZone community and get the full member experience.
Join For FreeI recently had to deploy a Spring Boot application as a Windows service and am surprised how easy it was using winsw. I’d previously written about using procrun – Java Programs as Windows Services, but winsw is much easier
Getting Started
Section 59 of the Spring Boot documentation is about Installing Spring Boot applications, and it points you toward a GitHub page. This example uses that project for inspiration.
Project
I'm going to use the Spring IO “Serving Web Content” project as a starting point, so go to the webpage and download the example from GIT or as a ZIP file.
We can then see our application running:
Wrapping as a Windows Service
- Download winsw from GitHub – remember to choose the correct version depending on the version of .NET you are running
- Create a Windows service directory and copy the EXE to this location.
- I renamed the gs-serving-web-content-0.1.0.jar to gs-serving-web-content.jar
- Rename the winsw EXE from WinSW.NET4.exe to gs-serving-web-content.exe
- Create a XML file named gs-serving-web-content.xml with the following content –
<?xml version="1.0" encoding="UTF-8"?>
<service>
<id>gs-serving-web-content</id>
<name>gs-serving-web-content</name>
<description>gs-serving-web-content Windows Service</description>
<executable>java</executable>
<arguments>-jar "gs-serving-web-content.jar"</arguments>
<logmode>rotate</logmode>
</service>
- We can then install with
gs-serving-web-content.exe install
(you may need to run as administrator)
- We can then run this as a Windows service:
Windows service
- To uninstall, we run – gs-serving-web-content.exe uninstall
Alternatives
I looked at procrun as an alternative wrapper for Spring Boot but couldn't get it to work. It probably can, but it needs more time.
Conclusion
I'm really impressed with winsw for installing Spring Boot applications as Windows services. It's really simple, and you can pass external application.properties files in through the XML configuration.
Published at DZone with permission of Martin Farrell, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments