In additional to running Spring Boot applications using java -jar
it is also possible
to make fully executable applications for Unix systems (Linux, OSX, FreeBSD etc).
This makes it very easy to install and manage Spring Boot applications in common
production environments. As long as you are generating ‘fully executable’ jars from your
build, and you are not using a custom embeddedLaunchScript
, the following techniques
can be used.
To create a ‘fully executable’ jar with Maven use the following plugin configuration:
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <executable>true</executable> </configuration> </plugin>
With Gradle, the equivalent configuration would be:
apply plugin: 'spring-boot'
springBoot {
executable = true
}
Note | |
---|---|
Fully executable jars work by embedding an extra script at the front of the file. Not all tools currently accept this format so you may not always be able to use this technique. |
Spring Boot application can be easily started as Unix/Linux services using either init.d
or systemd
.
The default executable script that can be embedded into Spring Boot jars will act as an
init.d
script when it is symlinked to /etc/init.d
. The standard start
, stop
,
restart
and status
commands can be used. The script supports the following features:
/var/run/<appname>/<appname>.pid
/var/log/<appname>.log
Assuming that you have a Spring Boot application installed in /var/myapp
, to install a
Spring Boot application as an init.d
service simply create a symlink:
$ sudo ln -s /var/myapp/myapp.jar /etc/init.d/myapp
Tip | |
---|---|
It is advisable to create a specific user account to run you application. Ensure
that you have set the owner of the jar file using |
Once installed, you can start and stop the service in the usual way. You can also flag the application to start automatically using your standard operating system tools. For example, if you use Debian:
$ update-rc.d myapp defaults <priority>
Systemd is the successor to init.d
scripts, and now being used by many many modern Linux
distributions. Although you can continue to use init.d
script with systemd
, it is also
possible to launch Spring Boot applications using systemd
‘service’ scripts.
For example, to run a Spring Boot application installed in var/myapp
you can add the
following script in /etc/systemd/system/myapp.service
:
[Unit] Description=myapp After=syslog.target [Service] ExecStart=/var/myapp/myapp.jar [Install] WantedBy=multi-user.target
Tip | |
---|---|
Remember to change the |
The script accepts the following parameters as environment variables, so you can change the default behavior in a script or on the command line:
Variable | Description |
---|---|
| The “mode” of operation. The default depends on the way the jar was built, but will
usually be |
| The root name of the pid folder ( |
| The name of the folder to put log files in ( |
| The name of the log file in the |
| The name of the app. If the jar is run from a symlink the script guesses the app name, but if it is not a symlink, or you want to explicitly set the app name this can be useful. |
| The arguments to pass to the program (the Spring Boot app). |
| The location of the |
| Options that are passed to the JVM when it is launched. |
| The explicit location of the jar file, in case the script is being used to launch a jar that it is not actually embedded in. |
| if not empty will set the |
In addition, the following properties can be changed when the script is written by using
the embeddedLaunchScriptProperties
option of the Spring Boot Maven or Gradle plugins.
Name | Description |
---|---|
| The script mode. Defaults to |
| The |
| The |
| The |
With the exception of JARFILE
and APP_NAME
, the above settings can be configured using
a .conf
file,
JAVA_OPTS=-Xmx1024M LOG_FOLDER=/custom/log/folder
The file should be situated next to the jar file and have the same name but suffixed with
.conf
rather than .jar
. For example, a jar named /var/myapp/myapp.jar
will use the
configuration file named /var/myapp/myapp.conf
if it exists.
Spring Boot application can be started as Windows service using
winsw
.
A sample maintained separately to the core of Spring Boot describes steps by steps how you can create a Windows service for your Spring Boot application.