Spring Boot Reference New
Spring Boot Reference New
2.0.0.BUILD-SNAPSHOT
Phillip Webb , Dave Syer , Josh Long , Stphane Nicoll , Rob Winch , Andy Wilkinson , Marcel
Overdijk , Christian Dupuis , Sbastien Deleuze , Michael Simons , Vedran Pavi# , Jay Bryant
Copyright 2012-2017
Copies of this document may be made for your own use and for distribution to others, provided that you do not charge any fee
for such copies and further provided that each copy contains this Copyright Notice, whether distributed in print or electronically.
Spring Boot Reference Guide
Table of Contents
I. Spring Boot Documentation ...................................................................................................... 1
1. About the Documentation ................................................................................................ 2
2. Getting Help ................................................................................................................... 3
3. First Steps ...................................................................................................................... 4
4. Working with Spring Boot ................................................................................................ 5
5. Learning about Spring Boot Features .............................................................................. 6
6. Moving to Production ...................................................................................................... 7
7. Advanced Topics ............................................................................................................ 8
II. Getting Started ....................................................................................................................... 9
8. Introducing Spring Boot ................................................................................................. 10
9. System Requirements ................................................................................................... 11
9.1. Servlet Containers .............................................................................................. 11
10. Installing Spring Boot .................................................................................................. 12
10.1. Installation Instructions for the Java Developer .................................................. 12
Maven Installation ............................................................................................. 12
Gradle Installation ............................................................................................. 13
10.2. Installing the Spring Boot CLI ........................................................................... 14
Manual Installation ............................................................................................ 14
Installation with SDKMAN! ................................................................................. 14
OSX Homebrew Installation ............................................................................... 15
MacPorts Installation ......................................................................................... 15
Command-line Completion ................................................................................ 15
Quick-start Spring CLI Example ......................................................................... 16
10.3. Upgrading from an Earlier Version of Spring Boot .............................................. 16
11. Developing Your First Spring Boot Application .............................................................. 17
11.1. Creating the POM ............................................................................................ 17
11.2. Adding Classpath Dependencies ....................................................................... 18
11.3. Writing the Code .............................................................................................. 19
The @RestController and @RequestMapping Annotations .................................. 19
The @EnableAutoConfiguration Annotation ........................................................ 19
The main Method ........................................................................................... 20
11.4. Running the Example ....................................................................................... 20
11.5. Creating an Executable Jar ............................................................................... 20
12. What to Read Next ..................................................................................................... 22
III. Using Spring Boot ................................................................................................................ 23
13. Build Systems ............................................................................................................. 24
13.1. Dependency Management ................................................................................ 24
13.2. Maven ............................................................................................................. 24
Inheriting the Starter Parent .............................................................................. 25
Using Spring Boot without the Parent POM ........................................................ 25
Using the Spring Boot Maven Plugin ................................................................. 26
13.3. Gradle ............................................................................................................. 26
13.4. Ant .................................................................................................................. 26
13.5. Starters ............................................................................................................ 27
14. Structuring Your Code ................................................................................................. 33
14.1. Using the default Package .............................................................................. 33
14.2. Locating the Main Application Class .................................................................. 33
HTML
EPUB
Copies of this document may be made for your own use and for distribution to others, provided that
you do not charge any fee for such copies and further provided that each copy contains this Copyright
Notice, whether distributed in print or electronically.
2. Getting Help
If you have trouble with Spring Boot, we would like to help.
Try the How-to documents. They provide solutions to the most common questions.
Learn the Spring basics. Spring Boot builds on many other Spring projects. Check the spring.io web-
site for a wealth of reference documentation. If you are starting out with Spring, try one of the guides.
Note
All of Spring Boot is open source, including the documentation. If you find problems with the docs
or if you want to improve them, please get involved.
3. First Steps
If you are getting started with Spring Boot or 'Spring' in general, start with the following topics:
6. Moving to Production
When you are ready to push your Spring Boot application to production, we have some tricks that you
might like:
7. Advanced Topics
Finally, we have a few topics for more advanced users:
You can use Spring Boot to create Java applications that can be started by using java -jar or more
traditional war deployments. We also provide a command line tool that runs spring scripts.
Provide a radically faster and widely accessible getting started experience for all Spring development.
Be opinionated out of the box but get out of the way quickly as requirements start to diverge from
the defaults.
Provide a range of non-functional features that are common to large classes of projects (such as
embedded servers, security, metrics, health checks, and externalized configuration).
9. System Requirements
Spring Boot 2.0.0.BUILD-SNAPSHOT requires Java 8 and Spring Framework 5.0.2.RELEASE or above.
Explicit build support is provided for Maven 3.2+ and Gradle 4.
You can also deploy Spring Boot applications to any Servlet 3.0+ compatible container.
$ java -version
If you are new to Java development or if you want to experiment with Spring Boot, you might want
to try the Spring Boot CLI (Command Line Interface) first, otherwise, read on for classic installation
instructions.
Although you could copy Spring Boot jars, we generally recommend that you use a build tool that
supports dependency management (such as Maven or Gradle).
Maven Installation
Spring Boot is compatible with Apache Maven 3.2 or above. If you do not already have Maven installed,
you can follow the instructions at maven.apache.org.
Tip
On many operating systems, Maven can be installed with a package manager. If you use OSX
Homebrew, try brew install maven. Ubuntu users can run sudo apt-get install
maven. Windows users with Chocolatey can run choco install maven from an elevated
(administrator) prompt.
Spring Boot dependencies use the org.springframework.boot groupId. Typically, your Maven
POM file inherits from the spring-boot-starter-parent project and declares dependencies to
one or more Starters. Spring Boot also provides an optional Maven plugin to create executable jars.
<groupId>com.example</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
Tip
The spring-boot-starter-parent is a great way to use Spring Boot, but it might not be
suitable all of the time. Sometimes you may need to inherit from a different parent POM, or you
might not like our default settings. In those cases, see the section called Using Spring Boot
without the Parent POM for an alternative solution that uses an import scope.
Gradle Installation
Spring Boot is compatible with Gradle 4. If you do not already have Gradle installed, you can follow the
instructions at www.gradle.org/.
Gradle Wrapper
The Gradle Wrapper provides a nice way of obtaining Gradle when you need to build a project.
It is a small script and library that you commit alongside your code to bootstrap the build process.
See docs.gradle.org/4.2.1/userguide/gradle_wrapper.html for details.
buildscript {
repositories {
jcenter()
maven { url 'http://repo.spring.io/snapshot' }
maven { url 'http://repo.spring.io/milestone' }
}
dependencies {
classpath 'org.springframework.boot:spring-boot-gradle-plugin:2.0.0.BUILD-SNAPSHOT'
}
}
jar {
baseName = 'myproject'
version = '0.0.1-SNAPSHOT'
}
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
You do not need to use the CLI to work with Spring Boot, but it is definitely the quickest way to get a
Spring application off the ground.
Manual Installation
You can download the Spring CLI distribution from the Spring software repository:
spring-boot-cli-2.0.0.BUILD-SNAPSHOT-bin.zip
spring-boot-cli-2.0.0.BUILD-SNAPSHOT-bin.tar.gz
Once downloaded, follow the INSTALL.txt instructions from the unpacked archive. In summary, there is
a spring script (spring.bat for Windows) in a bin/ directory in the .zip file. Alternatively, you can
use java -jar with the .jar file (the script helps you to be sure that the classpath is set correctly).
SDKMAN! (The Software Development Kit Manager) can be used for managing multiple versions of
various binary SDKs, including Groovy and the Spring Boot CLI. Get SDKMAN! from sdkman.io and
install Spring Boot by using the following commands:
If you are developing features for the CLI and want easy access to the version you built, use the following
commands:
The preceding instructions install a local instance of spring called the dev instance. It points at your
target build location, so every time you rebuild Spring Boot, spring is up-to-date.
$ sdk ls springboot
================================================================================
Available Springboot Versions
================================================================================
> + dev
* 2.0.0.BUILD-SNAPSHOT
================================================================================
+ - local version
* - installed
> - currently in use
================================================================================
Note
If you do not see the formula, your installation of brew might be out-of-date. In that case, run brew
update and try again.
MacPorts Installation
If you are on a Mac and use MacPorts, you can install the Spring Boot CLI by using the following
command:
Command-line Completion
The Spring Boot CLI includes scripts that provide command completion for the BASH and zsh shells. You
can source the script (also named spring) in any shell or put it in your personal or system-wide bash
completion initialization. On a Debian system, the system-wide scripts are in /shell-completion/
bash and all scripts in that directory are executed when a new shell starts. For example, to run the script
manually if you have installed using SDKMAN!, use the following commands:
$ . ~/.sdkman/candidates/springboot/current/shell-completion/bash/spring
$ spring <HIT TAB HERE>
grab help jar run test version
Note
If you install the Spring Boot CLI by using Homebrew or MacPorts, the command-line completion
scripts are automatically registered with your shell.
You can use the following web application to test your installation. To start, create a file called
app.groovy, as follows:
@RestController
class ThisWillActuallyRun {
@RequestMapping("/")
String home() {
"Hello World!"
}
Note
The first run of your application is slow, as dependencies are downloaded. Subsequent runs are
much quicker.
Open localhost:8080 in your favorite web browser. You should see the following output:
Hello World!
To upgrade an existing CLI installation use the appropriate package manager command (for example,
brew upgrade) or, if you manually installed the CLI, follow the standard instructions remembering to
update your PATH environment variable to remove any older references.
Tip
The spring.io web site contains many Getting Started guides that use Spring Boot. If you need
to solve a specific problem, check there first.
You can shortcut the steps below by going to start.spring.io and choosing the "Web" starter from
the dependencies searcher. Doing so generates a new project structure so that you can start
coding right away. Check the Spring Initializr documentation for more details.
Before we begin, open a terminal and run the following commands to ensure that you have valid versions
of Java and Maven installed:
$ java -version
java version "1.8.0_102"
Java(TM) SE Runtime Environment (build 1.8.0_102-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.102-b14, mixed mode)
$ mvn -v
Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T16:41:47+00:00)
Maven home: /usr/local/Cellar/maven/3.3.9/libexec
Java version: 1.8.0_102, vendor: Oracle Corporation
Note
This sample needs to be created in its own folder. Subsequent instructions assume that you have
created a suitable folder and that it is your current directory.
<groupId>com.example</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<!-- (you don't need this if you are using a .RELEASE version) -->
<repositories>
<repository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/snapshot</url>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/snapshot</url>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
</project>
The preceding listing should give you a working build. You can test it by running mvn package (for
now, you can ignore the jar will be empty - no content was marked for inclusion! warning).
Note
At this point, you could import the project into an IDE (most modern Java IDEs include built-in
support for Maven). For simplicity, we continue to use a plain text editor for this example.
Other Starters provide dependencies that you are likely to need when developing a specific type
of application. Since we are developing a web application, we add a spring-boot-starter-web
dependency. Before that, we can look at what we currently have by running the following command:
$ mvn dependency:tree
[INFO] com.example:myproject:jar:0.0.1-SNAPSHOT
The mvn dependency:tree command prints a tree representation of your project dependencies.
You can see that spring-boot-starter-parent provides no dependencies by itself. To add the
necessary dependencies, edit your pom.xml and add the spring-boot-starter-web dependency
immediately below the parent section:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
If you run mvn dependency:tree again, you see that there are now a number of additional
dependencies, including the Tomcat web server and Spring Boot itself.
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.web.bind.annotation.*;
@RestController
@EnableAutoConfiguration
public class Example {
@RequestMapping("/")
String home() {
return "Hello World!";
}
Although there is not much code here, quite a lot is going on. We step through the important parts in
the next few sections.
The @RequestMapping annotation provides routing information. It tells Spring that any HTTP request
with the / path should be mapped to the home method. The @RestController annotation tells Spring
to render the resulting string directly back to the caller.
Tip
Auto-configuration is designed to work well with Starters, but the two concepts are not directly
tied. You are free to pick and choose jar dependencies outside of the starters and Spring Boot still
does its best to auto-configure your application.
The final part of our application is the main method. This is just a standard method that follows
the Java convention for an application entry point. Our main method delegates to Spring Boots
SpringApplication class by calling run. SpringApplication bootstraps our application, starting
Spring, which, in turn, starts the auto-configured Tomcat web server. We need to pass Example.class
as an argument to the run method to tell SpringApplication which is the primary Spring component.
The args array is also passed through to expose any command-line arguments.
$ mvn spring-boot:run
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.0.0.BUILD-SNAPSHOT)
....... . . .
....... . . . (log output here)
....... . . .
........ Started Example in 2.222 seconds (JVM running for 6.514)
If you open a web browser to localhost:8080, you should see the following output:
Hello World!
Java does not provide a standard way to load nested jar files (jar files that are themselves contained
within a jar). This can be problematic if you are looking to distribute a self-contained application.
To solve this problem, many developers use uber jars. An uber jar packages all the classes from
all the applications dependencies into a single archive. The problem with this approach is that it
becomes hard to see which libraries are in your application. It can also be problematic if the same
filename is used (but with different content) in multiple jars.
Spring Boot takes a different approach and allows you to actually nest jars directly.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
Note
Save your pom.xml and run mvn package from the command line, as follows:
$ mvn package
If you look in the target directory, you should see myproject-0.0.1-SNAPSHOT.jar. The file
should be around 10 MB in size. If you want to peek inside, you can use jar tvf, as follows:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.0.0.BUILD-SNAPSHOT)
....... . . .
....... . . . (log output here)
....... . . .
........ Started Example in 2.536 seconds (JVM running for 2.864)
The Spring Boot repository also has a bunch of samples you can run. The samples are independent of
the rest of the code (that is, you do not need to build the rest to run or use the samples).
Otherwise, the next logical step is to read Part III, Using Spring Boot. If you are really impatient, you
could also jump ahead and read about Spring Boot features.
If you are starting out with Spring Boot, you should probably read the Getting Started guide before diving
into this section.
Spring Boot Reference Guide
Note
You can still specify a version and override Spring Boots recommendations if you need to do so.
The curated list contains all the spring modules that you can use with Spring Boot as well as a
refined list of third party libraries. The list is available as a standard Bills of Materials (spring-boot-
dependencies) that can be used with both Maven and Gradle.
Warning
Each release of Spring Boot is associated with a base version of the Spring Framework. We
highly recommend that you not specify its version.
13.2 Maven
Maven users can inherit from the spring-boot-starter-parent project to obtain sensible defaults.
The parent project provides the following features:
Sensible plugin configuration (exec plugin, Git commit ID, and shade).
Note that, since the application.properties and application.yml files accept Spring style
placeholders (${}), the Maven filtering is changed to use @..@ placeholders. (You can override that
by setting a Maven property called resource.delimiter.)
Note
You should need to specify only the Spring Boot version number on this dependency. If you import
additional starters, you can safely omit the version number.
With that setup, you can also override individual dependencies by overriding a property in your own
project. For instance, to upgrade to another Spring Data release train, you would add the following to
your pom.xml:
<properties>
<spring-data-releasetrain.version>Fowler-SR2</spring-data-releasetrain.version>
</properties>
Tip
If you do not want to use the spring-boot-starter-parent, you can still keep the benefit of the
dependency management (but not the plugin management) by using a scope=import dependency,
as follows:
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
The preceding sample setup does not let you override individual dependencies by using a property, as
explained above. To achieve the same result, you need to add an entry in the dependencyManagement
of your project before the spring-boot-dependencies entry. For instance, to upgrade to another
Spring Data release train, you could add the following element to your pom.xml:
<dependencyManagement>
<dependencies>
<!-- Override Spring Data release train provided by Spring Boot -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-releasetrain</artifactId>
<version>Fowler-SR2</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Note
In the preceding example, we specify a BOM, but any dependency type can be overridden in the
same way.
Spring Boot includes a Maven plugin that can package the project as an executable jar. Add the plugin
to your <plugins> section if you want to use it, as shown in the following example:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
Note
If you use the Spring Boot starter parent pom, you need to add only the plugin. There is no need
to configure it unless you want to change the settings defined in the parent.
13.3 Gradle
To learn about using Spring Boot with Gradle, please refer to the documentation for Spring Boots Gradle
plugin:
API
13.4 Ant
It is possible to build a Spring Boot project using Apache Ant+Ivy. The spring-boot-antlib AntLib
module is also available to help Ant create executable jars.
To declare dependencies, a typical ivy.xml file looks something like the following example:
<ivy-module version="2.0">
<info organisation="org.springframework.boot" module="spring-boot-sample-ant" />
<configurations>
<conf name="compile" description="everything needed to compile this module" />
<conf name="runtime" extends="compile" description="everything needed to run this module" />
</configurations>
<dependencies>
<dependency org="org.springframework.boot" name="spring-boot-starter"
rev="${spring-boot.version}" conf="compile" />
</dependencies>
</ivy-module>
<project
xmlns:ivy="antlib:org.apache.ivy.ant"
xmlns:spring-boot="antlib:org.springframework.boot.ant"
name="myapp" default="build">
Tip
If you do not want to use the spring-boot-antlib module, see the Section 85.9, Build an
Executable Archive from Ant without Using spring-boot-antlib How-to .
13.5 Starters
Starters are a set of convenient dependency descriptors that you can include in your application. You
get a one-stop shop for all the Spring and related technology that you need without having to hunt
through sample code and copy-paste loads of dependency descriptors. For example, if you want to get
started using Spring and JPA for database access, include the spring-boot-starter-data-jpa
dependency in your project.
The starters contain a lot of the dependencies that you need to get a project up and running quickly and
with a consistent, supported set of managed transitive dependencies.
Whats in a name
As explained in the Creating Your Own Starter section, third party starters should not start
with spring-boot, as it is reserved for official Spring Boot artifacts. Rather, a third-party
starter typically starts with the name of the project. For example, a third-party starter project
called thirdpartyproject would typically be named thirdpartyproject-spring-boot-
starter.
The following application starters are provided by Spring Boot under the
org.springframework.boot group:
In addition to the application starters, the following starters can be used to add production ready features:
Finally, Spring Boot also includes the following starters that can be used if you want to exclude or swap
specific technical facets:
Tip
For a list of additional community contributed starters, see the README file in the spring-boot-
starters module on GitHub.
Tip
We recommend that you follow Javas recommended package naming conventions and use a
reversed domain name (for example, com.example.project).
Using a root package also lets the @ComponentScan annotation be used without needing to specify
a basePackage attribute. You can also use the @SpringBootApplication annotation if your main
class is in the root package.
com
+- example
+- myapplication
+- Application.java
|
+- customer
| +- Customer.java
| +- CustomerController.java
| +- CustomerService.java
| +- CustomerRepository.java
|
+- order
+- Order.java
+- OrderController.java
+- OrderService.java
+- OrderRepository.java
The Application.java file would declare the main method, along with the basic @Configuration,
as follows:
package com.example.myapplication;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@ComponentScan
public class Application {
Tip
Many Spring configuration examples have been published on the Internet that use XML
configuration. If possible, always try to use the equivalent Java-based configuration. Searching
for Enable* annotations can be a good starting point.
16. Auto-configuration
Spring Boot auto-configuration attempts to automatically configure your Spring application based on the
jar dependencies that you have added. For example, if HSQLDB is on your classpath, and you have not
manually configured any database connection beans, then Spring Boot auto-configures an in-memory
database.
Tip
If you need to find out what auto-configuration is currently being applied, and why, start your application
with the --debug switch. Doing so enables debug logs for a selection of core loggers and logs a
conditions report to the console.
import org.springframework.boot.autoconfigure.*;
import org.springframework.boot.autoconfigure.jdbc.*;
import org.springframework.context.annotation.*;
@Configuration
@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})
public class MyConfiguration {
}
If the class is not on the classpath, you can use the excludeName attribute of the annotation and specify
the fully qualified name instead. Finally, you can also control the list of auto-configuration classes to
exclude by using the spring.autoconfigure.exclude property.
Tip
You can define exclusions both at the annotation level and by using the property.
If you structure your code as suggested above (locating your application class in a root package), you
can add @ComponentScan without any arguments. All of your application components (@Component,
@Service, @Repository, @Controller etc.) are automatically registered as Spring Beans.
The following example shows a @Service Bean that uses constructor injection to obtain a required
RiskAssessor bean:
package com.example.service;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class DatabaseAccountService implements AccountService {
@Autowired
public DatabaseAccountService(RiskAssessor riskAssessor) {
this.riskAssessor = riskAssessor;
}
// ...
If a bean has one constructor, you can omit the @Autowired, as shown in the following example:
@Service
public class DatabaseAccountService implements AccountService {
// ...
Tip
Notice how using constructor injection lets the riskAssessor field be marked as final,
indicating that it cannot be subsequently changed.
package com.example.myapplication;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Note
Note
This section only covers jar based packaging. If you choose to package your application as a war
file, you should refer to your server and IDE documentation.
If you cannot directly import your project into your IDE, you may be able to generate IDE metadata by
using a build plugin. Maven includes plugins for Eclipse and IDEA. Gradle offers plugins for various IDEs.
Tip
If you accidentally run a web application twice, you see a Port already in use error. STS users
can use the Relaunch button rather than the Run button to ensure that any existing instance
is closed.
It is also possible to run a packaged application with remote debugging support enabled. Doing so lets
you attach a debugger to your packaged application, as shown in the following example:
$ mvn spring-boot:run
You might also want to use the MAVEN_OPTS operating system environment variable, as shown in the
following example:
$ export MAVEN_OPTS=-Xmx1024m
$ gradle bootRun
You might also want to use the JAVA_OPTS operating system environment variable, as shown in the
following example:
$ export JAVA_OPTS=-Xmx1024m
The spring-boot-devtools module also includes support for quick application restarts. See the
Chapter 20, Developer Tools section below and the Hot swapping How-to for details.
Maven.
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
Gradle.
dependencies {
compile("org.springframework.boot:spring-boot-devtools")
}
Note
Developer tools are automatically disabled when running a fully packaged application. If your
application is launched using java -jar or if it is started from a special classloader, then it
is considered a production application. Flagging the dependency as optional is a best practice
that prevents devtools from being transitively applied to other modules using your project. Gradle
does not support optional dependencies out-of-the-box, so you may want to have a look at the
propdeps-plugin.
Tip
Repackaged archives do not contain devtools by default. If you want to use a certain remote
devtools feature, you need to disable the excludeDevtools build property to include it. The
property is supported with both the Maven and Gradle plugins.
Cache options are usually configured by settings in your application.properties file. For
example, Thymeleaf offers the spring.thymeleaf.cache property. Rather than needing to set
these properties manually, the spring-boot-devtools module automatically applies sensible
development-time configuration.
Tip
For a complete list of the properties that are applied by the devtools, see
DevToolsPropertyDefaultsPostProcessor.
Triggering a restart
As DevTools monitors classpath resources, the only way to trigger a restart is to update the
classpath. The way in which you cause the classpath to be updated depends on the IDE that you
are using. In Eclipse, saving a modified file causes the classpath to be updated and triggers a
restart. In IntelliJ IDEA, building the project (Build -> Make Project) has the same effect.
Note
As long as forking is enabled, you can also start your application by using the supported build
plugins (Maven and Gradle), since DevTools needs an isolated application classloader to operate
properly. By default, Gradle and Maven do that when they detect DevTools on the classpath.
Tip
Automatic restart works very well when used with LiveReload. See the LiveReload section for
details. If you use JRebel, automatic restarts are disabled in favor of dynamic class reloading.
Other devtools features (such as LiveReload and property overrides) can still be used.
Note
Note
When deciding if an entry on the classpath should trigger a restart when it changes, DevTools
automatically ignores projects named spring-boot, spring-boot-devtools, spring-
boot-autoconfigure, spring-boot-actuator, and spring-boot-starter.
Note
Restart vs Reload
The restart technology provided by Spring Boot works by using two classloaders. Classes that do
not change (for example, those from third-party jars) are loaded into a base classloader. Classes
that you are actively developing are loaded into a restart classloader. When the application is
restarted, the restart classloader is thrown away and a new one is created. This approach means
that application restarts are typically much faster than cold starts, since the base classloader is
already available and populated.
If you find that restarts are not quick enough for your applications or you encounter classloading
issues, you could consider reloading technologies such as JRebel from ZeroTurnaround. These
work by rewriting classes as they are loaded to make them more amenable to reloading.
spring.devtools.restart.log-condition-evaluation-delta=false
Excluding Resources
Certain resources do not necessarily need to trigger a restart when they are changed. For example,
Thymeleaf templates can be edited in-place. By default, changing resources in /META-INF/maven,
/META-INF/resources, /resources, /static, /public, or /templates does not trigger a
restart but does trigger a live reload. If you want to customize these exclusions, you can use the
spring.devtools.restart.exclude property. For example, to exclude only /static and /
public you would set the following property:
spring.devtools.restart.exclude=static/**,public/**
Tip
If you want to keep those defaults and add additional exclusions, use the
spring.devtools.restart.additional-exclude property instead.
Disabling Restart
If you do not want to use the restart feature, you can disable it by using the
spring.devtools.restart.enabled property. In most cases, you can set this property in your
application.properties (doing so still initializes the restart classloader, but it does not watch for
file changes).
If you need to completely disable restart support (for example, because it doesnt work with a specific
library), you need to set the spring.devtools.restart.enabled System property to false
before calling SpringApplication.run(), as shown in the following example:
Tip
By default, any open project in your IDE is loaded with the restart classloader, and any regular .jar
file is loaded with the base classloader. If you work on a multi-module project, and not every module
is imported into your IDE, you may need to customize things. To do so, you can create a META-INF/
spring-devtools.properties file.
restart.exclude.companycommonlibs=/mycorp-common-[\\w-]+\.jar
restart.include.projectcommon=/mycorp-myproj-[\\w-]+\.jar
Note
All property keys must be unique. As long as a property starts with restart.include. or
restart.exclude. it is considered.
Tip
Known Limitations
Restart functionality does not work well with objects that are deserialized by
using a standard ObjectInputStream. If you need to deserialize data, you
may need to use Springs ConfigurableObjectInputStream in combination with
Thread.currentThread().getContextClassLoader().
Unfortunately, several third-party libraries deserialize without considering the context classloader. If you
find such a problem, you need to request a fix with the original authors.
20.3 LiveReload
The spring-boot-devtools module includes an embedded LiveReload server that can be used
to trigger a browser refresh when a resource is changed. LiveReload browser extensions are freely
available for Chrome, Firefox and Safari from livereload.com.
If you do not want to start the LiveReload server when your application runs, you can set the
spring.devtools.livereload.enabled property to false.
Note
You can only run one LiveReload server at a time. Before starting your application, ensure that
no other LiveReload servers are running. If you start multiple applications from your IDE, only the
first has LiveReload support.
~/.spring-boot-devtools.properties.
spring.devtools.reload.trigger-file=.reloadtrigger
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludeDevtools>false</excludeDevtools>
</configuration>
</plugin>
</plugins>
</build>
spring.devtools.remote.secret=mysecret
Warning
Remote devtools support is provided in two parts: a server-side endpoint that accepts connections and
a client application that you run in your IDE. The server component is automatically enabled when
the spring.devtools.remote.secret property is set. The client component must be launched
manually.
The remote client application is designed to be run from within your IDE. You need to run
org.springframework.boot.devtools.RemoteSpringApplication with the same classpath
as the remote project that you connect to. The applications single required argument is the remote URL
to which it connects.
For example, if you are using Eclipse or STS and you have a project named my-app that you have
deployed to Cloud Foundry, you would do the following:
Add https://myapp.cfapps.io to the Program arguments (or whatever your remote URL is).
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ ___ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | | _ \___ _ __ ___| |_ ___ \ \ \ \
\\/ ___)| |_)| | | | | || (_| []::::::[] / -_) ' \/ _ \ _/ -_) ) ) ) )
' |____| .__|_| |_|_| |_\__, | |_|_\___|_|_|_\___/\__\___|/ / / /
=========|_|==============|___/===================================/_/_/_/
:: Spring Boot Remote :: 2.0.0.BUILD-SNAPSHOT
Note
Because the remote client is using the same classpath as the real application it can directly read
application properties. This is how the spring.devtools.remote.secret property is read
and passed to the server for authentication.
Tip
It is always advisable to use https:// as the connection protocol, so that traffic is encrypted
and passwords cannot be intercepted.
Tip
If you need to use a proxy to access the remote application, configure the
spring.devtools.remote.proxy.host and spring.devtools.remote.proxy.port
properties.
Remote Update
The remote client monitors your application classpath for changes in the same way as the local restart.
Any updated resource is pushed to the remote application and (if required) triggers a restart. This can
be helpful if you iterate on a feature that uses a cloud service that you do not have locally. Generally,
remote updates and restarts are much quicker than a full rebuild and deploy cycle.
Note
Files are only monitored when the remote client is running. If you change a file before starting the
remote client, it is not pushed to the remote server.
For additional production ready features, such as health, auditing, and metric REST or JMX end-
points, consider adding spring-boot-actuator. See Part V, Spring Boot Actuator: Production-
ready features for details.
23. SpringApplication
The SpringApplication class provides a convenient way to bootstrap a Spring application
that is started from a main() method. In many situations, you can delegate to the static
SpringApplication.run method, as shown in the following example:
When your application starts, you should see something similar to the following output:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: v2.0.0.BUILD-SNAPSHOT
By default, INFO logging messages are shown, including some relevant startup details, such as the
user that launched the application.
***************************
APPLICATION FAILED TO START
***************************
Description:
Embedded servlet container failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that's listening on port 8080 or configure this application to listen on
another port.
Note
Spring Boot provides numerous FailureAnalyzer implementations, and you can add your own.
If no failure analyzers are able to handle the exception, you can still
display the full conditions report to better understand what went wrong. To do
so, you need to enable the debug property or enable DEBUG logging for
org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener.
For instance, if you are running your application by using java -jar, you can enable the debug
property as follows:
Inside your banner.txt file, you can use any of the following placeholders:
Variable Description
${spring-boot.version} The Spring Boot version that you are using. For
example 2.0.0.BUILD-SNAPSHOT.
Tip
You can also use the spring.main.banner-mode property to determine if the banner has to be
printed on System.out (console), sent to the configured logger (log), or not produced at all (off).
The printed banner is registered as a singleton bean under the following name: springBootBanner.
Note
YAML maps off to false, so be sure to add quotes if you want to disable the banner in your
application.
spring:
main:
banner-mode: "off"
Note
The constructor arguments passed to SpringApplication are configuration sources for spring
beans. In most cases, these are references to @Configuration classes, but they could also be
references to XML configuration or to packages that should be scanned.
For a complete list of the configuration options, see the SpringApplication Javadoc.
The SpringApplicationBuilder lets you chain together multiple method calls and includes parent
and child methods that let you create a hierarchy, as shown in the following example:
new SpringApplicationBuilder()
.sources(Parent.class)
.child(Application.class)
.bannerMode(Banner.Mode.OFF)
.run(args);
Note
There are some restrictions when creating an ApplicationContext hierarchy. For example,
Web components must be contained within the child context, and the same Environment is
used for both parent and child contexts. See the SpringApplicationBuilder Javadoc for
full details.
Note
If you want those listeners to be registered automatically, regardless of the way the application is
created, you can add a META-INF/spring.factories file to your project and reference your
listener(s) by using the org.springframework.context.ApplicationListener key, as
shown in the following example:
org.springframework.context.ApplicationListener=com.example.project.MyListener
Application events are sent in the following order, as your application runs:
1. An ApplicationStartingEvent is sent at the start of a run but before any processing except the
registration of listeners and initializers.
3. An ApplicationPreparedEvent is sent just before the refresh is started but after bean definitions
have been loaded.
4. An ApplicationReadyEvent is sent after the refresh and any related callbacks have been
processed, to indicate that the application is ready to service requests.
Tip
You often need not use application events, but it can be handy to know that they exist. Internally,
Spring Boot uses events to handle a variety of tasks.
Application events are sent by using Spring Frameworks event publishing mechanism. Part of this
mechanism ensures that an event published to the listeners in a child context is also published
to the listeners in any ancestors contexts. As a result of this, if your application uses a hierarchy
of SpringApplication instances, a listener may receive multiple instances of the same type of
application event.
To allow your listener to distinguish between an event for its context and an event for a
descendant context, it should request that its application context is injected and then compare
the injected context with the context of the event. The context can be injected by implementing
ApplicationContextAware or, if the listener is a bean, by using @Autowired.
The algorithm used to determine a web environment is fairly simplistic (it is based on the presence
of a few classes). You can use setWebEnvironment(boolean webEnvironment) if you need to
override the default.
It is also possible to take complete control of the ApplicationContext type that is used by calling
setApplicationContextClass().
Tip
import org.springframework.boot.*
import org.springframework.beans.factory.annotation.*
import org.springframework.stereotype.*
@Component
public class MyBean {
@Autowired
public MyBean(ApplicationArguments args) {
boolean debug = args.containsOption("debug");
List<String> files = args.getNonOptionArgs();
// if run with "--debug logfile.txt" debug=true, files=["logfile.txt"]
}
Tip
import org.springframework.boot.*
import org.springframework.stereotype.*
@Component
public class MyBean implements CommandLineRunner {
@SpringBootApplication
public class ExitCodeApplication {
@Bean
public ExitCodeGenerator exitCodeGenerator() {
return () -> 42;
}
Also, the ExitCodeGenerator interface may be implemented by exceptions. When such an exception
is encountered, Spring Boot returns the exit code provided by the implemented getExitCode()
method.
Tip
If you want to know on which HTTP port the application is running, get the property with a key
of local.server.port.
Caution
Take care when enabling this feature, as the MBean exposes a method to shutdown the
application.
Spring Boot uses a very particular PropertySource order that is designed to allow sensible overriding
of values. Properties are considered in the following order:
15.Application properties packaged inside your jar (application.properties and YAML variants).
To provide a concrete example, suppose you develop a @Component that uses a name property, as
shown in the following example:
import org.springframework.stereotype.*
import org.springframework.beans.factory.annotation.*
@Component
public class MyBean {
@Value("${name}")
private String name;
// ...
On your application classpath (for example, inside your jar) you can have an
application.properties file that provides a sensible default property value for name. When
running in a new environment, an application.properties file can be provided outside of your jar
that overrides the name. For one-off testing, you can launch with a specific command line switch (for
example, java -jar app.jar --name="Spring").
Tip
In the preceding example, you end up with foo.bar=spam in the Spring Environment. You
can also supply the JSON as spring.application.json in a System property, as shown in
the following example:
You can also supply the JSON by using a command line argument, as shown in the following
example:
You can also supply the JSON as a JNDI variable, as follows: java:comp/env/
spring.application.json.
my.secret=${random.value}
my.number=${random.int}
my.bignumber=${random.long}
my.uuid=${random.uuid}
my.number.less.than.ten=${random.int(10)}
my.number.in.range=${random.int[1024,65536]}
The random.int* syntax is OPEN value (,max) CLOSE where the OPEN,CLOSE are any character
and value,max are integers. If max is provided, then value is the minimum value and max is the
maximum value (exclusive).
Environment. As mentioned previously, command line properties always take precedence over other
property sources.
If you do not want command line properties to be added to the Environment, you can disable them
by using SpringApplication.setAddCommandLineProperties(false).
The list is ordered by precedence (properties defined in locations higher in the list override those defined
in lower locations).
Note
If you do not like application.properties as the configuration file name, you can switch to another
file name by specifying a spring.config.name environment property. You can also refer to an explicit
location by using the spring.config.location environment property (a comma-separated list of
directory locations or file paths). The following example shows how to specify a different file name:
Warning
If spring.config.location contains directories (as opposed to files), they should end in / (and,
at runtime, be appended with the names generated from spring.config.name before being loaded,
including profile-specific file names). Files specified in spring.config.location are used as-is,
with no support for profile-specific variants, and are overridden by any profile-specific properties.
Config locations are searched in reverse order. By default, the configured locations are
classpath:/,classpath:/config/,file:./,file:./config/. The resulting search order is
the following:
1. file:./config/
2. file:./
3. classpath:/config/
4. classpath:/
When custom config locations are configured using spring.config.location, they replace
the default locations. For example, if spring.config.location is configured with the
value classpath:/custom-config/,file:./custom-config/, the search order becomes the
following:
1. file:./custom-config/
2. classpath:custom-config/
1. file:./custom-config/
2. classpath:custom-config/
3. file:./config/
4. file:./
5. classpath:/config/
6. classpath:/
This search ordering lets you specify default values in one configuration file and then selectively
override those values in another. You can provide default values for your application in
application.properties (or whatever other basename you choose with spring.config.name)
in one of the default locations. These default values can then be overriden at runtime with a different
file located in one of the custom locations.
Note
If you use environment variables rather than system properties, most operating systems
disallow period-separated key names, but you can use underscores instead (for example,
SPRING_CONFIG_NAME instead of spring.config.name).
Note
If your application runs in a container, then JNDI properties (in java:comp/env) or servlet
context initialization parameters can be used instead of, or as well as, environment variables or
system properties.
default profiles (by default [default]) that are used if no active profiles are set. In other words, if
no profiles are explicitly activated, then properties from application-default.properties are
loaded.
If several profiles are specified, a last-wins strategy applies. For example, profiles specified
by the spring.profiles.active property are added after those configured through the
SpringApplication API and therefore take precedence.
Note
app.name=MyApp
app.description=${app.name} is a Spring Boot application
Tip
You can also use this technique to create short variants of existing Spring Boot properties. See
the Section 73.4, Use Short Command Line Arguments how-to for details.
Note
Loading YAML
Spring Framework provides two convenient classes that can be used to load YAML documents. The
YamlPropertiesFactoryBean loads YAML as Properties and the YamlMapFactoryBean loads
YAML as a Map.
environments:
dev:
url: http://dev.bar.com
name: Developer Setup
prod:
url: http://foo.bar.com
name: My Cool App
environments.dev.url=http://dev.bar.com
environments.dev.name=Developer Setup
environments.prod.url=http://foo.bar.com
environments.prod.name=My Cool App
YAML lists are represented as property keys with [index] dereferencers. For example, consider the
following YAML:
my:
servers:
- dev.bar.com
- foo.bar.com
my.servers[0]=dev.bar.com
my.servers[1]=foo.bar.com
To bind to properties like that by using the Spring DataBinder utilities (which is what
@ConfigurationProperties does), you need to have a property in the target bean of type
java.util.List (or Set) and you either need to provide a setter or initialize it with a mutable value.
For example, the following example binds to the properties shown previously:
@ConfigurationProperties(prefix="my")
public class Config {
Note
When lists are configured in more than one place, overriding works by replacing the entire list. In
the preceding example, when my.servers is redefined in several places, the entire list from the
PropertySource with higher precedence will override any other configuration for that list. Both
comma-separated lists and yaml lists can be used for completely overriding the contents of the list.
You can specify multiple profile-specific YAML documents in a single file by using a spring.profiles
key to indicate when the document applies, as shown in the following example:
server:
address: 192.168.1.100
---
spring:
profiles: development
server:
address: 127.0.0.1
---
spring:
profiles: production
server:
address: 192.168.1.120
In the preceding example, if the development profile is active, the server.address property
is 127.0.0.1. Similarly, if the production profile is active, the server.address property is
192.168.1.120. If the development and production profiles are not enabled, then the value for
the property is 192.168.1.100.
If none are explicitly active when the application context starts, the default profiles are activated . So,
in the following YAML, we set a value for security.user.password that is only available in the
"default" profile:
server:
port: 8000
---
spring:
profiles: default
security:
user:
password: weak
Whereas, in the following example, the password is always set because it is not attached to any profile,
and it would have to be explicitly reset in all other profiles as necessary:
server:
port: 8000
security:
user:
password: weak
Spring profiles designated by using the "spring.profiles" element may optionally be negated by using
the ! character. If both negated and non-negated profiles are specified for a single document, at least
one non-negated profile must match, and no negated profiles may match.
YAML Shortcomings
YAML files cannot be loaded by using the @PropertySource annotation. So, in the case that you need
to load values that way, you need to use a properties file.
As we have seen above, any YAML content is ultimately transformed to properties. That process may
be counter-intuitive when overriding list properties through a profile.
For example, assume a MyPojo object with name and description attributes that are null by default.
The following example exposes a list of MyPojo from FooProperties:
@ConfigurationProperties("foo")
public class FooProperties {
foo:
list:
- name: my name
description: my description
---
spring:
profiles: dev
foo:
list:
- name: my another name
If the dev profile is not active, FooProperties.list contains one MyPojo entry as defined above. If
the dev profile is enabled however, the list still contains only one entry (with a name of my another
name and a description of null). This configuration does not add a second MyPojo instance to the
list, and it does not merge the items.
When a collection is specified in multiple profiles, the one with the highest priority (and only that one)
is used:
foo:
list:
- name: my name
description: my description
- name: another name
description: another description
---
spring:
profiles: dev
foo:
list:
- name: my another name
In the preceding example, if the dev profile is active, FooProperties.list contains one MyPojo
entry (with a name of my another name and a description of null).
package com.example;
import java.net.InetAddress;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties("foo")
public class FooProperties {
}
}
foo.security.password.
Note
Getters and setters are usually mandatory, since binding is through standard Java Beans property
descriptors, just like in Spring MVC. A setter may be omitted in the following cases:
Maps, as long as they are initialized, need a getter but not necessarily a setter, since they can
be mutated by the binder.
Collections and arrays can be accessed either through an index (typically with YAML) or by
using a single comma-separated value (properties). In the latter case, a setter is mandatory.
We recommend to always add a setter for such types. If you initialize a collection, make sure
it is not immutable (as in the preceding example).
If nested POJO properties are initialized (like the Security field in the preceding example), a
setter is not required. If you want the binder to create the instance on the fly by using its default
constructor, you need a setter.
Some people use Project Lombok to add getters and setters automatically. Make sure that Lombok
does not generate any particular constructor for such type, as it is used automatically by the
container to instantiate the object.
Tip
You also need to list the properties classes to register in the @EnableConfigurationProperties
annotation:
@Configuration
@EnableConfigurationProperties(FooProperties.class)
public class MyConfiguration {
}
Note
When the @ConfigurationProperties bean is registered that way, the bean has a
conventional name: <prefix>-<fqn>, where <prefix> is the environment key prefix specified
in the @ConfigurationProperties annotation and <fqn> the fully qualified name of the bean.
If the annotation does not provide any prefix, only the fully qualified name of the bean is used.
Even if the preceding configuration creates a regular bean for FooProperties, we recommend
that @ConfigurationProperties only deal with the environment and, in particular, does not
inject other beans from the context. Having said that, the @EnableConfigurationProperties
annotation is also automatically applied to your project so that any existing bean annotated
with @ConfigurationProperties is configured from the Environment. You could shortcut
MyConfiguration by making sure FooProperties is already a bean, as shown in the following
example:
@Component
@ConfigurationProperties(prefix="foo")
public class FooProperties {
This style of configuration works particularly well with the SpringApplication external YAML
configuration, as shown in the following example:
# application.yml
foo:
remote-address: 192.168.1.1
security:
username: foo
roles:
- USER
- ADMIN
To work with @ConfigurationProperties beans, you can just inject them in the same way as any
other bean, as shown in the following example:
@Service
public class MyService {
@Autowired
public MyService(FooProperties properties) {
this.properties = properties;
}
//...
@PostConstruct
public void openConnection() {
Server server = new Server(this.properties.getRemoteAddress());
// ...
}
Tip
Using @ConfigurationProperties also lets you generate metadata files that can be used by
IDEs to offer auto-completion for your own keys. See the Appendix B, Configuration Metadata
appendix for details.
Third-party Configuration
As well as using @ConfigurationProperties to annotate a class, you can also use it on public
@Bean methods. Doing so can be particularly useful when you want to bind properties to third-party
components that are outside of your control.
@ConfigurationProperties(prefix = "bar")
@Bean
public BarComponent barComponent() {
...
}
Any property defined with the bar prefix is mapped onto that BarComponent bean in a similar manner
as the preceding FooProperties example.
Relaxed Binding
Spring Boot uses some relaxed rules for binding Environment properties to
@ConfigurationProperties beans, so there does not need to be an exact match between the
Environment property name and the bean property name. Common examples where this is useful
include dash-separated environment properties (for example, context-path binds to contextPath),
and capitalized environment properties (for example, PORT binds to port).
@ConfigurationProperties(prefix="acme.my-project.person")
public class OwnerProperties {
In the preceding example, the following properties names can all be used:
Property Note
acme.my- Kebab case, which is recommended for use in .properties and .yml files.
project.person.first-
name
Note
The prefix value for the annotation must be in kebab case (lowercase and separated by -, i.e.
acme.my-project.person).
Properties Files Camel case, kebab case, or Standard list syntax using [ ] or
underscore notation comma-separated values
YAML Files Camel case, kebab case, or Standard YAML list syntax or comma-
underscore notation separated values
System properties Camel case, kebab case, or Standard list syntax using [ ] or
underscore notation comma-separated values
Tip
We recommend that, when possible, properties are stored in lower-case kebab format, such as
my.property-name=foo.
Properties Conversion
Spring attempts to coerce the external application properties to the right type when it binds to
the @ConfigurationProperties beans. If you need custom type conversion, you can provide a
ConversionService bean (with bean named conversionService) or custom property editors
(through a CustomEditorConfigurer bean) or custom Converters (with bean definitions
annotated as @ConfigurationPropertiesBinding).
Note
As this bean is requested very early during the application lifecycle, make sure to limit the
dependencies that your ConversionService is using. Typically, any dependency that you
require may not be fully initialized at creation time. You may want to rename your custom
ConversionService if it is not required for configuration keys coercion and only rely on custom
converters qualified with @ConfigurationPropertiesBinding.
@ConfigurationProperties Validation
Spring Boot attempts to validate @ConfigurationProperties classes whenever they are annotated
with Springs @Validated annotation. You can use JSR-303 javax.validation constraint
annotations directly on your configuration class. To do so, ensure that a compliant JSR-303
implementation is on your classpath and then add constraint annotations to your fields, as shown in
the following example:
@ConfigurationProperties(prefix="foo")
@Validated
public class FooProperties {
@NotNull
private InetAddress remoteAddress;
In order to validate the values of nested properties, you must annotate the associated field as @Valid
to trigger its validation. The following example builds on the preceding FooProperties example:
@ConfigurationProperties(prefix="connection")
@Validated
public class FooProperties {
@NotNull
private InetAddress remoteAddress;
@Valid
private final Security security = new Security();
@NotEmpty
public String username;
You can also add a custom Spring Validator by creating a bean definition called
configurationPropertiesValidator. The @Bean method should be declared static. The
configuration properties validator is created very early in the applications lifecycle, and declaring the
@Bean method as static lets the bean be created without having to instantiate the @Configuration
class. Doing so avoids any problems that may be caused by early instantiation. There is a property
validation sample that shows how to set things up.
Tip
The @Value annotation is a core container feature, and it does not provide the same features as
type-safe configuration properties. The following table summarizes the features that are supported by
@ConfigurationProperties and @Value:
Feature @ConfigurationProperties
@Value
If you define a set of configuration keys for your own components, we recommend you to group them in
a POJO annotated with @ConfigurationProperties. You should also be aware that, since @Value
does not support relaxed binding, it is not a good candidate if you need to provide the value by using
environment variables.
Finally, while you can write a SpEL expression in @Value, such expressions are not processed from
Application property files.
25. Profiles
Spring Profiles provide a way to segregate parts of your application configuration and make it be
available only in certain environments. Any @Component or @Configuration can be marked with
@Profile to limit when it is loaded, as shown in the following example:
@Configuration
@Profile("production")
public class ProductionConfiguration {
// ...
In the normal Spring way, you can use a spring.profiles.active Environment property to
specify which profiles are active. You can specify the property in any of the usual ways. For example,
you could include it in your application.properties:
spring.profiles.active=dev,hsqldb
You could also specify it on the command line by using the following switch: --
spring.profiles.active=dev,hsqldb.
Sometimes, it is useful to have profile-specific properties that add to the active profiles rather
than replace them. The spring.profiles.include property can be used to unconditionally add
active profiles. The SpringApplication entry point also has a Java API for setting additional
profiles (that is, on top of those activated by the spring.profiles.active property). See the
setAdditionalProfiles() method.
For example, when an application with the following properties is run by using the switch, --
spring.profiles.active=prod, the proddb and prodmq profiles are also activated:
---
my.property: fromyamlfile
---
spring.profiles: prod
spring.profiles.include:
- proddb
- prodmq
Note
26. Logging
Spring Boot uses Commons Logging for all internal logging but leaves the underlying log implementation
open. Default configurations are provided for Java Util Logging, Log4J2, and Logback. In each case,
loggers are pre-configured to use console output with optional file output also available.
By default, if you use the Starters, Logback is used for logging. Appropriate Logback routing is also
included to ensure that dependent libraries that use Java Util Logging, Commons Logging, Log4J, or
SLF4J all work correctly.
Tip
There are a lot of logging frameworks available for Java. Do not worry if the above list seems
confusing. Generally, you do not need to change your logging dependencies and the Spring Boot
defaults work just fine.
Process ID.
Thread name Enclosed in square brackets (may be truncated for console output).
Logger name This is usually the source class name (often abbreviated).
Note
Note
When the debug mode is enabled, a selection of core loggers (embedded container, Hibernate, and
Spring Boot) are configured to output more information. Enabling the debug mode does not configure
your application to log all messages with DEBUG level.
Alternatively, you can enable a trace mode by starting your application with a --trace flag (or
trace=true in your application.properties). Doing so enables trace logging for a selection of
core loggers (embedded container, Hibernate schema generation, and the whole Spring portfolio).
Color-coded Output
If your terminal supports ANSI, color output is used to aid readability. You can set
spring.output.ansi.enabled to a supported value to override the auto detection.
Color coding is configured by using the %clr conversion word. In its simplest form the converter colors
the output according to the log level, as shown in the following example:
%clr(%5p)
Level Color
FATAL Red
ERROR Red
WARN Yellow
INFO Green
DEBUG Green
TRACE Green
Alternatively, you can specify the color or style that should be used by providing it as an option to the
conversion. For example, to make the text yellow, use the following setting:
%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){yellow}
blue
cyan
faint
green
magenta
red
yellow
The following table shows how the logging.* properties can be used together:
logging.file Example
logging.path Description
Specific file (none) my.log Writes to the specified log file. Names can be an exact
location or relative to the current directory.
Log files rotate when they reach 10 MB and, as with console output, ERROR-level, WARN-level, and INFO-
level messages are logged by default. Size limits can be changed using the logging.file.max-size
property. Previously rotated files are archived indefinitely unless the logging.file.max-history
property has been set.
Note
The logging system is initialized early in the application lifecycle. Consequently, logging properties
are not found in property files loaded through @PropertySource annotations.
Tip
Logging properties are independent of the actual logging infrastructure. As a result, specific
configuration keys (such as logback.configurationFile for Logback) are not managed by
spring Boot.
logging.level.root=WARN
logging.level.org.springframework.web=DEBUG
logging.level.org.hibernate=ERROR
You can force Spring Boot to use a particular logging system by using the
org.springframework.boot.logging.LoggingSystem system property. The value should be
the fully qualified class name of a LoggingSystem implementation. You can also disable Spring Boots
logging configuration entirely by using a value of none.
Note
Note
When possible, we recommend that you use the -spring variants for your logging configuration
(for example, logback-spring.xml rather than logback.xml). If you use standard
configuration locations, Spring cannot completely control log initialization.
Warning
There are known classloading issues with Java Util Logging that cause problems when running
from an 'executable jar'. We recommend that you avoid it when running from an 'executable jar'
if at all possible.
To help with the customization, some other properties are transferred from the Spring Environment
to System properties, as described in the following table:
All the supported logging systems can consult System properties when parsing their configuration files.
See the default configurations in spring-boot.jar for examples:
Logback
Log4j 2
Tip
If you want to use a placeholder in a logging property, you should use Spring Boots syntax and
not the syntax of the underlying framework. Notably, if you use Logback, you should use : as the
delimiter between a property name and its default value and not use :-.
Tip
You can add MDC and other ad-hoc content to log lines by overriding only the
LOG_LEVEL_PATTERN (or logging.pattern.level with Logback). For example, if you use
Note
Because the standard logback.xml configuration file is loaded too early, you cannot use
extensions in it. You need to either use logback-spring.xml or define a logging.config
property.
Warning
The extensions cannot be used with Logbacks configuration scanning. If you attempt to do so,
making changes to the configuration file results in an error similar to one of the following being
logged:
Profile-specific Configuration
The <springProfile> tag lets you optionally include or exclude sections of configuration based
on the active Spring profiles. Profile sections are supported anywhere within the <configuration>
element. Use the name attribute to specify which profile accepts the configuration. Multiple profiles can
be specified using a comma-separated list. The following listing shows three sample profiles:
<springProfile name="staging">
<!-- configuration to be enabled when the "staging" profile is active -->
</springProfile>
<springProfile name="!production">
<!-- configuration to be enabled when the "production" profile is not active -->
</springProfile>
Environment Properties
The <springProperty> tag lets you expose properties from the Spring Environment for use within
Logback. Doing so can be useful if you want to access values from your application.properties
file in your Logback configuration. The tag works in a similar way to Logbacks standard <property>
tag. However, rather than specifying a direct value, you specify the source of the property (from the
Environment). If you need to store the property somewhere other than in local scope, you can use
the scope attribute. If you need a fallback value (in case the property is not set in the Environment),
you can use the defaultValue attribute.
Note
The source must be specified using kebab case (such as my.property-name). However,
properties can be added to the Environment by using the relaxed rules.
If you have not yet developed a Spring Boot web application, you can follow the "Hello World!" example
in the Getting started section.
The following code shows a typical example @RestController to serve JSON data:
@RestController
@RequestMapping(value="/users")
public class MyRestController {
@RequestMapping(value="/{user}", method=RequestMethod.GET)
public User getUser(@PathVariable Long user) {
// ...
}
@RequestMapping(value="/{user}/customers", method=RequestMethod.GET)
List<Customer> getUserCustomers(@PathVariable Long user) {
// ...
}
@RequestMapping(value="/{user}", method=RequestMethod.DELETE)
public User deleteUser(@PathVariable Long user) {
// ...
}
Spring MVC is part of the core Spring Framework, and detailed information is available in the reference
documentation. There are also several guides that cover Spring MVC available at spring.io/guides.
Spring Boot provides auto-configuration for Spring MVC that works well with most applications.
Support for serving static resources, including support for WebJars (covered later in this document).
If you want to keep Spring Boot MVC features and you want to add additional MVC configuration
(interceptors, formatters, view controllers, and other features), you can add your own @Configuration
class of type WebMvcConfigurer but without @EnableWebMvc. If you wish to provide
custom instances of RequestMappingHandlerMapping, RequestMappingHandlerAdapter, or
ExceptionHandlerExceptionResolver, you can declare a WebMvcRegistrationsAdapter
instance to provide such components.
If you want to take complete control of Spring MVC, you can add your own @Configuration annotated
with @EnableWebMvc.
HttpMessageConverters
Spring MVC uses the HttpMessageConverter interface to convert HTTP requests and responses.
Sensible defaults are included out of the box. For example, objects can be automatically converted to
JSON (by using the Jackson library) or XML (by using the Jackson XML extension, if available, or by
using JAXB if the Jackson XML extension is not available). By default, strings are encoded in UTF-8.
If you need to add or customize converters, you can use Spring Boots HttpMessageConverters
class:
import org.springframework.boot.autoconfigure.web.HttpMessageConverters;
import org.springframework.context.annotation.*;
import org.springframework.http.converter.*;
@Configuration
public class MyConfiguration {
@Bean
public HttpMessageConverters customConverters() {
HttpMessageConverter<?> additional = ...
HttpMessageConverter<?> another = ...
return new HttpMessageConverters(additional, another);
}
Any HttpMessageConverter bean that is present in the context is added to the list of converters.
You can also override default converters in the same way.
If you use Jackson to serialize and deserialize JSON data, you might want to write your own
JsonSerializer and JsonDeserializer classes. Custom serializers are usually registered with
Jackson through a module, but Spring Boot provides an alternative @JsonComponent annotation that
makes it easier to directly register Spring Beans.
import java.io.*;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.*;
import org.springframework.boot.jackson.*;
@JsonComponent
public class Example {
All @JsonComponent beans in the ApplicationContext are automatically registered with Jackson.
Because @JsonComponent is meta-annotated with @Component, the usual component-scanning rules
apply.
MessageCodesResolver
Spring MVC has a strategy for generating error codes for rendering error messages from binding errors:
MessageCodesResolver. If you set the spring.mvc.message-codes-resolver.format
property PREFIX_ERROR_CODE or POSTFIX_ERROR_CODE, Spring Boot creates one for you (see the
enumeration in DefaultMessageCodesResolver.Format).
Static Content
By default, Spring Boot serves static content from a directory called /static (or /public or /
resources or /META-INF/resources) in the classpath or from the root of the ServletContext.
It uses the ResourceHttpRequestHandler from Spring MVC so that you can modify that behavior
by adding your own WebMvcConfigurer and overriding the addResourceHandlers method.
In a stand-alone web application, the default servlet from the container is also enabled and acts as a
fallback, serving content from the root of the ServletContext if Spring decides not to handle it. Most
of the time, this will not happen (unless you modify the default MVC configuration) because Spring can
always handle requests through the DispatcherServlet.
By default, resources are mapped on /**, but you can tune that with the spring.mvc.static-
path-pattern property. For instance, relocating all resources to /resources/** can be achieved
as follows:
spring.mvc.static-path-pattern=/resources/**
You can also customize the static resource locations by using the spring.resources.static-
locations property (replacing the default values with a list of directory locations). The root Servlet
context path "/" is automatically added as a location as well.
In addition to the standard static resource locations mentioned earlier, a special case is made for
Webjars content. Any resources with a path in /webjars/** are served from jar files if they are
packaged in the Webjars format.
Tip
Do not use the src/main/webapp directory if your application is packaged as a jar. Although
this directory is a common standard, it works only with war packaging, and it is silently ignored
by most build tools if you generate a jar.
Spring Boot also supports the advanced resource handling features provided by Spring MVC, allowing
use cases such as cache-busting static resources or using version agnostic URLs for Webjars.
To use version agnostic URLs for Webjars, add the webjars-locator dependency. Then declare your
Webjar. Using jQuery as an example, adding "/webjars/jquery/dist/jquery.min.js" results
in "/webjars/jquery/x.y.z/dist/jquery.min.js". where x.y.z is the Webjar version.
Note
If you are using JBoss, you need to declare the webjars-locator-jboss-vfs dependency
instead of the webjars-locator. Otherwise, all Webjars resolve as a 404.
To use cache busting, the following configuration configures a cache busting solution for
all static resources, effectively adding a content hash, such as <link href="/css/
spring-2a2d595e6ed9a0b24f027f2b63b134d6.css"/>, in URLs:
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**
Note
When loading resources dynamically with, for example, a JavaScript module loader, renaming files is not
an option. That is why other strategies are also supported and can be combined. A "fixed" strategy adds
a static version string in the URL without changing the file name, as shown in the following example:
spring.resources.chain.strategy.content.enabled=true
spring.resources.chain.strategy.content.paths=/**
spring.resources.chain.strategy.fixed.enabled=true
spring.resources.chain.strategy.fixed.paths=/js/lib/
spring.resources.chain.strategy.fixed.version=v12
With this configuration, JavaScript modules located under "/js/lib/" use a fixed versioning strategy
("/v12/js/lib/mymodule.js"), while other resources still use the content one (<link href="/
css/spring-2a2d595e6ed9a0b24f027f2b63b134d6.css"/>).
Tip
This feature has been thoroughly described in a dedicated blog post and in Spring Frameworks
reference documentation.
Welcome Page
Spring Boot support both static and templated welcome pages. It first looks for an index.html file in
the configured static content locations. If one is not found, it then looks for an index template. If either
is found it is automatically used as the welcome page of the application.
Custom Favicon
Spring Boot looks for a favicon.ico in the configured static content locations and the root of the
classpath (in that order). If such a file is present, it is automatically used as the favicon of the application.
ConfigurableWebBindingInitializer
Template Engines
As well as REST web services, you can also use Spring MVC to serve dynamic HTML content. Spring
MVC supports a variety of templating technologies, including Thymeleaf, FreeMarker, and JSPs. Also,
many other templating engines include their own Spring MVC integrations.
Spring Boot includes auto-configuration support for the following templating engines:
FreeMarker
Groovy
Thymeleaf
Mustache
Tip
If possible, JSPs should be avoided. There are several known limitations when using them with
embedded servlet containers.
When you use one of these templating engines with the default configuration, your templates are picked
up automatically from src/main/resources/templates.
Tip
Depending on how you run your application, IntelliJ IDEA orders the classpath differently. Running
your application in the IDE from its main method results in a different ordering than when you run
your application by using Maven or Gradle or from its packaged jar. This can cause Spring Boot to
fail to find the templates on the classpath. If you have this problem, you can reorder the classpath
in the IDE to place the modules classes and resources first. Alternatively, you can configure the
template prefix to search every templates directory on the classpath, as follows: classpath*:/
templates/.
Error Handling
By default, Spring Boot provides an /error mapping that handles all errors in a sensible way, and
it is registered as a global error page in the servlet container. For machine clients, it produces a
JSON response with details of the error, the HTTP status, and the exception message. For browser
clients, there is a whitelabel error view that renders the same data in HTML format (to customize it,
add a View that resolves to error). To replace the default behavior completely, you can implement
ErrorController and register a bean definition of that type or add a bean of type ErrorAttributes
to use the existing mechanism but replace the contents.
Tip
You can also define a class annotated with @ControllerAdvice to customize the JSON document
to return for a particular controller and/or exception type, as shown in the following example:
@ControllerAdvice(basePackageClasses = FooController.class)
public class FooControllerAdvice extends ResponseEntityExceptionHandler {
@ExceptionHandler(YourException.class)
@ResponseBody
ResponseEntity<?> handleControllerException(HttpServletRequest request, Throwable ex) {
HttpStatus status = getStatus(request);
return new ResponseEntity<>(new CustomErrorType(status.value(), ex.getMessage()), status);
}
In the preceding example, if YourException is thrown by a controller defined in the same package
as FooController, a JSON representation of the CustomErrorType POJO is used instead of the
ErrorAttributes representation.
If you want to display a custom HTML error page for a given status code, you can add a file to an /error
folder. Error pages can either be static HTML (that is, added under any of the static resource folders)
or built by using templates. The name of the file should be the exact status code or a series mask.
For example, to map 404 to a static HTML file, your folder structure would be as follows:
src/
+- main/
+- java/
| + <source code>
+- resources/
+- public/
+- error/
| +- 404.html
+- <other public assets>
To map all 5xx errors by using a FreeMarker template, your folder structure would be as follows:
src/
+- main/
+- java/
| + <source code>
+- resources/
+- templates/
+- error/
| +- 5xx.ftl
+- <other templates>
For more complex mappings, you can also add beans that implement the ErrorViewResolver
interface, as shown in the following example:
@Override
public ModelAndView resolveErrorView(HttpServletRequest request,
HttpStatus status, Map<String, Object> model) {
// Use the request or status to optionally return a ModelAndView
return ...
}
You can also use regular Spring MVC features such as @ExceptionHandler methods and
@ControllerAdvice. The ErrorController then picks up any unhandled exceptions.
For applications that do not use Spring MVC, you can use the ErrorPageRegistrar interface to
directly register ErrorPages. This abstraction works directly with the underlying embedded servlet
container and works even if you do not have a Spring MVC DispatcherServlet.
@Bean
public ErrorPageRegistrar errorPageRegistrar(){
return new MyErrorPageRegistrar();
}
// ...
@Override
public void registerErrorPages(ErrorPageRegistry registry) {
registry.addErrorPages(new ErrorPage(HttpStatus.BAD_REQUEST, "/400"));
}
Note
If you register an ErrorPage with a path that ends up being handled by a Filter (as is common
with some non-Spring web frameworks, like Jersey and Wicket), then the Filter has to be
explicitly registered as an ERROR dispatcher, as shown in the following example:
@Bean
Note that the default FilterRegistrationBean does not include the ERROR dispatcher type.
When deployed to a servlet container, Spring Boot uses its error page filter to forward a request with an
error status to the appropriate error page. The request can only be forwarded to the correct error page if
the response has not already been committed. By default, WebSphere Application Server 8.0 and later
commits the response upon successful completion of a servlets service method. You should disable
this behavior by setting com.ibm.ws.webcontainer.invokeFlushAfterService to false.
Spring HATEOAS
If you develop a RESTful API that makes use of hypermedia, Spring Boot provides auto-configuration
for Spring HATEOAS that works well with most applications. The auto-configuration replaces the
need to use @EnableHypermediaSupport and registers a number of beans to ease building
hypermedia-based applications, including a LinkDiscoverers (for client side support) and an
ObjectMapper configured to correctly marshal responses into the desired representation. The
ObjectMapper is customized by setting the various spring.jackson.* properties or, if one exists,
by a Jackson2ObjectMapperBuilder bean.
CORS Support
Cross-origin resource sharing (CORS) is a W3C specification implemented by most browsers that allows
you to specify in a flexible way what kind of cross-domain requests are authorized, instead of using
some less secure and less powerful approaches such as IFRAME or JSONP.
As of version 4.2, Spring MVC supports CORS. Using controller method CORS configuration with
@CrossOrigin annotations in your Spring Boot application does not require any specific configuration.
Global CORS configuration can be defined by registering a WebMvcConfigurer bean with a
customized addCorsMappings(CorsRegistry) method, as shown in the following example:
@Configuration
public class MyConfiguration {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/api/**");
}
};
}
}
Spring WebFlux comes in two flavors: functional and annotation-based. The annotation-based one is
quite close to the Spring MVC model we know, as shown in the following example:
@RestController
@RequestMapping("/users")
public class MyRestController {
@GetMapping("/{user}")
public Mono<User> getUser(@PathVariable Long user) {
// ...
}
@GetMapping("/{user}/customers")
Flux<Customer> getUserCustomers(@PathVariable Long user) {
// ...
}
@DeleteMapping("/{user}")
public Mono<User> deleteUser(@PathVariable Long user) {
// ...
}
WebFlux.fn, the functional variant, separates the routing configuration from the actual handling of the
requests, as shown in the following example:
@Configuration
public class RoutingConfiguration {
@Bean
public RouterFunction<ServerResponse> monoRouterFunction(UserHandler userHandler) {
return route(GET("/{user}").and(accept(APPLICATION_JSON)), userHandler::getUser)
.andRoute(GET("/{user}/customers").and(accept(APPLICATION_JSON)), userHandler::getUserCustomers)
.andRoute(DELETE("/{user}").and(accept(APPLICATION_JSON)), userHandler::deleteUser);
}
@Component
public class UserHandler {
WebFlux is part of the Spring Framework. and detailed information is available in its reference
documentation.
Note
Support for serving static resources, including support for WebJars (described later in this document).
If you want to keep Spring Boot WebFlux features and you want to add additional WebFlux
configuration, you can add your own @Configuration class of type WebFluxConfigurer but
without @EnableWebFlux.
If you want to take complete control of Spring WebFlux, you can add your own @Configuration
annotated with @EnableWebFlux.
Spring Boot applies further customization by using CodecCustomizer instances. For example,
spring.jackson.* configuration keys are applied to the Jackson codec.
If you need to add or customize codecs, you can create a custom CodecCustomizer component, as
shown in the following example:
import org.springframework.boot.web.codec.CodecCustomizer;
@Configuration
public class MyConfiguration {
@Bean
public CodecCustomizer myCodecCustomizer() {
return codecConfigurer -> {
// ...
}
}
You can also leverage Boots custom JSON serializers and deserializers.
Static Content
By default, Spring Boot serves static content from a directory called /static (or /public or /
resources or /META-INF/resources) in the classpath. It uses the ResourceWebHandler from
Spring WebFlux so that you can modify that behavior by adding your own WebFluxConfigurer and
overriding the addResourceHandlers method.
By default, resources are mapped on /**, but you can tune that by setting the
spring.webflux.static-path-pattern property. For instance, relocating all resources to /
resources/** can be achieved as follows:
spring.webflux.static-path-pattern=/resources/**
You can also customize the static resource locations by using spring.resources.static-
locations. Doing so replaces the default values with a list of directory locations. If you do so, the
default welcome page detection switches to your custom locations. So, if there is an index.html in
any of your locations on startup, it is the home page of the application.
In addition to the standard static resource locations listed earlier, a special case is made for Webjars
content. Any resources with a path in /webjars/** are served from jar files if they are packaged in
the Webjars format.
Tip
Spring WebFlux applications do not strictly depend on the Servlet API, so they cannot be deployed
as war files and do not use the src/main/webapp directory.
Template Engines
As well as REST web services, you can also use Spring WebFlux to serve dynamic HTML content.
Spring WebFlux supports a variety of templating technologies, including Thymeleaf, FreeMarker, and
Mustache.
Spring Boot includes auto-configuration support for the following templating engines:
FreeMarker
Thymeleaf
Mustache
When you use one of these templating engines with the default configuration, your templates are picked
up automatically from src/main/resources/templates.
Error Handling
Spring Boot provides a WebExceptionHandler that handles all errors in a sensible way. Its position
in the processing order is immediately before the handlers provided by WebFlux, which are considered
last. For machine clients it will produce a JSON response with details of the error, the HTTP status
and the exception message. For browser clients there is a whitelabel error handler that renders the
same data in HTML format. You can also provide your own HTML templates to display errors (see the
next section).
The first step to customizing this feature is often about using the existing mechanism but replacing or
augmenting the error contents. For that, you can simply add a bean of type ErrorAttributes.
To change the error handling behavior, you can implement ErrorWebExceptionHandler and register
a bean definition of that type. Because a WebExceptionHandler is quite low-level, Spring Boot also
@Override
protected RouterFunction<ServerResponse> getRoutingFunction(ErrorAttributes errorAttributes) {
return RouterFunctions
.route(aPredicate, aHandler)
.andRoute(anotherPredicate, anotherHandler);
}
For a more complete picture, you can also subclass DefaultErrorWebExceptionHandler directly
and override specific methods.
If you want to display a custom HTML error page for a given status code, you can add a file to an /
error folder. Error pages can either be static HTML (that is, added under any of the static resource
folders) or built with templates. The name of the file should be the exact status code or a series mask.
For example, to map 404 to a static HTML file, your folder structure would be as follows:
src/
+- main/
+- java/
| + <source code>
+- resources/
+- public/
+- error/
| +- 404.html
+- <other public assets>
To map all 5xx errors by using a Mustache template, your folder structure would be as follows:
src/
+- main/
+- java/
| + <source code>
+- resources/
+- templates/
+- error/
| +- 5xx.mustache
+- <other templates>
To get started with Jersey 2.x, include the spring-boot-starter-jersey as a dependency and
then you need one @Bean of type ResourceConfig in which you register all the endpoints, as shown
in the following example:
@Component
public class JerseyConfig extends ResourceConfig {
public JerseyConfig() {
register(Endpoint.class);
}
Warning
Jerseys support for scanning executable archives is rather limited. For example, it cannot scan
for endpoints in a package found in WEB-INF/classes when running an executable war file.
To avoid this limitation, the packages method should not be used, and endpoints should be
registered individually by using the register method, as shown in the preceding example.
You can also register an arbitrary number of beans implementing ResourceConfigCustomizer for
more advanced customizations.
All the registered endpoints should be @Components with HTTP resource annotations (@GET etc.), as
shown in the following example:
@Component
@Path("/hello")
public class Endpoint {
@GET
public String message() {
return "Hello";
}
Since the Endpoint is a Spring @Component, its lifecycle is managed by Spring and you can use
the @Autowired annotation to inject dependencies and use the @Value annotation to inject external
configuration. By default, the Jersey servlet is registered and mapped to /*. You can change the
mapping by adding @ApplicationPath to your ResourceConfig.
There is a Jersey sample so that you can see how to set things up. There is also a Jersey 1.x sample.
Note that, in the Jersey 1.x sample, the spring-boot maven plugin has been configured to unpack some
Jersey jars so that they can be scanned by the JAX-RS implementation (because the sample asks for
them to be scanned in its Filter registration). If any of your JAX-RS resources are packaged as nested
jars, you may need to do the same.
Warning
If you choose to use Tomcat on CentOS, be aware that, by default, a temporary directory is used
to store compiled JSPs, file uploads, and so on. This directory may be deleted by tmpwatch
while your application is running, leading to failures. To avoid this behavior, you may want
to customize your tmpwatch configuration, so that tomcat.* directories are not deleted or
configure server.tomcat.basedir, so that embedded Tomcat uses a different location.
When using an embedded servlet container, you can register servlets, filters, and all the listeners (such
as HttpSessionListener) from the Servlet spec, either by using Spring beans or by scanning for
Servlet components.
Any Servlet, Filter, or servlet *Listener instance that is a Spring bean is registered with the
embedded container. This can be particularly convenient if you want to refer to a value from your
application.properties during configuration.
By default, if the context contains only a single Servlet, it is mapped to /. In the case of multiple servlet
beans, the bean name is used as a path prefix. Filters map to /*.
If convention-based mapping is not flexible enough, you can use the ServletRegistrationBean,
FilterRegistrationBean, and ServletListenerRegistrationBean classes for complete
control.
Tip
The ServletWebServerApplicationContext
Under the hood, Spring Boot uses a new type of ApplicationContext for
embedded servlet container support. The ServletWebServerApplicationContext is a
special type of WebApplicationContext that bootstraps itself by searching for a
single ServletWebServerFactory bean. Usually a TomcatServletWebServerFactory,
JettyServletWebServerFactory, or UndertowServletWebServerFactory has been auto-
configured.
Note
You usually do not need to be aware of these implementation classes. Most applications are auto-
configured, and the appropriate ApplicationContext and ServletWebServerFactory are
created on your behalf.
Network settings: Listen port for incoming HTTP requests (server.port), interface address to bind
to server.address, and so on.
SSL
HTTP compression
Spring Boot tries as much as possible to expose common settings, but this is not always possible.
For those cases, dedicated namespaces offer server-specific customizations (see server.tomcat
and server.undertow). For instance, access logs can be configured with specific features of the
embedded servlet container.
Tip
Programmatic Customization
import org.springframework.boot.web.server.WebServerFactoryCustomizer;
import org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory;
import org.springframework.stereotype.Component;
@Component
public class CustomizationBean implements
WebServerFactoryCustomizer<ConfigurableServletWebServerFactory> {
@Override
public void customize(ConfigurableServletWebServerFactory server) {
server.setPort(9000);
}
@Bean
public ConfigurableServletWebServerFactory webServerFactory() {
TomcatServletWebServerFactory factory = new TomcatServletWebServerFactory();
factory.setPort(9000);
factory.setSessionTimeout(10, TimeUnit.MINUTES);
factory.addErrorPages(new ErrorPage(HttpStatus.NOT_FOUND, "/notfound.html"));
return factory;
}
Setters are provided for many configuration options. Several protected method hooks are also provided
should you need to do something more exotic. See the source code documentation for details.
JSP Limitations
When running a Spring Boot application that uses an embedded servlet container (and is packaged as
an executable archive), there are some limitations in the JSP support.
With Tomcat, it should work if you use war packaging. That is, an executable war works and is also
deployable to a standard container (not limited to, but including Tomcat). An executable jar does not
work because of a hard-coded file pattern in Tomcat.
With Jetty, it should work if you use war packaging. That is, an executable war works, and is also
deployable to any standard container.
Creating a custom error.jsp page does not override the default view for error handling. Custom
error pages should be used instead.
There is a JSP sample so that you can see how to set things up.
28. Security
If Spring Security is on the classpath, then web applications are secure by default. Spring
Boot relies on Spring Securitys content-negotiation strategy to determine whether to use
httpBasic or formLogin. To add method-level security to a web application, you can also add
@EnableGlobalMethodSecurity with your desired settings. Additional information can be found in
the Spring Security Reference.
The default AuthenticationManager has a single user (the user name is user, and the password
is random and is printed at INFO level when the application starts), as shown in the following example:
Note
To also switch off the authentication manager configuration, you can add a bean of type
UserDetailsService, AuthenticationProvider or AuthenticationManager. There are
several secure applications in the Spring Boot samples to get you started with common use cases.
A UserDetailsService bean with in-memory store and a single user with a generated password.
Form-based login or HTTP Basic security (depending on Content-Type) for the entire application
(including actuator endpoints if actuator is on the classpath).
28.1 OAuth2
OAuth2 is a widely used authorization framework that is supported by Spring.
Client
If you have spring-security-oauth2-client on your classpath, you can take advantage of some
auto-configuration to make it easy to set up an OAuth2 Client. This configuration makes use of the
properties under OAuth2ClientProperties.
You can register multiple OAuth2 clients and providers under the
spring.security.oauth2.client prefix, as shown in the following example:
spring.security.oauth2.client.registration.my-client-1.client-id=abcd
spring.security.oauth2.client.registration.my-client-1.client-secret=password
spring.security.oauth2.client.registration.my-client-1.client-name=Client for user scope
spring.security.oauth2.client.registration.my-client-1.provider=my-oauth-provider
spring.security.oauth2.client.registration.my-client-1.scope=user
spring.security.oauth2.client.registration.my-client-1.redirect-uri-template=http://my-redirect-uri.com
spring.security.oauth2.client.registration.my-client-1.client-authentication-method=basic
spring.security.oauth2.client.registration.my-client-1.authorization-grant-type=authorization_code
spring.security.oauth2.client.registration.my-client-2.client-id=abcd
spring.security.oauth2.client.registration.my-client-2.client-secret=password
spring.security.oauth2.client.registration.my-client-2.client-name=Client for email scope
spring.security.oauth2.client.registration.my-client-2.provider=my-oauth-provider
spring.security.oauth2.client.registration.my-client-2.scope=email
spring.security.oauth2.client.registration.my-client-2.redirect-uri-template=http://my-redirect-uri.com
spring.security.oauth2.client.registration.my-client-2.client-authentication-method=basic
spring.security.oauth2.client.registration.my-client-2.authorization-grant-type=authorization_code
spring.security.oauth2.client.provider.my-oauth-provider.authorization-uri=http://my-auth-server/oauth/
authorize
spring.security.oauth2.client.provider.my-oauth-provider.token-uri=http://my-auth-server/oauth/token
spring.security.oauth2.client.provider.my-oauth-provider.user-info-uri=http://my-auth-server/userinfo
spring.security.oauth2.client.provider.my-oauth-provider.jwk-set-uri=http://my-auth-server/token_keys
spring.security.oauth2.client.provider.my-oauth-provider.user-name-attribute=name
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.anyRequest().authenticated()
.and()
.oauth2Login()
.redirectionEndpoint()
.baseUri("/custom-callback");
}
}
For common OAuth2 and OpenID providers such as Google, Github, Facebook, and Okta, we provide
a set of provider defaults (google, github, facebook, and okta respectively).
If you do not need to customize these providers, you can set the provider attribute to the one for
which you need to infer defaults. Also if the ID of your client matches the default supported provider,
Spring Boot infers that as well.
In other words, the two configurations in the following example use the Google provider:
spring.security.oauth2.client.registration.my-client.client-id=abcd
spring.security.oauth2.client.registration.my-client.client-secret=password
spring.security.oauth2.client.registration.my-client.provider=google
spring.security.oauth2.client.registration.google.client-id=abcd
spring.security.oauth2.client.registration.google.client-secret=password
The management endpoints are secure even if the application endpoints are insecure.
Security events are transformed into AuditEvent instances and published to the
AuditEventRepository.
The default user has the ACTUATOR role as well as the USER role.
Tip
See the How-to section for more advanced examples, typically to take full control over the
configuration of the DataSource.
It is often convenient to develop applications using an in-memory embedded database. Obviously, in-
memory databases do not provide persistent storage. You need to populate your database when your
application starts and be prepared to throw away data when your application ends.
Tip
Spring Boot can auto-configure embedded H2, HSQL, and Derby databases. You need not provide any
connection URLs. You need only include a build dependency to the embedded database that you want
to use.
Note
If you are using this feature in your tests, you may notice that the same database is reused
by your whole test suite regardless of the number of application contexts that you use. If you
want to make sure that each context has a separate embedded database, you should set
spring.datasource.generate-unique-name to true.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>runtime</scope>
</dependency>
Note
Tip
If, for whatever reason, you do configure the connection URL for an embedded database,
take care to ensure that the databases automatic shutdown is disabled. If you use H2, you
should use DB_CLOSE_ON_EXIT=FALSE to do so. If you use HSQLDB, you should ensure that
shutdown=true is not used. Disabling the databases automatic shutdown lets Spring Boot
control when the database is closed, thereby ensuring that it happens once access to the database
is no longer needed.
Production database connections can also be auto-configured by using a pooling DataSource. Spring
Boot uses the following algorithm for choosing a specific implementation:
1. We prefer HikariCP for its performance and concurrency. If HikariCP is available, we always choose it.
3. If neither HikariCP nor the Tomcat pooling datasource are available and if Commons DBCP2 is
available, we use it.
Note
You can bypass that algorithm completely and specify the connection pool to use by setting
the spring.datasource.type property. This is especially important if you are running your
application in a Tomcat container, as tomcat-jdbc is provided by default.
Tip
Additional connection pools can always be configured manually. If you define your own
DataSource bean, auto-configuration does not occur.
spring.datasource.url=jdbc:mysql://localhost/test
spring.datasource.username=dbuser
spring.datasource.password=dbpass
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
Note
You should at least specify the URL by setting the spring.datasource.url property.
Otherwise, Spring Boot tries to auto-configure an embedded database.
Tip
You often do not need to specify the driver-class-name, since Spring Boot can deduce it for
most databases from the url.
Note
For a pooling DataSource to be created, we need to be able to verify that a valid Driver
class is available, so we check for that before doing anything. In other words, if you set
spring.datasource.driver-class-name=com.mysql.jdbc.Driver then that class has
to be loadable.
See DataSourceProperties for more of the supported options. These are the standard
options that work regardless of the actual implementation. It is also possible to fine-tune
implementation-specific settings using their respective prefix (spring.datasource.hikari.*,
spring.datasource.tomcat.*, and spring.datasource.dbcp2.*). Refer to the
documentation of the connection pool implementation you are using for more details.
For instance, if you use the Tomcat connection pool, you could customize many additional settings:
# Maximum number of active connections that can be allocated from this pool at the same time.
spring.datasource.tomcat.max-active=50
If you deploy your Spring Boot application to an Application Server, you might want to configure and
manage your DataSource using your Application Servers built-in features and access it by using JNDI.
spring.datasource.jndi-name=java:jboss/datasources/customers
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;
@Component
public class MyBean {
@Autowired
// ...
You can customize some properties of the template by using the spring.jdbc.template.*
properties as shown in the following example:
spring.jdbc.template.max-rows=500
Note
Tip
We do not go into too many details of JPA or Spring Data here. You can follow the Accessing
Data with JPA guide from spring.io and read the Spring Data JPA and Hibernate reference
documentation.
Entity Classes
Traditionally, JPA Entity classes are specified in a persistence.xml file. With Spring Boot,
this file is not necessary and Entity Scanning is used instead. By default, all packages
below your main configuration class (the one annotated with @EnableAutoConfiguration or
@SpringBootApplication) are searched.
package com.example.myapp.domain;
import java.io.Serializable;
import javax.persistence.*;
@Entity
public class City implements Serializable {
@Id
@GeneratedValue
@Column(nullable = false)
private String name;
@Column(nullable = false)
private String state;
protected City() {
// no-args constructor required by JPA spec
// this one is protected since it shouldn't be used directly
}
// ... etc
Tip
You can customize entity scanning locations by using the @EntityScan annotation. See the
Section 78.4, Separate @Entity Definitions from Spring Configuration how-to.
Spring Data JPA repositories are interfaces that you can define to access data. JPA queries are created
automatically from your method names. For example, a CityRepository interface might declare a
findAllByState(String state) method to find all the cities in a given state.
For more complex queries, you can annotate your method with Spring Datas Query annotation.
Spring Data repositories usually extend from the Repository or CrudRepository interfaces. If you
use auto-configuration, repositories are searched from the package containing your main configuration
class (the one annotated with @EnableAutoConfiguration or @SpringBootApplication) down.
The following example shows a typical Spring Data repository interface definition:
package com.example.myapp.domain;
import org.springframework.data.domain.*;
import org.springframework.data.repository.*;
Tip
We have barely scratched the surface of Spring Data JPA. For complete details, see the Spring
Data JPA reference documentation.
spring.jpa.hibernate.ddl-auto=create-drop
Note
Hibernates own internal property name for this (if you happen to remember it better) is
hibernate.hbm2ddl.auto. You can set it, along with other Hibernate native properties, by
using spring.jpa.properties.* (the prefix is stripped before adding them to the entity
manager). The following line shows an example of setting JPA properties for Hibernate:
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
The line in the preceding example passes a value of true for the
hibernate.globally_quoted_identifiers property to the Hibernate entity manager.
By default, the DDL execution (or validation) is deferred until the ApplicationContext has started.
There is also a spring.jpa.generate-ddl flag, but it is not used if Hibernate auto-configuration is
active, because the ddl-auto settings are more fine-grained.
Tip
If you are not using Spring Boots developer tools but would still like to make use of H2s console,
you can configure the spring.h2.console.enabled property with a value of true. The H2
console is only intended for use during development, so you should take care to ensure that
spring.h2.console.enabled is not set to true in production.
By default, the console is available at /h2-console. You can customize the consoles path by using
the spring.h2.console.path property.
Code Generation
In order to use jOOQ type-safe queries, you need to generate Java classes from your database schema.
You can follow the instructions in the jOOQ user manual. If you use the jooq-codegen-maven plugin
and you also use the spring-boot-starter-parent parent POM, you can safely omit the plugins
<version> tag. You can also use Spring Boot-defined version variables (such as h2.version) to
declare the plugins database dependency. The following listing shows an example:
<plugin>
<groupId>org.jooq</groupId>
<artifactId>jooq-codegen-maven</artifactId>
<executions>
...
</executions>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
</dependency>
</dependencies>
<configuration>
<jdbc>
<driver>org.h2.Driver</driver>
<url>jdbc:h2:~/yourdatabase</url>
</jdbc>
<generator>
...
</generator>
</configuration>
</plugin>
Using DSLContext
The fluent API offered by jOOQ is initiated through the org.jooq.DSLContext interface. Spring Boot
auto-configures a DSLContext as a Spring Bean and connects it to your application DataSource. To
use the DSLContext, you can @Autowire it, as shown in the following example:
@Component
public class JooqExample implements CommandLineRunner {
@Autowired
public JooqExample(DSLContext dslContext) {
this.create = dslContext;
}
Tip
The jOOQ manual tends to use a variable named create to hold the DSLContext.
You can then use the DSLContext to construct your queries, as shown in the following example:
Unless the spring.jooq.sql-dialect property has been configured, Spring Boot determines the
SQL dialect to use for your datasource. If Spring Boot could not detect the dialect, it uses DEFAULT.
Note
Spring Boot can only auto-configure dialects supported by the open source version of jOOQ.
Customizing jOOQ
More advanced customizations can be achieved by defining your own @Bean definitions, which will be
used when the jOOQ Configuration is created. You can define beans for the following jOOQ Types:
ConnectionProvider
TransactionProvider
RecordMapperProvider
RecordListenerProvider
ExecuteListenerProvider
VisitListenerProvider
You can also create your own org.jooq.Configuration @Bean if you want to take complete control
of the jOOQ configuration.
30.1 Redis
Redis is a cache, message broker, and richly-featured key-value store. Spring Boot offers basic auto-
configuration for the Lettuce and Jedis client libraries and the abstractions on top of them provided by
Spring Data Redis.
Tip
Connecting to Redis
@Component
public class MyBean {
@Autowired
public MyBean(StringRedisTemplate template) {
this.template = template;
}
// ...
Tip
If you add your own @Bean of any of the auto-configured types, it replaces the default (except in the
case of RedisTemplate, when the exclusion is based on the bean name redisTemplate, not its type).
By default, if commons-pool2 is on the classpath, you get a pooled connection factory.
30.2 MongoDB
MongoDB is an open-source NoSQL document database that uses a JSON-like schema instead
of traditional table-based relational data. Spring Boot offers several conveniences for working with
MongoDB, including the spring-boot-starter-data-mongodb and spring-boot-starter-
data-mongodb-reactive Starters.
import org.springframework.data.mongodb.MongoDbFactory;
import com.mongodb.DB;
@Component
public class MyBean {
@Autowired
public MyBean(MongoDbFactory mongo) {
this.mongo = mongo;
}
// ...
You can set the spring.data.mongodb.uri property to change the URL and configure additional
settings such as the replica set, as shown in the following example:
spring.data.mongodb.uri=mongodb://user:secret@mongo1.example.com:12345,mongo2.example.com:23456/test
Alternatively, as long as you use Mongo 2.x, you can specify a host/port. For example, you might
declare the following settings in your application.properties:
spring.data.mongodb.host=mongoserver
spring.data.mongodb.port=27017
Note
Tip
If spring.data.mongodb.port is not specified, the default of 27017 is used. You could delete
this line from the example shown earlier.
Tip
If you do not use Spring Data Mongo, you can inject com.mongodb.Mongo beans instead of
using MongoDbFactory. You can also declare your own MongoDbFactory or Mongo bean if
you want to take complete control of establishing the MongoDB connection.
MongoTemplate
Spring Data Mongo provides a MongoTemplate class that is very similar in its design to Springs
JdbcTemplate. As with JdbcTemplate, Spring Boot auto-configures a bean for you to inject the
template, as follows:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.stereotype.Component;
@Component
public class MyBean {
@Autowired
public MyBean(MongoTemplate mongoTemplate) {
this.mongoTemplate = mongoTemplate;
}
// ...
Spring Data includes repository support for MongoDB. As with the JPA repositories discussed earlier,
the basic principle is that queries are constructed automatically based on method names.
In fact, both Spring Data JPA and Spring Data MongoDB share the same common infrastructure. You
could take the JPA example from earlier and, assuming that City is now a Mongo data class rather
than a JPA @Entity, it works in the same way, as shown in the following example:
package com.example.myapp.domain;
import org.springframework.data.domain.*;
import org.springframework.data.repository.*;
Tip
You can customize document scanning locations using the @EntityScan annotation.
Tip
For complete details of Spring Data MongoDB, including its rich object mapping technologies,
refer to the reference documentation.
Embedded Mongo
Spring Boot offers auto-configuration for Embedded Mongo. To use it in your Spring Boot application,
add a dependency on de.flapdoodle.embed:de.flapdoodle.embed.mongo.
The port that Mongo listens on can be configured by setting the spring.data.mongodb.port
property. To use a randomly allocated free port, use a value of 0. The MongoClient created by
MongoAutoConfiguration is automatically configured to use the randomly allocated port.
Note
If you do not configure a custom port, the embedded support uses a random port (rather than
27017) by default.
If you have SLF4J on the classpath, the output produced by Mongo is automatically routed to a logger
named org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongo.
You can declare your own IMongodConfig and IRuntimeConfig beans to take control of the Mongo
instances configuration and logging routing.
30.3 Neo4j
Neo4j is an open-source NoSQL graph database that uses a rich data model of nodes related
by first class relationships, which is better suited for connected big data than traditional rdbms
approaches. Spring Boot offers several conveniences for working with Neo4j, including the spring-
boot-starter-data-neo4j Starter.
@Component
public class MyBean {
@Autowired
public MyBean(Neo4jTemplate neo4jTemplate) {
this.neo4jTemplate = neo4jTemplate;
}
// ...
You can configure the user and credentials to use by setting the spring.data.neo4j.* properties,
as shown in the following example:
spring.data.neo4j.uri=http://my-server:7474
spring.data.neo4j.username=neo4j
spring.data.neo4j.password=secret
spring.data.neo4j.uri=file://var/tmp/graph.db
Note
The Neo4j OGM embedded driver does not provide the Neo4j kernel. Users are expected to
provide this dependency manually. See the documentation for more details.
Neo4jSession
By default, if you are running a web application, the session is bound to the thread for the entire
processing of the request (that is, it uses the "Open Session in View" pattern). If you do not want this
behavior, add the following line to your application.properties file:
spring.data.neo4j.open-in-view=false
In fact, both Spring Data JPA and Spring Data Neo4j share the same common infrastructure. You could
take the JPA example from earlier and, assuming that City is now a Neo4j OGM @NodeEntity rather
than a JPA @Entity, it works in the same way.
Tip
You can customize entity scanning locations by using the @EntityScan annotation.
To enable repository support (and optionally support for @Transactional), add the following two
annotations to your Spring configuration:
@EnableNeo4jRepositories(basePackages = "com.example.myapp.repository")
@EnableTransactionManagement
Repository Example
package com.example.myapp.domain;
import org.springframework.data.domain.*;
import org.springframework.data.repository.*;
Tip
For complete details of Spring Data Neo4j, including its rich object mapping technologies, refer
to the reference documentation.
30.4 Gemfire
Spring Data Gemfire provides convenient Spring-friendly tools for accessing the Pivotal Gemfire data
management platform. There is a spring-boot-starter-data-gemfire Starter for collecting the
dependencies in a convenient way. There is currently no auto-configuration support for Gemfire, but
you can enable Spring Data Repositories with a single annotation: @EnableGemfireRepositories.
30.5 Solr
Apache Solr is a search engine. Spring Boot offers basic auto-configuration for the Solr 5 client library
and the abstractions on top of it provided by Spring Data Solr. There is a spring-boot-starter-
data-solr Starter for collecting the dependencies in a convenient way.
Connecting to Solr
You can inject an auto-configured SolrClient instance as you would any other Spring bean. By
default, the instance tries to connect to a server at localhost:8983/solr. The following example
shows how to inject a Solr bean:
@Component
public class MyBean {
@Autowired
public MyBean(SolrClient solr) {
this.solr = solr;
}
// ...
If you add your own @Bean of type SolrClient, it replaces the default.
Spring Data includes repository support for Apache Solr. As with the JPA repositories discussed earlier,
the basic principle is that queries are constructed for you automatically based on method names.
In fact, both Spring Data JPA and Spring Data Solr share the same common infrastructure. So you could
take the JPA example from earlier and, assuming that City is now a @SolrDocument class rather
than a JPA @Entity, it works in the same way.
Tip
For complete details of Spring Data Solr, refer to the reference documentation.
30.6 Elasticsearch
Elasticsearch is an open source, distributed, real-time search and analytics engine. Spring Boot offers
basic auto-configuration for Elasticsearch and the abstractions on top of it provided by Spring Data
Elasticsearch. There is a spring-boot-starter-data-elasticsearch Starter for collecting the
dependencies in a convenient way. Spring Boot also supports Jest.
spring.elasticsearch.jest.uris=http://search.example.com:9200
spring.elasticsearch.jest.read-timeout=10000
spring.elasticsearch.jest.username=user
spring.elasticsearch.jest.password=secret
@Override
public void customize(HttpClientConfig.Builder builder) {
builder.maxTotalConnection(100).defaultMaxTotalConnectionPerRoute(5);
}
spring.data.elasticsearch.cluster-nodes=localhost:9300
@Component
public class MyBean {
// ...
If you add your own ElasticsearchTemplate or TransportClient @Bean, it replaces the default.
Spring Data includes repository support for Elasticsearch. As with the JPA repositories discussed earlier,
the basic principle is that queries are constructed for you automatically based on method names.
In fact, both Spring Data JPA and Spring Data Elasticsearch share the same common infrastructure. You
could take the JPA example from earlier and, assuming that City is now an Elasticsearch @Document
class rather than a JPA @Entity, it works in the same way.
Tip
For complete details of Spring Data Elasticsearch, refer to the reference documentation.
30.7 Cassandra
Cassandra is an open source, distributed database management system designed to handle large
amounts of data across many commodity servers. Spring Boot offers auto-configuration for Cassandra
and the abstractions on top of it provided by Spring Data Cassandra. There is a spring-boot-
starter-data-cassandra Starter for collecting the dependencies in a convenient way.
Connecting to Cassandra
spring.data.cassandra.keyspace-name=mykeyspace
spring.data.cassandra.contact-points=cassandrahost1,cassandrahost2
@Component
public class MyBean {
@Autowired
public MyBean(CassandraTemplate template) {
this.template = template;
}
// ...
If you add your own @Bean of type CassandraTemplate, it replaces the default.
Spring Data includes basic repository support for Cassandra. Currently, this is more limited than the
JPA repositories discussed earlier and needs to annotate finder methods with @Query.
Tip
For complete details of Spring Data Cassandra, refer to the reference documentation.
30.8 Couchbase
Couchbase is an open-source, distributed multi-model NoSQL document-oriented database that
is optimized for interactive applications. Spring Boot offers auto-configuration for Couchbase
and the abstractions on top of it provided by Spring Data Couchbase. There are a spring-
boot-starter-data-couchbase and spring-boot-starter-data-couchbase-reactive
Starters for collecting the dependencies in a convenient way.
Connecting to Couchbase
You can get a Bucket and Cluster by adding the Couchbase SDK and some configuration. The
spring.couchbase.* properties can be used to customize the connection. Generally, you provide
the bootstrap hosts, bucket name, and password, as shown in the following example:
spring.couchbase.bootstrap-hosts=my-host-1,192.168.1.123
spring.couchbase.bucket.name=my-bucket
spring.couchbase.bucket.password=secret
Tip
You need to provide at least the bootstrap host(s), in which case the bucket name
is default and the password is the empty String. Alternatively, you can define your
own org.springframework.data.couchbase.config.CouchbaseConfigurer @Bean
to take control over the whole configuration.
It is also possible to customize some of the CouchbaseEnvironment settings. For instance, the
following configuration changes the timeout to use to open a new Bucket and enables SSL support:
spring.couchbase.env.timeouts.connect=3000
spring.couchbase.env.ssl.key-store=/location/of/keystore.jks
spring.couchbase.env.ssl.key-store-password=secret
You can inject an auto-configured CouchbaseTemplate instance as you would with any other Spring
Bean, provided a default CouchbaseConfigurer is available (which happens when you enable
Couchbase support, as explained earlier).
@Component
public class MyBean {
@Autowired
public MyBean(CouchbaseTemplate template) {
this.template = template;
}
// ...
There are a few beans that you can define in your own configuration to override those provided by the
auto-configuration:
To avoid hard-coding those names in your own config, you can reuse BeanNames provided by Spring
Data Couchbase. For instance, you can customize the converters to use as follows:
@Configuration
public class SomeConfiguration {
@Bean(BeanNames.COUCHBASE_CUSTOM_CONVERSIONS)
public CustomConversions myCustomConversions() {
return new CustomConversions(...);
}
// ...
Tip
30.9 LDAP
LDAP (Lightweight Directory Access Protocol) is an open, vendor-neutral, industry standard application
protocol for accessing and maintaining distributed directory information services over an IP network.
Spring Boot offers auto-configuration for any compliant LDAP server as well as support for the
embedded in-memory LDAP server from UnboundID.
spring.ldap.urls=ldap://myserver:1235
spring.ldap.username=admin
spring.ldap.password=secret
If you need to customize connection settings, you can use the spring.ldap.base and
spring.ldap.base-environment properties.
You can also inject an auto-configured LdapTemplate instance as you would with any other Spring
Bean, as shown in the following example:
@Component
public class MyBean {
@Autowired
public MyBean(LdapTemplate template) {
this.template = template;
}
// ...
For testing purposes Spring Boot supports auto-configuration of an in-memory LDAP server from
UnboundID. To configure the server add a dependency to com.unboundid:unboundid-ldapsdk
and declare a base-dn property:
spring.ldap.embedded.base-dn=dc=spring,dc=io
By default, the server starts on a random port and triggers the regular LDAP support. There is no need
to specify a spring.ldap.urls property.
If there is a schema.ldif file on your classpath, it is used to initialize the server. If you want to load
the initialization script from a different resource, you can also use the spring.ldap.embedded.ldif
property.
By default, a standard schema is used to validate LDIF files, you can turn off validation altogether using
the spring.ldap.embedded.validation.enabled property. If you have custom attributes, you
can use spring.ldap.embedded.validation.schema to define your custom attribute types or
object classes.
30.10 InfluxDB
InfluxDB is an open-source time series database optimized for fast, high-availability storage and retrieval
of time series data in fields such as operations monitoring, application metrics, Internet-of-Things sensor
data, and real-time analytics.
Connecting to InfluxDB
Spring Boot auto-configures an InfluxDB instance, provided the influxdb-java client is on the
classpath and the URL of the database is set, as shown in the following example:
spring.influx.url=http://172.0.0.1:8086
If the connection to InfluxDB requires a user and password, you can set the spring.influx.user
and spring.influx.password properties accordingly.
InfluxDB relies on OkHttp. If you need to tune the http client InfluxDB uses behind the scenes, you
can register an OkHttpClient.Builder bean.
31. Caching
The Spring Framework provides support for transparently adding caching to an application. At its core,
the abstraction applies caching to methods, thus reducing the number of executions based on the
information available in the cache. The caching logic is applied transparently, without any interference to
the invoker. Spring Boot auto-configures the cache infrastructure as long as caching support is enabled
via the @EnableCaching annotation.
Note
Check the relevant section of the Spring Framework reference for more details.
In a nutshell, adding caching to an operation of your service is as easy as adding the relevant annotation
to its method, as shown in the following example:
import org.springframework.cache.annotation.Cacheable
import org.springframework.stereotype.Component;
@Component
public class MathService {
@Cacheable("piDecimals")
public int computePiDecimal(int i) {
// ...
}
This example demonstrates the use of caching on a potentially costly operation. Before invoking
computePiDecimal, the abstraction looks for an entry in the piDecimals cache that matches the i
argument. If an entry is found, the content in the cache is immediately returned to the caller, and the
method is not invoked. Otherwise, the method is invoked, and the cache is updated before returning
the value.
Caution
You can also use the standard JSR-107 (JCache) annotations (such as @CacheResult)
transparently. However, we strongly advise you to not mix and match the Spring Cache and
JCache annotations.
If you do not add any specific cache library, Spring Boot auto-configures a simple provider that uses
concurrent maps in memory. When a cache is required (such as piDecimals in the preceding
example), this provider creates it for you. The simple provider is not really recommended for production
usage, but it is great for getting started and making sure that you understand the features. When you
have made up your mind about the cache provider to use, please make sure to read its documentation
to figure out how to configure the caches that your application uses. Nearly all providers require you
to explicitly configure every cache that you use in the application. Some offer a way to customize the
default caches defined by the spring.cache.cache-names property.
Tip
Note
If you use the cache infrastructure with beans that are not interface-based, make sure to enable
the proxyTargetClass attribute of @EnableCaching.
If you have not defined a bean of type CacheManager or a CacheResolver named cacheResolver
(see CachingConfigurer), Spring Boot tries to detect the following providers (in the indicated order):
1. Generic
3. EhCache 2.x
4. Hazelcast
5. Infinispan
6. Couchbase
7. Redis
8. Caffeine
9. Simple
Tip
Tip
If the CacheManager is auto-configured by Spring Boot, you can further tune its configuration before it
is fully initialized by exposing a bean that implements the CacheManagerCustomizer interface. The
following example sets a flag to say that null values should be passed down to the underlying map:
@Bean
public CacheManagerCustomizer<ConcurrentMapCacheManager> cacheManagerCustomizer() {
return new CacheManagerCustomizer<ConcurrentMapCacheManager>() {
@Override
public void customize(ConcurrentMapCacheManager cacheManager) {
cacheManager.setAllowNullValues(false);
}
};
}
Note
Generic
Generic caching is used if the context defines at least one org.springframework.cache.Cache
bean. A CacheManager wrapping all beans of that type is created.
JCache (JSR-107)
JCache is bootstrapped via the presence of a javax.cache.spi.CachingProvider on the
classpath (that is, a JSR-107 compliant caching library exists on the classpath) and the
JCacheCacheManager provided by the spring-boot-starter-cache Starter. Various compliant
libraries are available, and Spring Boot provides dependency management for Ehcache 3, Hazelcast,
and Infinispan. Any other compliant library can be added as well.
It might happen that more than one provider is present, in which case the provider must be explicitly
specified. Even if the JSR-107 standard does not enforce a standardized way to define the location of
the configuration file, Spring Boot does its best to accommodate setting a cache with implementation
details, as shown in the following example:
Note
When a cache library offers both a native implementation and JSR-107 support, Spring Boot
prefers the JSR-107 support, so that the same features are available if you switch to a different
JSR-107 implementation.
Tip
org.springframework.boot.autoconfigure.cache.JCacheManagerCustomizer beans
are invoked with the reference of the CacheManager for full customization.
Tip
EhCache 2.x
EhCache 2.x is used if a file named ehcache.xml can be found at the root of the classpath. If EhCache
2.x is found, the EhCacheCacheManager provided by the spring-boot-starter-cache Starter
is used to bootstrap the cache manager. An alternate configuration file can be provided as well, as
shown in the following example:
spring.cache.ehcache.config=classpath:config/another-config.xml
Hazelcast
Spring Boot has general support for Hazelcast. If a HazelcastInstance has been auto-configured,
it is automatically wrapped in a CacheManager.
Infinispan
Infinispan has no default configuration file location, so it must be specified explicitly. Otherwise, the
default bootstrap is used.
spring.cache.infinispan.config=infinispan.xml
Note
The support of Infinispan in Spring Boot is restricted to the embedded mode and is quite basic.
If you want more options, you should use the official Infinispan Spring Boot starter instead. See
Infinispans documentation for more details.
Couchbase
If the Couchbase Java client and the couchbase-spring-cache implementation are available and
Couchbase is configured, a CouchbaseCacheManager is auto-configured. It is also possible to create
additional caches on startup by setting the spring.cache.cache-names property. These caches
operate on the Bucket that was auto-configured. You can also create additional caches on another
Bucket by using the customizer. Assume you need two caches (cache1 and cache2) on the "main"
Bucket and one cache3 cache with a custom time to live of 2 seconds on the "another" Bucket. You
can create the first two caches through configuration, as follows:
spring.cache.cache-names=cache1,cache2
Then you can define a @Configuration class to configure the extra Bucket and the cache3 cache,
as follows:
@Configuration
public class CouchbaseCacheConfiguration {
@Bean
public Bucket anotherBucket() {
return this.cluster.openBucket("another", "secret");
@Bean
public CacheManagerCustomizer<CouchbaseCacheManager> cacheManagerCustomizer() {
return c -> {
c.prepareCache("cache3", CacheBuilder.newInstance(anotherBucket())
.withExpiration(2));
};
}
This sample configuration reuses the Cluster that was created via auto-configuration.
Redis
If Redis is available and configured, a RedisCacheManager is auto-configured. It is possible to create
additional caches on startup by setting the spring.cache.cache-names property and cache defaults
can be configured using spring.cache.redis.* properties. For instance, the following configuration
creates cache1 and cache2 caches with a time to live of 10 minutes:
spring.cache.cache-names=cache1,cache2
spring.cache.redis.time-to-live=600000
Note
By default, a key prefix is added so that, if two separate caches use the same key, Redis does
not have overlapping keys and cannot return invalid values. We strongly recommend keeping this
setting enabled if you create your own RedisCacheManager.
Caffeine
Caffeine is a Java 8 rewrite of Guavas cache that supersedes support for Guava. If Caffeine is
present, a CaffeineCacheManager (provided by the spring-boot-starter-cache Starter) is
auto-configured. Caches can be created on startup by setting the spring.cache.cache-names
property and can be customized by one of the following (in the indicated order):
For instance, the following configuration creates cache1 and cache2 caches with a maximum size of
500 and a time to live of 10 minutes
spring.cache.cache-names=cache1,cache2
spring.cache.caffeine.spec=maximumSize=500,expireAfterAccess=600s
Simple
If none of the other providers can be found, a simple implementation using a ConcurrentHashMap as
the cache store is configured. This is the default if no caching library is present in your application. By
default, caches are created as needed, but you can restrict the list of available caches by setting the
cache-names property. For instance, if you want only cache1 and cache2 caches, set the cache-
names property as follows:
spring.cache.cache-names=cache1,cache2
If you do so and your application uses a cache not listed, then it fails at runtime when the cache is
needed, but not on startup. This is similar to the way the "real" cache providers behave if you use an
undeclared cache.
None
spring.cache.type=none
32. Messaging
The Spring Framework provides extensive support for integrating with messaging systems, from
simplified use of the JMS API using JmsTemplate to a complete infrastructure to receive messages
asynchronously. Spring AMQP provides a similar feature set for the Advanced Message Queuing
Protocol. Spring Boot also provides auto-configuration options for RabbitTemplate and RabbitMQ.
Spring WebSocket natively includes support for STOMP messaging, and Spring Boot has support for
that through starters and a small amount of auto-configuration. Spring Boot also has support for Apache
Kafka.
32.1 JMS
The javax.jms.ConnectionFactory interface provides a standard method of creating
a javax.jms.Connection for interacting with a JMS broker. Although Spring needs a
ConnectionFactory to work with JMS, you generally need not use it directly yourself and can
instead rely on higher level messaging abstractions. (See the relevant section of the Spring Framework
reference documentation for details.) Spring Boot also auto-configures the necessary infrastructure to
send and receive messages.
ActiveMQ Support
When ActiveMQ is available on the classpath, Spring Boot can also configure a ConnectionFactory.
If the broker is present, an embedded broker is automatically started and configured (provided no broker
URL is specified through configuration).
Note
spring.activemq.broker-url=tcp://192.168.1.210:9876
spring.activemq.user=admin
spring.activemq.password=secret
spring.activemq.pool.enabled=true
spring.activemq.pool.max-connections=50
Tip
See ActiveMQProperties for more of the supported options. You can also register an
arbitrary number of beans that implement ActiveMQConnectionFactoryCustomizer for
more advanced customizations.
By default, ActiveMQ creates a destination if it does not yet exist so that destinations are resolved
against their provided names.
Artemis Support
Spring Boot can auto-configure a ConnectionFactory when it detects that Artemis is available on the
classpath. If the broker is present, an embedded broker is automatically started and configured (unless
the mode property has been explicitly set). The supported modes are embedded (to make explicit that
an embedded broker is required and that an error should occur if the broker is not available on the
classpath) and native (to connect to a broker using the netty transport protocol). When the latter is
configured, Spring Boot configures a ConnectionFactory that connects to a broker running on the
local machine with the default settings.
Note
spring.artemis.mode=native
spring.artemis.host=192.168.1.210
spring.artemis.port=9876
spring.artemis.user=admin
spring.artemis.password=secret
When embedding the broker, you can choose if you want to enable persistence and list
the destinations that should be made available. These can be specified as a comma-
separated list to create them with the default options, or you can define bean(s)
of type org.apache.activemq.artemis.jms.server.config.JMSQueueConfiguration or
org.apache.activemq.artemis.jms.server.config.TopicConfiguration, for advanced
queue and topic configurations, respectively.
No JNDI lookup is involved, and destinations are resolved against their names, using either the name
attribute in the Artemis configuration or the names provided through configuration.
If you are running your application in an application server, Spring Boot tries to locate
a JMS ConnectionFactory by using JNDI. By default, the java:/JmsXA and java:/
XAConnectionFactory location are checked. You can use the spring.jms.jndi-name property
if you need to specify an alternative location, as shown in the following example:
spring.jms.jndi-name=java:/MyConnectionFactory
Sending a Message
Springs JmsTemplate is auto-configured, and you can autowire it directly into your own beans, as
shown in the following example:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.stereotype.Component;
@Component
public class MyBean {
@Autowired
public MyBean(JmsTemplate jmsTemplate) {
this.jmsTemplate = jmsTemplate;
}
// ...
Note
Receiving a Message
When the JMS infrastructure is present, any bean can be annotated with @JmsListener to create
a listener endpoint. If no JmsListenerContainerFactory has been defined, a default one is
configured automatically. If a DestinationResolver or a MessageConverter beans is defined, it
is associated automatically to the default factory.
@Component
public class MyBean {
@JmsListener(destination = "someQueue")
public void processMessage(String content) {
// ...
}
Tip
If you need to create more JmsListenerContainerFactory instances or if you want to override the
default, Spring Boot provides a DefaultJmsListenerContainerFactoryConfigurer that you
can use to initialize a DefaultJmsListenerContainerFactory with the same settings as the one
that is auto-configured.
For instance, the following example exposes another factory that uses a specific MessageConverter:
@Configuration
static class JmsConfiguration {
@Bean
public DefaultJmsListenerContainerFactory myFactory(
DefaultJmsListenerContainerFactoryConfigurer configurer) {
DefaultJmsListenerContainerFactory factory =
new DefaultJmsListenerContainerFactory();
configurer.configure(factory, connectionFactory());
factory.setMessageConverter(myMessageConverter());
return factory;
}
Then you can use the factory in any @JmsListener-annotated method as follows:
@Component
public class MyBean {
32.2 AMQP
The Advanced Message Queuing Protocol (AMQP) is a platform-neutral, wire-level protocol for
message-oriented middleware. The Spring AMQP project applies core Spring concepts to the
development of AMQP-based messaging solutions. Spring Boot offers several conveniences for working
with AMQP through RabbitMQ, including the spring-boot-starter-amqp Starter.
RabbitMQ support
RabbitMQ is a lightweight, reliable, scalable, and portable message broker based on the AMQP protocol.
Spring uses RabbitMQ to communicate through the AMQP protocol.
spring.rabbitmq.host=localhost
spring.rabbitmq.port=5672
spring.rabbitmq.username=admin
spring.rabbitmq.password=secret
Tip
See Understanding AMQP, the protocol used by RabbitMQ for more details.
Sending a Message
Springs AmqpTemplate and AmqpAdmin are auto-configured, and you can autowire them directly into
your own beans, as shown in the following example:
import org.springframework.amqp.core.AmqpAdmin;
import org.springframework.amqp.core.AmqpTemplate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class MyBean {
@Autowired
public MyBean(AmqpAdmin amqpAdmin, AmqpTemplate amqpTemplate) {
this.amqpAdmin = amqpAdmin;
this.amqpTemplate = amqpTemplate;
}
// ...
Note
To retry operations, you can enable retries on the AmqpTemplate (for example, in the event that the
broker connection is lost). Retries are disabled by default.
Receiving a Message
When the Rabbit infrastructure is present, any bean can be annotated with @RabbitListener to
create a listener endpoint. If no RabbitListenerContainerFactory has been defined, a default
SimpleRabbitListenerContainerFactory is automatically configured and you can switch to a
direct container using the spring.rabbitmq.listener.type property. If a MessageConverter
or a MessageRecoverer bean is defined, it is automatically associated with the default factory.
The following sample component creates a listener endpoint on the someQueue queue:
@Component
public class MyBean {
@RabbitListener(queues = "someQueue")
public void processMessage(String content) {
// ...
}
Tip
Tip
It does not matter which container type you chose. Those two beans are exposed by the auto-
configuration.
For instance, the following configuration class exposes another factory that uses a specific
MessageConverter:
@Configuration
static class RabbitConfiguration {
@Bean
public SimpleRabbitListenerContainerFactory myFactory(
SimpleRabbitListenerContainerFactoryConfigurer configurer) {
SimpleRabbitListenerContainerFactory factory =
new SimpleRabbitListenerContainerFactory();
configurer.configure(factory, connectionFactory);
factory.setMessageConverter(myMessageConverter());
return factory;
}
Then you can use the factory in any @RabbitListener-annotated method as follows:
@Component
public class MyBean {
You can enable retries to handle situations where your listener throws an exception. By default,
RejectAndDontRequeueRecoverer is used, but you can define a MessageRecoverer of your own.
When retries are exhausted, the message is rejected and either dropped or routed to a dead-letter
exchange if the broker is configured to do so. By default, retries are disabled.
Important
By default, if retries are disabled and the listener throws an exception, the
delivery is retried indefinitely. You can modify this behavior in two ways: Set the
defaultRequeueRejected property to false so that zero re-deliveries are attempted or throw
an AmqpRejectAndDontRequeueException to signal the message should be rejected. The
latter is the mechanism used when retries are enabled and the maximum delivery attempts are
reached.
spring.kafka.bootstrap-servers=localhost:9092
spring.kafka.consumer.group-id=myGroup
Tip
To create a topic on startup, add a bean of type NewTopic. If the topic already exists, the bean
is ignored.
Sending a Message
Springs KafkaTemplate is auto-configured, and you can autowire it directly in your own beans, as
shown in the following example:
@Component
public class MyBean {
@Autowired
public MyBean(KafkaTemplate kafkaTemplate) {
this.kafkaTemplate = kafkaTemplate;
}
// ...
Note
Receiving a Message
When the Apache Kafka infrastructure is present, any bean can be annotated with @KafkaListener
to create a listener endpoint. If no KafkaListenerContainerFactory has been defined, a
default one is automatically configured with keys defined in spring.kafka.listener.*. Also, if a
RecordMessageConverter bean is defined, it is automatically associated to the default factory.
@Component
public class MyBean {
@KafkaListener(topics = "someTopic")
public void processMessage(String content) {
// ...
}
The first few of these properties apply to both producers and consumers but can be specified at the
producer or consumer level if you wish to use different values for each. Apache Kafka designates
properties with an importance of HIGH, MEDIUM, or LOW. Spring Boot auto-configuration supports all
HIGH importance properties, some selected MEDIUM and LOW properties, and any properties that do
not have a default value.
Only a subset of the properties supported by Kafka are available through the KafkaProperties
class. If you wish to configure the producer or consumer with additional properties that are not directly
supported, use the following properties:
spring.kafka.properties.foo.bar=baz
spring.kafka.consumer.properties.fiz.buz=qux
spring,kafka.producer.properties.baz.qux=fiz
This sets the common foo.bar Kafka property to baz (applies to both producers and consumers), the
consumer fiz.buz property to qux and the baz.qux producer property to fiz.
Important
Properties set in this way override any configuration item that Spring Boot explicitly supports.
@Service
public class MyService {
Tip
To make the scope of any customizations as narrow as possible, inject the auto-configured
RestTemplateBuilder and then call its methods as required. Each method call returns a new
RestTemplateBuilder instance, so the customizations only affect this use of the builder.
The following example shows a customizer that configures the use of a proxy for all hosts except
192.168.0.5:
@Override
public void customize(RestTemplate restTemplate) {
HttpHost proxy = new HttpHost("proxy.example.com");
HttpClient httpClient = HttpClientBuilder.create()
.setRoutePlanner(new DefaultProxyRoutePlanner(proxy) {
@Override
public HttpHost determineProxy(HttpHost target,
}).build();
restTemplate.setRequestFactory(
new HttpComponentsClientHttpRequestFactory(httpClient));
}
Finally, the most extreme (and rarely used) option is to create your own RestTemplateBuilder
bean. Doing so switches off the auto-configuration of a RestTemplateBuilder and prevents any
RestTemplateCustomizer beans from being used.
Spring Boot creates and pre-configures such a builder for you. For example, client HTTP codecs are
configured in the same fashion as the server ones (see WebFlux HTTP codecs auto-configuration).
@Service
public class MyService {
To make the scope of any customizations as narrow as possible, inject the auto-configured
WebClient.Builder and then call its methods as required. WebClient.Builder instances are
stateful: Any change on the builder is reflected in all clients subsequently created with it. If you
want to create several clients with the same builder, you can also consider cloning the builder with
WebClient.Builder other = builder.clone();.
Finally, you can fall back to the original API and use WebClient.create(). In that case, no auto-
configuration or WebClientCustomizer is applied.
35. Validation
The method validation feature supported by Bean Validation 1.1 is automatically enabled as long as
a JSR-303 implementation (such as Hibernate validator) is on the classpath. This lets bean methods
be annotated with javax.validation constraints on their parameters and/or on their return value.
Target classes with such annotated methods need to be annotated with the @Validated annotation at
the type level for their methods to be searched for inline constraint annotations.
For instance, the following service triggers the validation of the first argument, making sure its size is
between 8 and 10:
@Service
@Validated
public class MyBean {
Tip
See the reference documentation for a detailed explanation of how you can use
JavaMailSender.
In particular, certain default timeout values are infinite, and you may want to change that to avoid having
a thread blocked by an unresponsive mail server, as shown in the following example:
spring.mail.properties.mail.smtp.connectiontimeout=5000
spring.mail.properties.mail.smtp.timeout=3000
spring.mail.properties.mail.smtp.writetimeout=5000
By default Atomikos transaction logs are written to a transaction-logs directory in your application
home directory (the directory in which your application jar file resides). You can customize this directory
by setting a spring.jta.log-dir property in your application.properties file. Properties
starting with spring.jta.atomikos.properties can also be used to customize the Atomikos
UserTransactionServiceImp. See the AtomikosProperties Javadoc for complete details.
Note
To ensure that multiple transaction managers can safely coordinate the same resource managers,
each Atomikos instance must be configured with a unique ID. By default, this ID is the IP address
of the machine on which Atomikos is running. To ensure uniqueness in production, you should
configure the spring.jta.transaction-manager-id property with a different value for each
instance of your application.
By default, Bitronix transaction log files (part1.btm and part2.btm) are written to a transaction-
logs directory in your application home directory. You can customize this directory by setting the
spring.jta.log-dir property. Properties starting with spring.jta.bitronix.properties are
also bound to the bitronix.tm.Configuration bean, allowing for complete customization. See the
Bitronix documentation for details.
Note
To ensure that multiple transaction managers can safely coordinate the same resource managers,
each Bitronix instance must be configured with a unique ID. By default, this ID is the IP address
of the machine on which Bitronix is running. To ensure uniqueness in production, you should
By default, Narayana transaction logs are written to a transaction-logs directory in your application
home directory (the directory in which your application jar file resides). You can customize this directory
by setting a spring.jta.log-dir property in your application.properties file. Properties
starting with spring.jta.narayana.properties can also be used to customize the Narayana
configuration. See the NarayanaProperties Javadoc for complete details.
Note
To ensure that multiple transaction managers can safely coordinate the same resource managers,
each Narayana instance must be configured with a unique ID. By default, this ID is set to 1.
To ensure uniqueness in production, you should configure the spring.jta.transaction-
manager-id property with a different value for each instance of your application.
// Inject the XA aware ConnectionFactory (uses the alias and injects the same as above)
@Autowired
@Qualifier("xaJmsConnectionFactory")
private ConnectionFactory xaConnectionFactory;
38. Hazelcast
If Hazelcast is on the classpath and a suitable configuration is found, Spring Boot auto-configures a
HazelcastInstance that you can inject in your application.
If you define a com.hazelcast.config.Config bean, Spring Boot uses that. If your configuration
defines an instance name, Spring Boot tries to locate an existing instance rather than creating a new one.
You could also specify the hazelcast.xml configuration file to use via configuration, as shown in the
following example:
spring.hazelcast.config=classpath:config/my-hazelcast.xml
Otherwise, Spring Boot tries to find the Hazelcast configuration from the default locations:
hazelcast.xml in the working directory or at the root of the classpath. We also check if the
hazelcast.config system property is set. See the Hazelcast documentation for more details.
If hazelcast-client is present on the classpath, Spring Boot first attempts to create a client by
checking the following configuration options:
Note
Spring Boot also has explicit caching support for Hazelcast. If caching is enabled, the
HazelcastInstance is automatically wrapped in a CacheManager implementation.
Beans of the following types are automatically picked up and associated with the Scheduler:
JobDetail: defines a particular Job. JobDetail instances can be built with the JobBuilder API.
Calendar.
spring.quartz.job-store-type=jdbc
When the jdbc store is used, the schema can be initialized on startup, as shown in the following example:
spring.quartz.jdbc.initialize-schema=true
Note
By default, the database is detected and initialized by using the standard scripts provided
with the Quartz library. It is also possible to provide a custom script by setting the
spring.quartz.jdbc.schema property.
Jobs can define setters to inject data map properties. Regular beans can also be injected in a similar
manner, as shown in the following example:
@Override
protected void executeInternal(JobExecutionContext context)
throws JobExecutionException {
...
}
Spring Boot also configures some features that are triggered by the presence of additional Spring
Integration modules. If 'spring-integration-jmx' is also on the classpath, message processing
statistics are published over JMX . If 'spring-integration-jdbc' is available, the default database
schema can be created on startup, as shown in the following line:
spring.integration.jdbc.initialize-schema=always
JDBC
Redis
Hazelcast
MongoDB
When building a reactive web application, the following stores can be auto-configured:
Redis
MongoDB
If Spring Session is available, you must choose the StoreType that you wish to use to store the
sessions. For instance, to use JDBC as the back-end store, you can configure your application as
follows:
spring.session.store-type=jdbc
Tip
Each store has specific additional settings. For instance, it is possible to customize the name of the
table for the JDBC store, as shown in the following example:
spring.session.jdbc.table-name=SESSIONS
43. Testing
Spring Boot provides a number of utilities and annotations to help when testing your application. Test
support is provided by two modules; spring-boot-test contains core items, and spring-boot-
test-autoconfigure supports auto-configuration for tests.
Most developers use the spring-boot-starter-test Starter, which imports both Spring Boot test
modules as well as JUnit, AssertJ, Hamcrest, and a number of other useful libraries.
Spring Test & Spring Boot Test: Utilities and integration test support for Spring Boot applications.
We generally find these common libraries to be useful when writing tests. If these libraries do not suit
your needs, you can add additional test dependencies of your own.
Often, you need to move beyond unit testing and start integration testing (with a Spring
ApplicationContext). It is useful to be able to perform integration testing without requiring
deployment of your application or needing to connect to other infrastructure.
The Spring Framework includes a dedicated test module for such integration testing. You can
declare a dependency directly to org.springframework:spring-test or use the spring-boot-
starter-test Starter to pull it in transitively.
If you have not used the spring-test module before, you should start by reading the relevant section
of the Spring Framework reference documentation.
You can use the webEnvironment attribute of @SpringBootTest to further refine how your tests run:
NONE: Loads an ApplicationContext by using SpringApplication but does not provide any
servlet environment (mock or otherwise).
Note
If your test is @Transactional, it rolls back the transaction at the end of each test method
by default. However, as using this arrangement with either RANDOM_PORT or DEFINED_PORT
implicitly provides a real servlet environment, the HTTP client and server run in separate threads
and, thus, in separate transactions. Any transaction initiated on the server does not roll back in
this case.
Note
In addition to @SpringBootTest, a number of other annotations are also provided for testing
more specific slices of an application. You can find more detail later in this document.
Tip
If you are familiar with the Spring Test Framework, you may be used to using
@ContextConfiguration(classes=) in order to specify which Spring @Configuration to load.
Alternatively, you might have often used nested @Configuration classes within your test.
When testing Spring Boot applications, this is often not required. Spring Boots @*Test annotations
search for your primary configuration automatically whenever you do not explicitly define one.
The search algorithm works up from the package that contains the test until it finds a class annotated
with @SpringBootApplication or @SpringBootConfiguration. As long as you structured your
code in a sensible way, your main configuration is usually found.
Note
If you use a test annotation to test a more specific slice of your application, you should avoid adding
configuration settings that are specific to a particular area on the main methods application class.
If you want to customize the primary configuration, you can use a nested @TestConfiguration class.
Unlike a nested @Configuration class, which would be used instead of your applications primary
configuration, a nested @TestConfiguration class is used in addition to your applications primary
configuration.
Note
Springs test framework caches application contexts between tests. Therefore, as long as your
tests share the same configuration (no matter how its discovered), the potentially time-consuming
process of loading the context happens only once.
If your application uses component scanning, for example if you use @SpringBootApplication
or @ComponentScan, you may find top-level configuration classes created only for specific tests
accidentally get picked up everywhere.
As we have seen earlier, @TestConfiguration can be used on an inner class of a test to customize
the primary configuration. When placed on a top-level class, @TestConfiguration indicates that
classes in src/test/java should not be picked up by scanning. You can then import that class
explicitly where it is required, as shown in the following example:
@RunWith(SpringRunner.class)
@SpringBootTest
@Import(MyTestsConfiguration.class)
public class MyTests {
@Test
public void exampleTest() {
...
}
Note
If you directly use @ComponentScan (that is, not through @SpringBootApplication) you
need to register the TypeExcludeFilter with it. See the Javadoc for details.
If you need to start a full running server for tests, we recommend that you use random ports. If you
use @SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT), an available port
is picked at random each time your test runs.
The @LocalServerPort annotation can be used to inject the actual port used into your test. For
convenience, tests that need to make REST calls to the started server can additionally @Autowire
a TestRestTemplate, which resolves relative links to the running server, as shown in the following
example:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
import org.springframework.boot.test.web.client.TestRestTemplate;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
public class RandomPortExampleTests {
@Autowired
private TestRestTemplate restTemplate;
@Test
public void exampleTest() {
String body = this.restTemplate.getForObject("/", String.class);
assertThat(body).isEqualTo("Hello World");
}
When running tests, it is sometimes necessary to mock certain components within your application
context. For example, you may have a facade over some remote service that is unavailable during
development. Mocking can also be useful when you want to simulate failures that might be hard to
trigger in a real environment.
Spring Boot includes a @MockBean annotation that can be used to define a Mockito mock for a bean
inside your ApplicationContext. You can use the annotation to add new beans or replace a single
existing bean definition. The annotation can be used directly on test classes, on fields within your test,
or on @Configuration classes and fields. When used on a field, the instance of the created mock is
also injected. Mock beans are automatically reset after each test method.
Note
If your test uses one of Spring Boots test annotations (such as @SpringBootTest), this feature
is automatically enabled. To use this feature with a different arrangement, a listener need to be
explicitly added, as shown in the following example:
@TestExecutionListeners(MockitoTestExecutionListener.class)
The following example replaces an existing RemoteService bean with a mock implementation:
import org.junit.*;
import org.junit.runner.*;
import org.springframework.beans.factory.annotation.*;
import org.springframework.boot.test.context.*;
import org.springframework.boot.test.mock.mockito.*;
import org.springframework.test.context.junit4.*;
@RunWith(SpringRunner.class)
@SpringBootTest
public class MyTests {
@MockBean
private RemoteService remoteService;
@Autowired
private Reverser reverser;
@Test
public void exampleTest() {
// RemoteService has been injected into the reverser bean
given(this.remoteService.someCall()).willReturn("mock");
String reverse = reverser.reverseSomeCall();
assertThat(reverse).isEqualTo("kcom");
}
Additionally, you can use @SpyBean to wrap any existing bean with a Mockito spy. See the Javadoc
for full details.
Auto-configured Tests
Spring Boots auto-configuration system works well for applications but can sometimes be a little too
much for tests. It often helps to load only the parts of the configuration that are required to test a slice
of your application. For example, you might want to test that Spring MVC controllers are mapping URLs
correctly, and you dont want to involve database calls in those tests, or you might want to test JPA
entities, and you are not interested in the web layer when those tests run.
Note
Each slice loads a very restricted set of auto-configuration classes. If you need to exclude
one of them, most @Test annotations provide an excludeAutoConfiguration attribute.
Alternatively, you can use @ImportAutoConfiguration#exclude.
Tip
To test that object JSON serialization and deserialization is working as expected you can use the
@JsonTest annotation. @JsonTest auto-configures the available supported JSON mapper, which can
be one of the following libraries:
Gson
Jsonb
If you need to configure elements of the auto-configuration, you can use the
@AutoConfigureJsonTesters annotation.
Spring Boot includes AssertJ-based helpers that work with the JSONassert and JsonPath libraries
to check that JSON is as expected. The JacksonTester, GsonTester, JsonbTester, and
BasicJsonTester classes can be used for Jackson, Gson, Jsonb, and Strings respectively. Any
helper fields on the test class can be @Autowired when using @JsonTest. The following example
shows a test class for Jackson:
import org.junit.*;
import org.junit.runner.*;
import org.springframework.beans.factory.annotation.*;
import org.springframework.boot.test.autoconfigure.json.*;
import org.springframework.boot.test.context.*;
import org.springframework.boot.test.json.*;
import org.springframework.test.context.junit4.*;
@RunWith(SpringRunner.class)
@JsonTest
public class MyJsonTests {
@Autowired
private JacksonTester<VehicleDetails> json;
@Test
public void testSerialize() throws Exception {
VehicleDetails details = new VehicleDetails("Honda", "Civic");
// Assert against a `.json` file in the same package as the test
assertThat(this.json.write(details)).isEqualToJson("expected.json");
// Or use JSON path based assertions
assertThat(this.json.write(details)).hasJsonPathStringValue("@.make");
assertThat(this.json.write(details)).extractingJsonPathStringValue("@.make")
.isEqualTo("Honda");
}
@Test
public void testDeserialize() throws Exception {
String content = "{\"make\":\"Ford\",\"model\":\"Focus\"}";
assertThat(this.json.parse(content))
.isEqualTo(new VehicleDetails("Ford", "Focus"));
assertThat(this.json.parseObject(content).getMake()).isEqualTo("Ford");
}
Note
JSON helper classes can also be used directly in standard unit tests. Simply call the initFields
method of the helper in your @Before method if you do not use @JsonTest.
A list of the auto-configuration that is enabled by @JsonTest can be found in the appendix.
To test Spring MVC controllers are working as expected, you can use the @WebMvcTest
annotation. @WebMvcTest auto-configures the Spring MVC infrastructure and limits scanned beans
to @Controller, @ControllerAdvice, @JsonComponent, Converter, GenericConverter,
Filter, WebMvcConfigurer, and HandlerMethodArgumentResolver. Regular @Component
beans are not scanned when using this annotation.
Tip
If you need to register extra components such as Jackson Module, you can import additional
configuration classes using @Import on your test.
Often, @WebMvcTest is limited to a single controller and is used in combination with @MockBean to
provide mock implementations for required collaborators.
@WebMvcTest also auto-configures MockMvc. Mock MVC offers a powerful way to quickly test MVC
controllers without needing to start a full HTTP server.
Tip
import org.junit.*;
import org.junit.runner.*;
import org.springframework.beans.factory.annotation.*;
import org.springframework.boot.test.autoconfigure.web.servlet.*;
import org.springframework.boot.test.mock.mockito.*;
@RunWith(SpringRunner.class)
@WebMvcTest(UserVehicleController.class)
public class MyControllerTests {
@Autowired
private MockMvc mvc;
@MockBean
private UserVehicleService userVehicleService;
@Test
public void testExample() throws Exception {
given(this.userVehicleService.getVehicleDetails("sboot"))
.willReturn(new VehicleDetails("Honda", "Civic"));
this.mvc.perform(get("/sboot/vehicle").accept(MediaType.TEXT_PLAIN))
.andExpect(status().isOk()).andExpect(content().string("Honda Civic"));
}
Tip
If you need to configure elements of the auto-configuration (for example, when servlet filters should
be applied) you can use attributes in the @AutoConfigureMockMvc annotation.
If you use HtmlUnit or Selenium, auto-configuration also provides an HTMLUnit WebClient bean and/
or a WebDriver bean. The following example uses HtmlUnit:
import com.gargoylesoftware.htmlunit.*;
import org.junit.*;
import org.junit.runner.*;
import org.springframework.beans.factory.annotation.*;
import org.springframework.boot.test.autoconfigure.web.servlet.*;
import org.springframework.boot.test.mock.mockito.*;
@RunWith(SpringRunner.class)
@WebMvcTest(UserVehicleController.class)
public class MyHtmlUnitTests {
@Autowired
private WebClient webClient;
@MockBean
private UserVehicleService userVehicleService;
@Test
public void testExample() throws Exception {
given(this.userVehicleService.getVehicleDetails("sboot"))
.willReturn(new VehicleDetails("Honda", "Civic"));
HtmlPage page = this.webClient.getPage("/sboot/vehicle.html");
assertThat(page.getBody().getTextContent()).isEqualTo("Honda Civic");
}
Note
By default, Spring Boot puts WebDriver beans in a special scope to ensure that the driver is
quit after each test and that a new instance is injected. If you do not want this behavior, you can
add @Scope("singleton") to your WebDriver @Bean definition.
A list of the auto-configuration settings that are enabled by @WebMvcTest can be found in the appendix.
Tip
If you need to register extra components such as Jackson Module, you can import additional
configuration classes using @Import on your test.
Often, @WebFluxTest is limited to a single controller and used in combination with the @MockBean
annotation to provide mock implementations for required collaborators.
@WebFluxTest also auto-configures WebTestClient, which offers a powerful way to quickly test
WebFlux controllers without needing to start a full HTTP server.
Tip
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.reactive.WebFluxTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.reactive.server.WebTestClient;
@RunWith(SpringRunner.class)
@WebFluxTest(UserVehicleController.class)
public class MyControllerTests {
@Autowired
private WebTestClient webClient;
@MockBean
private UserVehicleService userVehicleService;
@Test
public void testExample() throws Exception {
given(this.userVehicleService.getVehicleDetails("sboot"))
.willReturn(new VehicleDetails("Honda", "Civic"));
this.webClient.get().uri("/sboot/vehicle").accept(MediaType.TEXT_PLAIN)
.exchange()
.expectStatus().isOk()
.expectBody(String.class).isEqualTo("Honda Civic");
}
A list of the auto-configuration that is enabled by @WebFluxTest can be found in the appendix.
You can use the @DataJpaTest annotation to test JPA applications. By default, it configures an in-
memory embedded database, scans for @Entity classes, and configures Spring Data JPA repositories.
Regular @Component beans are not loaded into the ApplicationContext.
By default, data JPA tests are transactional and roll back at the end of each test. See the relevant section
in the Spring Framework Reference Documentation for more details. If that is not what you want, you
can disable transaction management for a test or for the whole class as follows:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
@RunWith(SpringRunner.class)
@DataJpaTest
@Transactional(propagation = Propagation.NOT_SUPPORTED)
public class ExampleNonTransactionalTests {
Data JPA tests may also inject a TestEntityManager bean, which provides an alternative
to the standard JPA EntityManager that is specifically designed for tests. If you want
to use TestEntityManager outside of @DataJpaTest instances, you can also use the
@AutoConfigureTestEntityManager annotation. A JdbcTemplate is also available if you need
that. The following example shows the @DataJpaTest annotation in use:
import org.junit.*;
import org.junit.runner.*;
import org.springframework.boot.test.autoconfigure.orm.jpa.*;
@RunWith(SpringRunner.class)
@DataJpaTest
public class ExampleRepositoryTests {
@Autowired
private TestEntityManager entityManager;
@Autowired
private UserRepository repository;
@Test
public void testExample() throws Exception {
this.entityManager.persist(new User("sboot", "1234"));
User user = this.repository.findByUsername("sboot");
assertThat(user.getUsername()).isEqualTo("sboot");
assertThat(user.getVin()).isEqualTo("1234");
}
In-memory embedded databases generally work well for tests, since they are fast and do not require
any installation. If, however, you prefer to run tests against a real database you can use the
@AutoConfigureTestDatabase annotation, as shown in the following example:
@RunWith(SpringRunner.class)
@DataJpaTest
@AutoConfigureTestDatabase(replace=Replace.NONE)
public class ExampleRepositoryTests {
// ...
A list of the auto-configuration settings that are enabled by @DataJpaTest can be found in the
appendix.
@JdbcTest is similar to @DataJpaTest but for pure JDBC-related tests. By default, it also configures
an in-memory embedded database and a JdbcTemplate. Regular @Component beans are not loaded
into the ApplicationContext.
By default, JDBC tests are transactional and roll back at the end of each test. See the relevant section
in the Spring Framework Reference Documentation for more details. If that is not what you want, you
can disable transaction management for a test or for the whole class as follows:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.autoconfigure.jdbc.JdbcTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
@RunWith(SpringRunner.class)
@JdbcTest
@Transactional(propagation = Propagation.NOT_SUPPORTED)
public class ExampleNonTransactionalTests {
If you prefer your test to run against a real database, you can use the @AutoConfigureTestDatabase
annotation in the same way as for DataJpaTest. (See the section called Auto-configured Data JPA
Tests.)
A list of the auto-configuration that is enabled by @JdbcTest can be found in the appendix.
You can use @JooqTest in a similar fashion as @JdbcTest but for jOOQ-related tests. As
jOOQ relies heavily on a Java-based schema that corresponds with the database schema, the
existing DataSource is used. If you want to replace it with an in-memory database, you can use
@AutoconfigureTestDatabase to override those settings.
@JooqTest configures a DSLContext. Regular @Component beans are not loaded into the
ApplicationContext. The following example shows the @JooqTest annotation in use:
import org.jooq.DSLContext;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.autoconfigure.jooq.JooqTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@JooqTest
public class ExampleJooqTests {
@Autowired
private DSLContext dslContext;
}
JOOQ tests are transactional and roll back at the end of each test by default. If that is not what you
want, you can disable transaction management for a test or for the whole test class as shown in the
JDBC example.
A list of the auto-configuration that is enabled by @JooqTest can be found in the appendix.
You can use @DataMongoTest to test MongoDB applications. By default, it configures an in-memory
embedded MongoDB (if available), configures a MongoTemplate, scans for @Document classes, and
configures Spring Data MongoDB repositories. Regular @Component beans are not loaded into the
ApplicationContext. The following class shows the @DataMongoTest annotation in use:
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest;
import org.springframework.data.mongodb.core.MongoTemplate;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@DataMongoTest
public class ExampleDataMongoTests {
@Autowired
private MongoTemplate mongoTemplate;
//
}
In-memory embedded MongoDB generally works well for tests, since it is fast and does not require any
developer installation. If, however, you prefer to run tests against a real MongoDB server, you should
exclude the embedded MongoDB auto-configuration, as shown in the following example:
import org.junit.runner.RunWith;
import org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration;
import org.springframework.boot.test.autoconfigure.data.mongo.DataMongoTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@DataMongoTest(excludeAutoConfiguration = EmbeddedMongoAutoConfiguration.class)
public class ExampleDataMongoNonEmbeddedTests {
A list of the auto-configuration settings that are enabled by @DataMongoTest can be found in the
appendix.
You can use @DataNeo4jTest to test Neo4j applications. By default, it uses an in-memory embedded
Neo4j (if the embedded driver is available), scans for @NodeEntity classes, and configures Spring
Data Neo4j repositories. Regular @Component beans are not loaded into the ApplicationContext:
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.data.neo4j.DataNeo4jTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@DataNeo4jTest
public class ExampleDataNeo4jTests {
@Autowired
private YourRepository repository;
//
}
By default, Data Neo4j tests are transactional and roll back at the end of each test. See the relevant
section in the Spring Framework Reference Documentation for more details. If that is not what you want,
you can disable transaction management for a test or for the whole class as follows:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.autoconfigure.data.neo4j.DataNeo4jTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.transaction.annotation.Propagation;
import org.springframework.transaction.annotation.Transactional;
@RunWith(SpringRunner.class)
@DataNeo4jTest
@Transactional(propagation = Propagation.NOT_SUPPORTED)
public class ExampleNonTransactionalTests {
A list of the auto-configuration settings that are enabled by @DataNeo4jTest can be found in the
appendix.
You can use @DataRedisTest to test Redis applications. By default, it scans for @RedisHash classes
and configures Spring Data Redis repositories. Regular @Component beans are not loaded into the
ApplicationContext. The following example shows the @DataRedisTest annotation in use:
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.data.redis.DataRedisTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@DataRedisTest
public class ExampleDataRedisTests {
@Autowired
private YourRepository repository;
//
}
A list of the auto-configuration settings that are enabled by @DataRedisTest can be found in the
appendix.
You can use @DataLdapTest to test LDAP applications. By default, it configures an in-memory
embedded LDAP (if available), configures an LdapTemplate, scans for @Entry classes, and
configures Spring Data LDAP repositories. Regular @Component beans are not loaded into the
ApplicationContext. The following example shows the @DataLdapTest annotation in use:
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.data.ldap.DataLdapTest;
import org.springframework.ldap.core.LdapTemplate;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@DataLdapTest
public class ExampleDataLdapTests {
@Autowired
private LdapTemplate ldapTemplate;
//
}
In-memory embedded LDAP generally works well for tests, since it is fast and does not require any
developer installation. If, however, you prefer to run tests against a real LDAP server, you should exclude
the embedded LDAP auto-configuration, as shown in the following example:
import org.junit.runner.RunWith;
import org.springframework.boot.autoconfigure.ldap.embedded.EmbeddedLdapAutoConfiguration;
import org.springframework.boot.test.autoconfigure.data.ldap.DataLdapTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@DataLdapTest(excludeAutoConfiguration = EmbeddedLdapAutoConfiguration.class)
public class ExampleDataLdapNonEmbeddedTests {
A list of the auto-configuration settings that are enabled by @DataLdapTest can be found in the
appendix.
You can use the @RestClientTest annotation to test REST clients. By default, it auto-configures
Jackson, GSON, and Jsonb support, configures a RestTemplateBuilder, and adds support for
MockRestServiceServer. The specific beans that you want to test should be specified by using the
value or components attribute of @RestClientTest, as shown in the following example:
@RunWith(SpringRunner.class)
@RestClientTest(RemoteVehicleDetailsService.class)
public class ExampleRestClientTest {
@Autowired
private RemoteVehicleDetailsService service;
@Autowired
private MockRestServiceServer server;
@Test
public void getVehicleDetailsWhenResultIsSuccessShouldReturnDetails()
throws Exception {
this.server.expect(requestTo("/greet/details"))
.andRespond(withSuccess("hello", MediaType.TEXT_PLAIN));
String greeting = this.service.callRestService();
assertThat(greeting).isEqualTo("hello");
}
A list of the auto-configuration settings that are enabled by @RestClientTest can be found in the
appendix.
You can use the @AutoConfigureRestDocs annotation to use Spring REST Docs in your tests with
Mock MVC or REST Assured. It removes the need for the JUnit rule in Spring REST Docs.
@AutoConfigureRestDocs customizes the MockMvc bean to use Spring REST Docs. You can inject
it by using @Autowired and use it in your tests as you normally would when using Mock MVC and
Spring REST Docs, as shown in the following example:
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.http.MediaType;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
@RunWith(SpringRunner.class)
@WebMvcTest(UserController.class)
@AutoConfigureRestDocs
public class UserDocumentationTests {
@Autowired
private MockMvc mvc;
@Test
public void listUsers() throws Exception {
this.mvc.perform(get("/users").accept(MediaType.TEXT_PLAIN))
.andExpect(status().isOk())
.andDo(document("list-users"));
}
If you require more control over Spring REST Docs configuration than offered by the attributes
of @AutoConfigureRestDocs, a RestDocsMockMvcConfigurationCustomizer bean can be
used, as shown in the following example:
@TestConfiguration
static class CustomizationConfiguration
implements RestDocsMockMvcConfigurationCustomizer {
@Override
public void customize(MockMvcRestDocumentationConfigurer configurer) {
configurer.snippets().withTemplateFormat(TemplateFormats.markdown());
}
If you want to make use of Spring REST Docs support for a parameterized output directory, you can
create a RestDocumentationResultHandler bean. The auto-configuration calls alwaysDo with
this result handler, thereby causing each MockMvc call to automatically generate the default snippets.
The following example shows a RestDocumentationResultHandler being defined:
@TestConfiguration
static class ResultHandlerConfiguration {
@Bean
public RestDocumentationResultHandler restDocumentation() {
return MockMvcRestDocumentation.document("{method-name}");
}
import io.restassured.specification.RequestSpecification;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.restdocs.AutoConfigureRestDocs;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
import org.springframework.boot.web.server.LocalServerPort;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
@AutoConfigureRestDocs
public class UserDocumentationTests {
@LocalServerPort
private int port;
@Autowired
private RequestSpecification documentationSpec;
@Test
public void listUsers() throws Exception {
given(this.documentationSpec).filter(document("list-users")).when()
.port(this.port).get("/").then().assertThat().statusCode(is(200));
}
If you require more control over Spring REST Docs configuration than offered by the attributes of
@AutoConfigureRestDocs, a RestDocsRestAssuredConfigurationCustomizer bean can be
used, as shown in the following example:
@TestConfiguration
public static class CustomizationConfiguration
implements RestDocsRestAssuredConfigurationCustomizer {
@Override
public void customize(RestAssuredRestDocumentationConfigurer configurer) {
configurer.snippets().withTemplateFormat(TemplateFormats.markdown());
}
If you structure your code in a sensible way, your @SpringBootApplication class is used by default
as the configuration of your tests.
It then becomes important not to litter the applications main class with configuration settings that are
specific to a particular area of its functionality.
Assume that you are using Spring Batch and you rely on the auto-configuration for it. You could define
your @SpringBootApplication as follows:
@SpringBootApplication
@EnableBatchProcessing
public class SampleApplication { ... }
Because this class is the source configuration for the test, any slice test actually tries to start Spring
Batch, which is definitely not what you want to do. A recommended approach is to move that area-
specific configuration to a separate @Configuration class at the same level as your application, as
shown in the following example:
@Configuration
@EnableBatchProcessing
public class BatchConfiguration { ... }
Note
Depending on the complexity of your application, you may either have a single @Configuration
class for your customizations or one class per domain area when it makes sense. The latter
approach lets you enable it in one of your tests, if necessary, with the @Import annotation.
Another source of confusion is classpath scanning. Assume that, while you structured your code in a
sensible way, you need to scan an additional package. Your application may resemble the following
code:
@SpringBootApplication
@ComponentScan({ "com.example.app", "org.acme.another" })
public class SampleApplication { ... }
This effectively overrides the default component scan directive with the side effect of scanning those two
packages regardless of the slice that you chose. For instance, a @DataJpaTest seems to suddenly
scan components and user configurations of your application. Again, moving the custom directive to a
separate class is a good way to fix this issue.
Tip
If this is not an option for you, you can create a @SpringBootConfiguration somewhere in
the hierarchy of your test so that it is used instead. Alternatively, you can specify a source for your
test, which disables the behavior of finding a default one.
ConfigFileApplicationContextInitializer
ConfigFileApplicationContextInitializer is an ApplicationContextInitializer that
you can apply to your tests to load Spring Boot application.properties files. You can use it when
you do not need the full set of features provided by @SpringBootTest.
@ContextConfiguration(classes = Config.class,
initializers = ConfigFileApplicationContextInitializer.class)
Note
EnvironmentTestUtils
OutputCapture
OutputCapture is a JUnit Rule that you can use to capture System.out and System.err output.
You can declare the capture as a @Rule and then use toString() for assertions, as follows:
import org.junit.Rule;
import org.junit.Test;
import org.springframework.boot.test.rule.OutputCapture;
@Rule
public OutputCapture capture = new OutputCapture();
@Test
public void testName() throws Exception {
System.out.println("Hello World!");
assertThat(capture.toString(), containsString("World"));
}
TestRestTemplate
Redirects are not followed (so you can assert the response location).
TestRestTemplate can be instantiated directly in your integration tests, as shown in the following
example:
@Test
public void testRequest() throws Exception {
HttpHeaders headers = template.getForEntity("http://myhost.com/example", String.class).getHeaders();
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
}
@RunWith(SpringRunner.class)
@SpringBootTest
public class MyTest {
@Autowired
private TestRestTemplate template;
@Test
public void testRequest() throws Exception {
HttpHeaders headers = template.getForEntity("/example", String.class).getHeaders();
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
}
@TestConfiguration
static class Config {
@Bean
public RestTemplateBuilder restTemplateBuilder() {
return new RestTemplateBuilder()
.additionalMessageConverters(...)
.customizers(...);
}
44. WebSockets
Spring Boot provides WebSockets auto-configuration for embedded Tomcat 8.5, Jetty 9, and Undertow.
If you deploy a war file to a standalone container, Spring Boot assumes that the container is responsible
for the configuration of its WebSocket support.
Spring Framework provides rich WebSocket support that can be easily accessed through the spring-
boot-starter-websocket module.
The Spring Web Services features can be easily accessed with the spring-boot-starter-
webservices module.
spring.webservices.wsdl-locations=classpath:/wsdl
Auto-configuration can be associated to a "starter" that provides the auto-configuration code as well as
the typical libraries that you would use with it. We first cover what you need to know to build your own
auto-configuration and then we move on to the typical steps required to create a custom starter.
Tip
A demo project is available to showcase how you can create a starter step-by-step.
You can browse the source code of spring-boot-autoconfigure to see the @Configuration
classes that we provide (see the META-INF/spring.factories file).
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.mycorp.libx.autoconfigure.LibXAutoConfiguration,\
com.mycorp.libx.autoconfigure.LibXWebAutoConfiguration
If you want to order certain auto-configurations that should not have any direct knowledge of each other,
you can also use @AutoConfigureOrder. That annotation has the same semantic as the regular
@Order annotation but provides a dedicated order for auto-configuration classes.
Note
Auto-configurations must be loaded that way only. Make sure that they are defined in a specific
package space and that, in particular, they are never the target of component scanning.
Spring Boot includes a number of @Conditional annotations that you can reuse in your own code by
annotating @Configuration classes or individual @Bean methods. These annotations include:
Class Conditions
Tip
Bean Conditions
When placed on a @Bean method, the target type defaults to the return type of the method, as shown
in the following example:
@Configuration
public class MyAutoConfiguration {
@Bean
@ConditionalOnMissingBean
public MyService myService() { ... }
In the preceding example, the myService bean is going to be created if no bean of type MyService
is already contained in the ApplicationContext.
Tip
You need to be very careful about the order that bean definitions are added as these conditions
are evaluated based on what has been processed so far. For this reason, we recommend
Note
Property Conditions
Resource Conditions
The starter module that provides a dependency to the autoconfigure module as well as the
library and any additional dependencies that are typically useful. In a nutshell, adding the starter
should provide everything needed to start using that library.
Tip
You may combine the auto-configuration code and the dependency management in a single
module if you do not need to separate those two concerns.
Naming
You should make sure to provide a proper namespace for your starter. Do not start your module names
with spring-boot, even if you are using a different Maven groupId. We may offer official support
for the thing you auto-configure in the future.
As a rule of thumb, you should name a combined module after the starter. For example, assume that
you are creating a starter for "acme" and that you name the auto-configure module acme-spring-
boot-autoconfigure and the starter acme-spring-boot-starter. If you only have one module
that combines the two, name it acme-spring-boot-starter.
Also, if your starter provides configuration keys, use a proper (that is, unique) namespace for them.
In particular, do not include your keys in the namespaces that Spring Boot uses (such as server,
management, spring, and so on). If you use the same namespace, we may modify these namespaces
in the future in ways that break your modules.
Make sure to trigger meta-data generation so that IDE assistance is available for your keys as
well. You may want to review the generated meta-data (META-INF/spring-configuration-
metadata.json) to make sure your keys are properly documented.
autoconfigure Module
The autoconfigure module contains everything that is necessary to get started with the library. It may
also contain configuration key definitions (such as @ConfigurationProperties) and any callback
interface that can be used to further customize how the components are initialized.
Tip
You should mark the dependencies to the library as optional so that you can include the
autoconfigure module in your projects more easily. If you do it that way, the library is not
provided and, by default, Spring Boot backs off.
Starter Module
The starter is really an empty jar. Its only purpose is to provide the necessary dependencies to work
with the library. You can think of it as an opinionated view of what is required to get started.
Do not make assumptions about the project in which your starter is added. If the library you are auto-
configuring typically requires other starters, mention them as well. Providing a proper set of default
dependencies may be hard if the number of optional dependencies is high, as you should avoid including
dependencies that are unnecessary for a typical usage of the library. In other words, you should not
include optional dependencies.
If you are comfortable with Spring Boots core features, you can continue on and read about production-
ready features.
Definition of Actuator
To add the actuator to a Maven based project, add the following Starter dependency:
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
dependencies {
compile("org.springframework.boot:spring-boot-starter-actuator")
}
49. Endpoints
Actuator endpoints let you monitor and interact with your application. Spring Boot includes a number
of built-in endpoints and lets you add your own. For example, the health endpoint provides basic
application health information.
The way that endpoints are exposed depends on the type of technology that you choose. Most
applications choose HTTP monitoring, where the ID of the endpoint along with a prefix of /actuator is
mapped to a URL. For example, by default, the health endpoint is mapped to /actuator/health.
ID Description
conditions Showing the conditions that were evaluated on configuration and auto-
configuration classes and the reasons why they did or did not match.
beans Displays a complete list of all the Spring beans in your application.
flyway Shows any Flyway database migrations that have been applied.
liquibase Shows any Liquibase database migrations that have been applied.
sessions Allows retrieval and deletion of user sessions from a Spring Session-
backed session store. Not available when using Spring Sessions
support for reactive web applications.
trace Displays trace information (by default, the last 100 HTTP requests).
If your application is a web application (Spring MVC, Spring WebFlux, or Jersey), you can use the
following additional endpoints:
ID Description
ID Description
To learn more about the Actuators endpoints and their request and response formats, please refer to
the separate API documentation that is available in the following formats:
HTML
To change the endpoints that are exposed you can use the expose and exclude property for the
technology. For example, to only expose the health over JMX you would use:
application.properties.
management.endpoints.jmx.expose=health
The * character can be used to indicate all endpoints. For example, to expose everything over HTTP
except the env endpoint you would use:
application.properties.
management.endpoints.web.expose=*
management.endpoints.web.exclude=env
Note
If your application is exposed publicly we strongly recommend that you also secure your endpoints.
Tip
If you want to implement your own strategy for when endpoints are exposed you can register an
EndpointFilter bean.
@Configuration
@Override
protected void configure(HttpSecurity http) throws Exception {
http.requestMatcher(EndpointRequest.toAnyEndpoint()).authorizeRequests()
.anyRequest().hasRole("ENDPOINT_ADMIN")
.and()
.httpBasic();
}
If you deploy applications behind a firewall, you may prefer that all your actuator
endpoints can be accessed without requiring authentication. You can do so by changing the
management.endpoints.web.expose property, as follows:
application.properties.
management.endpoints.web.expose=*
For example, the following application.properties changes the time-to-live of the beans
endpoint to 10 seconds and also enables shutdown:
management.endpoint.beans.cache.time-to-live=10s
management.endpoint.shutdown.enabled=true
Note
By default, all endpoints except for shutdown are enabled. If you prefer to specifically opt-in
endpoint enablement, you can use the management.endpoints.enabled-by-default property.
For example, the following settings disable all endpoints except for info:
management.endpoints.enabled-by-default=false
management.endpoint.info.enabled=true
Note
Disabled endpoints are removed entirely from the ApplicationContext. If you only want
to change the technologies over which an endpoint is exposed you can use the expose and
exclude properties (see Section 49.1, Exposing Endpoints).
When a custom management context path is configured, the discovery page automatically moves from
/actuator to the root of the management context. For example, if the management context path is /
management, then the discovery page is available from /management. When the management context
path is set to /, the discovery page is disabled to prevent the possibility of a clash with other mappings.
application.properties.
management.endpoints.web.base-path=/
management.endpoints.path-mapping.health=healthcheck
management.endpoints.web.cors.allowed-origins=http://example.com
management.endpoints.web.cors.allowed-methods=GET,POST
Tip
You can also write technology specific endpoints by using @JmxEndpoint or @WebEndpoint. These
endpoints are filtered to their respective technologies. For example, @WebEndpoint will be exposed
only over HTTP and not over JMX.
Finally, its possible to write technology specific extensions using @EndpointWebExtension and
@EndpointJmxExtension. These annotations allow you to provide technology specific operations to
augment an existing endpoint.
Tip
If you add endpoints as a library feature, consider adding a configuration class annotated with
@ManagementContextConfiguration to /META-INF/spring.factories under the key,
org.springframework.boot.actuate.autoconfigure.ManagementContextConfiguration.
If you do so and if your users ask for a separate management port or address, the endpoint moves
to a child context with all the other web endpoints.
Auto-configured HealthIndicators
The following HealthIndicators are auto-configured by Spring Boot when appropriate:
Name Description
Tip
and return a Health response. The Health response should include a status and can optionally
include additional details to be displayed. The following code shows a sample HealthIndicator
implementation:
import org.springframework.boot.actuate.health.Health;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.stereotype.Component;
@Component
public class MyHealthIndicator implements HealthIndicator {
@Override
public Health health() {
int errorCode = check(); // perform some specific health check
if (errorCode != 0) {
return Health.down().withDetail("Error Code", errorCode).build();
}
return Health.up().build();
}
Note
The identifier for a given HealthIndicator is the name of the bean without the
HealthIndicator suffix, if it exists. In the preceding example, the health information is available
in an entry named my.
In addition to Spring Boots predefined Status types, it is also possible for Health to return a
custom Status that represents a new system state. In such cases, a custom implementation of the
HealthAggregator interface also needs to be provided, or the default implementation has to be
configured by using the management.health.status.order configuration property.
For example, assume a new Status with code FATAL is being used in one of your HealthIndicator
implementations. To configure the severity order, add the following to your application properties:
The HTTP status code in the response reflects the overall health status (for example, UP maps to
200, while OUT_OF_SERVICE and DOWN map to 503). You might also want to register custom status
mappings if you access the health endpoint over HTTP. For example, the following property maps FATAL
to 503 (service unavailable):
management.health.status.http-mapping.FATAL=503
Tip
If you need more control, you can define your own HealthStatusHttpMapper bean.
The following table shows the default status mappings for the built-in statuses:
Status Mapping
Status Mapping
For reactive applications, such as those using Spring WebFlux, ReactiveHealthIndicators provide
a non-blocking contract for getting application health. Similar to a traditional HealthIndicator,
health information is collected from all ReactiveHealthIndicator beans defined in your
ApplicationContext. Regular HealthIndicators that do not check against a reactive API are included
and executed on the elastic scheduler.
To provide custom health information from a reactive API, you can register Spring beans
that implement the ReactiveHealthIndicator interface. The following code shows a sample
ReactiveHealthIndicator implementation:
@Component
public class MyReactiveHealthIndicator implements ReactiveHealthIndicator {
@Override
public Mono<Health> health() {
return doHealthCheck() //perform some specific health check that returns a Mono<Health>
.onErrorResume(ex -> Mono.just(new Health.Builder().down(ex).build())));
}
Tip
Auto-configured ReactiveHealthIndicators
Name Description
Tip
Those reactive indicators replace the regular ones if necessary. Also, any HealthIndicator
that is not handled explicitly is wrapped automatically.
Auto-configured InfoContributors
Name Description
Expose any key from the Environment under the info key.
EnvironmentInfoContributor
Tip
You can customize the data exposed by the info endpoint by setting info.* Spring properties. All
Environment properties under the info key are automatically exposed. For example, you could add
the following settings to your application.properties file:
info.app.encoding=UTF-8
info.app.java.source=1.8
info.app.java.target=1.8
Tip
Rather than hardcoding those values, you could also expand info properties at build time.
Assuming you use Maven, you could rewrite the preceding example as follows:
info.app.encoding=@project.build.sourceEncoding@
info.app.java.source=@java.version@
info.app.java.target=@java.version@
Another useful feature of the info endpoint is its ability to publish information about the state of your
git source code repository when the project was built. If a GitProperties bean is available, the
git.branch, git.commit.id and git.commit.time properties are exposed.
Tip
If you want to display the full git information (that is, the full content of git.properties), use the
management.info.git.mode property, as follows:
management.info.git.mode=full
Build Information
If a BuildProperties bean is available, the info endpoint can also publish information about your
build. This happens if a META-INF/build-info.properties file is available in the classpath.
Tip
The Maven and Gradle plugins can both generate that file. See "Generate build information" for
more details.
To provide custom application information, you can register Spring beans that implement the
InfoContributor interface.
import java.util.Collections;
import org.springframework.boot.actuate.info.Info;
import org.springframework.boot.actuate.info.InfoContributor;
import org.springframework.stereotype.Component;
@Component
public class ExampleInfoContributor implements InfoContributor {
@Override
public void contribute(Info.Builder builder) {
builder.withDetail("example",
Collections.singletonMap("key", "value"));
}
If you reach the info endpoint, you should see a response that contains the following additional entry:
{
"example": {
"key" : "value"
}
}
Tip
Actuator is supported natively with Spring MVC, Spring WebFlux and Jersey.
management.endpoints.web.base-path=/manage
Note
Unless the management port has been configured to expose endpoints using a different HTTP
port, management.endpoints.web.base-path is relative to server.context-path. If
management.server.port is configured, management.endpoints.web.base-path is
relative to management.server.servlet.context-path.
You can set the management.server.port property to change the HTTP port, as shown in the
following example:
management.server.port=8081
Since your management port is often protected by a firewall and not exposed to the public, you might not
need security on the management endpoints, even if your main application is secure. In that case, you
should have Spring Security on the classpath, and you can disable management security as follows:
management.security.enabled=false
(If you do not have Spring Security on the classpath, there is no need to explicitly disable the
management security in this way. Doing so might even break the application.)
server.port=8443
server.ssl.enabled=true
server.ssl.key-store=classpath:store.jks
server.ssl.key-password=secret
management.server.port=8080
management.server.ssl.enabled=false
Alternatively, both the main server and the management server can use SSL but with different key
stores, as follows:
server.port=8443
server.ssl.enabled=true
server.ssl.key-store=classpath:main.jks
server.ssl.key-password=secret
management.server.port=8080
management.server.ssl.enabled=true
management.server.ssl.key-store=classpath:management.jks
management.server.ssl.key-password=secret
Note
You can only listen on a different address if the port is different from the main server port.
The following example application.properties does not allow remote management connections:
management.server.port=8081
management.server.address=127.0.0.1
management.server.port=-1
If your application contains more than one Spring ApplicationContext, you may find that names
clash. To solve this problem, you can set the management.endpoints.jmx.unique-names
property to true so that MBean names are always unique.
You can also customize the JMX domain under which endpoints are exposed. The following settings
show an example of doing so in application.properties:
management.endpoints.jmx.domain=com.example.myapp
management.endpoints.jmx.unique-names=true
management.endpoints.jmx.enabled=false
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-core</artifactId>
</dependency>
Jolokia can then be accessed by using /actuator/jolokia on your management HTTP server.
Customizing Jolokia
Jolokia has a number of settings that you would traditionally configure using servlet parameters.
With Spring Boot, you can use your application.properties. Prefix the parameter with
management.jolokia.config., as shown in the following example:
management.jolokia.config.debug=true
Disabling Jolokia
If you use Jolokia but do not want Spring Boot to configure it, set the management.jolokia.enabled
property to false, as follows:
management.jolokia.enabled=false
52. Loggers
Spring Boot Actuator includes the ability to view and configure the log levels of your application at
runtime. You can view either the entire list or an individual loggers configuration, which is made up of
both the explicitly configured logging level as well as the effective logging level given to it by the logging
framework. These levels can be one of:
TRACE
DEBUG
INFO
WARN
ERROR
FATAL
OFF
null
{
"configuredLevel": "DEBUG"
}
Tip
To "reset" the specific level of the logger (and use the default configuration instead), you can pass
a value of null as the configuredLevel.
53. Metrics
Spring Boot Actuator provides dependency management and auto-configuration for Micrometer, an
application metrics facade that supports numerous monitoring systems:
Atlas
Datadog
Ganglia
Graphite
Influx
Prometheus
Micrometer provides a separate module for each supported monitoring system. Depending on one (or
more) of these modules is sufficient to get started with Micrometer in your Spring Boot application. To
learn more about Micrometers capabilities, please refer to its reference documentation.
By default, metrics are generated with the name, http.server.requests. The name can be
customized by setting the spring.metrics.web.server.requests-metrics-name property.
By default, Spring MVC-related metrics are tagged with the following information:
The simple class name of any exception that was thrown while handling the request.
By default, metrics are generated with the name http.server.requests. You can customize the
name by setting the spring.metrics.web.server.requests-metrics-name property.
By default, WebFlux-related metrics for the annotation-based programming model are tagged with the
following information:
The simple class name of any exception that was thrown while handling the request.
By default, metrics for the functional programming model are tagged with the following information:
To customize the tags, use the defaultTags method on your RouterFunctionMetrics instance.
By default, metrics are generated with the name, http.client.requests. The name can be
customized by setting the spring.metrics.web.client.requests-metrics-name property.
By default, metrics generated by an instrumented RestTemplate are tagged with the following
information:
Metrics will also be tagged by the name of the DataSource computed based on the bean name.
Metric Description
Metric Description
Metric Description
Metric Description
54. Auditing
Once Spring Security is in play Spring Boot Actuator has a flexible audit framework that publishes
events (by default, authentication success, failure and access denied exceptions). This feature
can be very useful for reporting and for implementing a lock-out policy based on authentication
failures. To customize published security events, you can provide your own implementations of
AbstractAuthenticationAuditListener and AbstractAuthorizationAuditListener.
You can also use the audit services for your own business events. To do so, either inject the
existing AuditEventRepository into your own components and use that directly or publish
an AuditApplicationEvent with the Spring ApplicationEventPublisher (by implementing
ApplicationEventPublisherAware).
55. Tracing
Tracing is automatically enabled for all HTTP requests. You can view the trace endpoint and obtain
basic information about the last 100 requests. The following listing shows sample output:
[{
"timestamp": 1394343677415,
"info": {
"method": "GET",
"path": "/trace",
"headers": {
"request": {
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Connection": "keep-alive",
"Accept-Encoding": "gzip, deflate",
"User-Agent": "Mozilla/5.0 Gecko/Firefox",
"Accept-Language": "en-US,en;q=0.5",
"Cookie": "_ga=GA1.1.827067509.1390890128; ..."
"Authorization": "Basic ...",
"Host": "localhost:8080"
},
"response": {
"Strict-Transport-Security": "max-age=31536000 ; includeSubDomains",
"X-Application-Context": "application:8080",
"Content-Type": "application/json;charset=UTF-8",
"status": "200"
}
}
}
},{
"timestamp": 1394343684465,
...
}]
Name Description
By default, an InMemoryTraceRepository that stores the last 100 events is used. If you need to
expand the capacity, you can define your own instance of the InMemoryTraceRepository bean. You
can also create your own alternative TraceRepository implementation.
ApplicationPidFileWriter creates a file containing the application PID (by default, in the
application directory with the file name, application.pid).
EmbeddedServerPortFileWriter creates a file (or files) containing the ports of the embedded
server (by default, in the application directory with the file name application.port).
By default, these writers are not activated, but you can enable them in one of the ways described in
the next section.
org.springframework.context.ApplicationListener=\
org.springframework.boot.system.ApplicationPidFileWriter,\
org.springframework.boot.system.EmbeddedServerPortFileWriter
56.2 Programmatically
You can also activate a listener by invoking the SpringApplication.addListeners() method
and passing the appropriate Writer object. This method also lets you customize the file name and
path in the Writer constructor.
The extended support lets Cloud Foundry management UIs (such as the web application that you can
use to view deployed applications) be augmented with Spring Boot actuator information. For example,
an application status page may include full health information instead of the typical running or stopped
status.
Note
application.properties.
management.cloudfoundry.enabled=false
application.properties.
management.cloudfoundry.skip-ssl-validation=true
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.mvcMatchers("/cloudfoundryapplication/**")
.permitAll()
.mvcMatchers("/mypath")
.hasAnyRole("SUPERUSER")
.anyRequest()
.authenticated().and()
.httpBasic();
}
Otherwise, you can continue on, to read about deployment options or jump ahead for some in-depth
information about Spring Boots build tool plugins.
Two popular cloud providers, Heroku and Cloud Foundry, employ a buildpack approach. The buildpack
wraps your deployed code in whatever is needed to start your application: it might be a JDK and a call to
java, it might be an embedded web server, or it might be a full-fledged application server. A buildpack
is pluggable, but ideally you should be able to get by with as few customizations to it as possible. This
reduces the footprint of functionality that is not under your control. It minimizes divergence between
development and production environments.
Ideally, your application, like a Spring Boot executable jar, has everything that it needs to run packaged
within it.
In this section, we look at what it takes to get the simple application that we developed in the Getting
Started section up and running in the Cloud.
Once you have built your application (by using, for example, mvn clean package) and have installed
the cf command line tool, deploy your application by using the cf push command, substituting the
path to your compiled .jar. Be sure to have logged in with your cf command line client before pushing
an application. The following line shows using the cf push command to deploy an application:
Note
In the preceding example, we substitute acloudyspringtime for whatever value you give cf
as the name of your application.
See the cf push documentation for more options. If there is a Cloud Foundry manifest.yml file
present in the same directory, it is considered.
At this point, cf starts uploading your application, producing output similar to the following example:
Uploading acloudyspringtime... OK
Preparing to start acloudyspringtime... OK
-----> Downloaded app package (8.9M)
-----> Java Buildpack Version: v3.12 (offline) | https://github.com/cloudfoundry/java-
buildpack.git#6f25b7e
-----> Downloading Open Jdk JRE 1.8.0_121 from https://java-buildpack.cloudfoundry.org/openjdk/trusty/
x86_64/openjdk-1.8.0_121.tar.gz (found in cache)
Expanding Open Jdk JRE to .java-buildpack/open_jdk_jre (1.6s)
-----> Downloading Open JDK Like Memory Calculator 2.0.2_RELEASE from https://java-
buildpack.cloudfoundry.org/memory-calculator/trusty/x86_64/memory-calculator-2.0.2_RELEASE.tar.gz (found
in cache)
Memory Settings: -Xss349K -Xmx681574K -XX:MaxMetaspaceSize=104857K -Xms681574K -
XX:MetaspaceSize=104857K
App started
Once your application is live, you can verify the status of the deployed application by using the cf apps
command, as shown in the following example:
$ cf apps
Getting applications in ...
OK
Once Cloud Foundry acknowledges that your application has been deployed, you should be able
to find the application at the URI given. In the preceding example, you could find it at http://
acloudyspringtime.cfapps.io/.
Binding to Services
By default, metadata about the running application as well as service connection information is exposed
to the application as environment variables (for example: $VCAP_SERVICES). This architecture decision
is due to Cloud Foundrys polyglot (any language and platform can be supported as a buildpack) nature.
Process-scoped environment variables are language agnostic.
Environment variables do not always make for the easiest API, so Spring Boot automatically extracts
them and flattens the data into properties that can be accessed through Springs Environment
abstraction, as shown in the following example:
@Component
class MyBean implements EnvironmentAware {
@Override
public void setEnvironment(Environment environment) {
this.instanceId = environment.getProperty("vcap.application.instance_id");
}
// ...
All Cloud Foundry properties are prefixed with vcap. You can use vcap properties to access application
information (such as the public URL of the application) and service information (such as database
credentials). See CloudFoundryVcapEnvironmentPostProcessor Javadoc for complete details.
Tip
The Spring Cloud Connectors project is a better fit for tasks such as configuring a DataSource.
Spring Boot includes auto-configuration support and a spring-boot-starter-cloud-
connectors starter.
59.2 Heroku
Heroku is another popular PaaS platform. To customize Heroku builds, you provide a Procfile,
which provides the incantation required to deploy an application. Heroku assigns a port for the Java
application to use and then ensures that routing to the external URI works.
You must configure your application to listen on the correct port. The following example shows the
Procfile for our starter REST application:
Spring Boot makes -D arguments available as properties accessible from a Spring Environment
instance. The server.port configuration property is fed to the embedded Tomcat, Jetty, or Undertow
instance which, then uses the port when it starts up. The $PORT environment variable is assigned to
us by the Heroku PaaS.
This should be everything you need. The most common deployment workflow for Heroku deployments
is to git push the code to production, as shown in the following example:
To git@heroku.com:agile-sierra-1405.git
59.3 OpenShift
OpenShift is the Red Hat public (and enterprise) extension of the Kubernetes container orchestration
platform. Similarly to Kubernetes, OpenShift has many options for installing Spring Boot based
applications.
OpenShift has many resources describing how to deploy Spring Boot applications, which include:
Architecture guide
Each has different features and pricing model. In this document, we describe only the simplest option:
AWS Elastic Beanstalk.
As described in the official Elastic Beanstalk Java guide, there are two main options to deploy a Java
application. You can either use the Tomcat Platform or the Java SE platform.
This option applies to Spring Boot projects that produce a war file. There is no any special configuration
required. You need only follow the official guide.
This option applies to Spring Boot projects that produce a jar file and run an embedded web container.
Elastic Beanstalk environments run an nginx instance on port 80 to proxy the actual application, running
on port 5000. To configure it, add the following line to your application.properties file:
server.port=5000
By default, Elastic Beanstalk uploads sources and compiles them in AWS. However, it is best
to upload the binaries instead. To do so, add the following lines to your .elasticbeanstalk/
config.yml file:
deploy:
artifact: target/demo-0.0.1-SNAPSHOT.jar
By default an Elastic Beanstalk environment is load balanced. The load balancer has a significant
cost. To avoid that cost, set the environment type to Single instance, as described in the Amazon
documentation. You can also create single instance environments by using the CLI and the
following command:
eb create -s
Summary
This is one of the easiest ways to get to AWS, but there are more things to cover, such as how to integrate
Elastic Beanstalk into any CI / CD tool, use the Elastic Beanstalk Maven plugin instead of the CLI,
and others. There is a exampledriven.wordpress.com/2017/01/09/spring-boot-aws-elastic-beanstalk-
example/ [blog post] covering these topics more in detail.
Once you have created a Boxfuse account, connected it to your AWS account, installed the latest version
of the Boxfuse Client, and ensured that the application has been built by Maven or Gradle (by using, for
example, mvn clean package), you can deploy your Spring Boot application to AWS with a command
similar to the following:
See the boxfuse run documentation for more options. If there is a boxfuse.com/docs/commandline/
#configuration [boxfuse.conf] file present in the current directory, it is considered.
Tip
By default, Boxfuse activates a Spring profile named boxfuse on startup. If your executable jar
or war contains an boxfuse.com/docs/payloads/springboot.html#configuration [application-
boxfuse.properties] file, Boxfuse bases its configuration based on the properties it contains.
At this point, boxfuse creates an image for your application, uploads it, and configures and starts the
necessary resources on AWS resulting in output similar to the following example:
See the blog post on deploying Spring Boot apps on EC2 as well as the documentation for the Boxfuse
Spring Boot integration to get started with a Maven build to run the app.
To run in App Engine, you can create a project in the UI first, which sets up a unique identifier for you
and also sets up HTTP routes. Add a Java app to the project and leave it empty and then use the Google
Cloud SDK to push your Spring Boot app into that slot from the command line or CI build.
App Engine needs you to create an app.yaml file to describe the resources your app requires. Normally
you put this file in src/main/appengine, and it should resemble the following file:
service: default
runtime: java
env: flex
runtime_config:
jdk: openjdk8
handlers:
- url: /.*
script: this field is required, but ignored
manual_scaling:
instances: 1
health_check:
enable_health_check: False
env_variables:
ENCRYPT_KEY: your_encryption_key_here
You can deploy the app (for example, with a Maven plugin) by adding the project ID to the build
configuration, as shown in the following example:
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>appengine-maven-plugin</artifactId>
<version>1.3.0</version>
<configuration>
<project>myproject</project>
</configuration>
</plugin>
Then deploy with mvn appengine:deploy (if you need to authenticate first, the build fails).
Note
Google App Engine Classic is tied to the Servlet 2.5 API, so you cannot deploy a Spring Application
there without some modifications. See the Servlet 2.5 section of this guide.
Warning
Fully executable jars work by embedding an extra script at the front of the file. Currently, some tools
do not accept this format, so you may not always be able to use this technique. For example, jar
-xf may silently fail to extract a jar or war that has been made fully executable. It is recommended
that you only make your jar or war fully executable if you intend to execute it directly, rather than
running it with java -jar or deploying it to a servlet container.
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>
bootJar {
launchScript()
}
You can then run your application by typing ./my-application.jar (where my-application is
the name of your artifact). The directory containing the jar is used as your applications working directory.
Starts the services as the user that owns the jar file
Assuming that you have a Spring Boot application installed in /var/myapp, to install a Spring Boot
application as an init.d service, create a symlink, as follows:
Once installed, you can start and stop the service in the usual way. For example, on a Debian based
system, you could start it with the following command:
Tip
If your application fails to start, check the log file written to /var/log/<appname>.log for errors.
You can also flag the application to start automatically by using your standard operating system tools.
For example, on Debian, you could use the following command:
Note
The following is a set of guidelines on how to secure a Spring Boot application that runs as an
init.d service. It is not intended to be an exhaustive list of everything that should be done to harden
an application and the environment in which it runs.
When executed as root, as is the case when root is being used to start an init.d service, the default
executable script runs the application as the user who owns the jar file. You should never run a Spring
Boot application as root, so your applications jar file should never be owned by root. Instead, create
a specific user to run your application and use chown to make it the owner of the jar file, as shown in
the following example:
In this case, the default executable script runs the application as the bootapp user.
Tip
To reduce the chances of the applications user account being compromised, you should consider
preventing it from using a login shell. For example, you can set the accounts shell to /usr/
sbin/nologin.
You should also take steps to prevent the modification of your applications jar file. Firstly, configure
its permissions so that it cannot be written and can only be read or executed by its owner, as shown
in the following example:
Second, you should also take steps to limit the damage if your application or the account thats running
it is compromised. If an attacker does gain access, they could make the jar file writable and change its
contents. One way to protect against this is to make it immutable by using chattr, as shown in the
following example:
This will prevent any user, including root, from modifying the jar.
If root is used to control the applications service and you use a .conf file to customize its startup,
the .conf file is read and evaluated by the root user. It should be secured accordingly. Use chmod
so that the file can only be read by the owner and use chown to make root the owner, as shown in
the following example:
systemd is the successor of the System V init system and is now being used by many modern Linux
distributions. Although you can continue to use init.d scripts with systemd, it is also possible to
launch Spring Boot applications by using systemd service scripts.
Assuming that you have a Spring Boot application installed in /var/myapp, to install a Spring Boot
application as a systemd service, create a script named myapp.service and place it in /etc/
systemd/system directory. The following script offers an example:
[Unit]
Description=myapp
After=syslog.target
[Service]
User=myapp
ExecStart=/var/myapp/myapp.jar
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
Important
Remember to change the Description, User and ExecStart fields for your application.
Note
The ExecStart field does not declare the script action command, which means that the run
command is used by default.
Note that, unlike when running as an init.d service, the user that runs the application, the PID file,
and the console log file are managed by systemd itself and therefore must be configured by using
appropriate fields in the service script. Consult the service unit configuration man page for more details.
To flag the application to start automatically on system boot, use the following command:
It often makes sense to customize elements of the start script as it is written into the jar file. For example,
init.d scripts can provide a description. Since you know the description up front (and it need not
change), you may as well provide it when the jar is generated.
The following property substitutions are supported with the default script:
Name Description
confFolder The default value for CONF_FOLDER. Defaults to the folder containing the jar.
Reference to a file script that should be inlined in the default launch script. This can
inlinedConfScript
be used to set environmental variables such as JAVA_OPTS before any external
config files are loaded.
logFolder The default value for LOG_FOLDER. Only valid for an init.d service.
logFilenameThe default value for LOG_FILENAME. Only valid for an init.d service.
pidFolder The default value for PID_FOLDER. Only valid for an init.d service.
pidFilenameThe default value for the name of the PID file in PID_FOLDER. Only valid for an
init.d service.
Name Description
The default value for STOP_WAIT_TIME. Only valid for an init.d service. Defaults
stopWaitTime
to 60 seconds.
For items of the script that need to be customized after the jar has been written, you can use environment
variables or a config file.
The following environment properties are supported with the default script:
Variable Description
MODE The mode of operation. The default depends on the way the jar was built but
is usually auto (meaning it tries to guess if it is an init script by checking if it is a
symlink in a directory called init.d). You can explicitly set it to service so that the
stop|start|status|restart commands work or to run if you want to run the
script in the foreground.
LOG_FOLDER The name of the folder in which to put log files (/var/log by default).
CONF_FOLDERThe name of the folder from which to read .conf files (same folder as jar-file by
default).
APP_NAME The name of the app. If the jar is run from a symlink, the script guesses the app name
if it is not a symlink or you want to explicitly set the app name, this can be useful.
RUN_ARGS The arguments to pass to the program (the Spring Boot app).
JAVA_HOME The location of the java executable is discovered by using the PATH by default, but
you can set it explicitly if there is an executable file at $JAVA_HOME/bin/java.
JARFILE The explicit location of the jar file, in case the script is being used to launch a jar that
it is not actually embedded.
DEBUG If not empty, sets the -x flag on the shell process, making it easy to see the logic in
the script.
The time in seconds to wait when stopping the application before forcing a shutdown
STOP_WAIT_TIME
(60 by default).
Note
The PID_FOLDER, LOG_FOLDER, and LOG_FILENAME variables are only valid for an init.d
service. For systemd, the equivalent customizations are made by using the service script. See
the service unit configuration man page for more details.
With the exception of JARFILE and APP_NAME, the above settings can be configured by using a .conf
file. The file is expected to be 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 uses the configuration file named /
var/myapp/myapp.conf.
myapp.conf.
JAVA_OPTS=-Xmx1024M
LOG_FOLDER=/custom/log/folder
Tip
If you do not like having the config file next to the jar file, you can set a CONF_FOLDER environment
variable to customize the location of the config file.
To learn about securing this file appropriately, see the guidelines for securing an init.d service.
A sample (maintained separately) describes step-by-step how you can create a Windows service for
your Spring Boot application.
The next section goes on to cover the Spring Boot CLI, or you can jump ahead to read about build
tool plugins.
$ spring
usage: spring [--help] [--version]
<command> [<args>]
You can type spring help to get more details about any of the supported commands, as shown in
the following example:
Option Description
------ -----------
--autoconfigure [Boolean] Add autoconfigure compiler
transformations (default: true)
--classpath, -cp Additional classpath entries
-e, --edit Open the file with the default system
editor
--no-guess-dependencies Do not attempt to guess dependencies
--no-guess-imports Do not attempt to guess imports
-q, --quiet Quiet logging
-v, --verbose Verbose logging of dependency
resolution
--watch Watch the specified file for changes
The version command provides a quick way to check which version of Spring Boot you are using,
as follows:
$ spring version
Spring CLI v2.0.0.BUILD-SNAPSHOT
The following example shows a hello world web application written in Groovy:
hello.groovy.
@RestController
class WebApplication {
@RequestMapping("/")
String home() {
"Hello World!"
}
To pass command-line arguments to the application, use a -- to separate the commands from the
spring command arguments, as shown in the following example:
To set JVM command line arguments, you can use the JAVA_OPTS environment variable, as shown
in the following example:
Note
When setting JAVA_OPTS on Microsoft Windows, make sure to quote the entire instruction, such
as set "JAVA_OPTS=-Xms256m -Xmx2048m". Doing so ensures the values are properly
passed to the process.
Spring Boot extends this technique further and tries to deduce which libraries to grab based on your
code. For example, since the WebApplication code shown previously uses @RestController
annotations, Spring Boot grabs "Tomcat" and "Spring MVC".
Items Grabs
@Test JUnit.
@EnableRabbit RabbitMQ.
Items Grabs
Tip
Spring Boot extends Groovys standard @Grab support by letting you specify a dependency without
a group or version (for example, @Grab('freemarker')). Doing so consults Spring Boots default
dependency metadata to deduce the artifacts group and version. Note that the default metadata is tied
to the version of the CLI that you use it changes only when you move to a new version of the CLI,
putting you in control of when the versions of your dependencies may change. A table showing the
dependencies and their versions that are included in the default metadata can be found in the appendix.
To help reduce the size of your Groovy code, several import statements are automatically
included. Notice how the preceding example refers to @Component, @RestController, and
@RequestMapping without needing to use fully-qualified names or import statements.
Tip
Many Spring annotations work without using import statements. Try running your application to
see what fails before adding imports.
Unlike the equivalent Java application, you do not need to include a public static void
main(String[] args) method with your Groovy scripts. A SpringApplication is automatically
created, with your compiled code acting as the source.
@DependencyManagementBom("com.example.custom-bom:1.0.0")
When you specify multiple BOMs, they are applied in the order in which you declare them, as shown
in the following example:
@DependencyManagementBom(["com.example.custom-bom:1.0.0",
"com.example.another-bom:1.0.0"])
The preceding example indicates that dependency management in another-bom overrides the
dependency management in custom-bom.
You can use @DependencyManagementBom anywhere that you can use @Grab. However, to ensure
consistent ordering of the dependency management, you can use @DependencyManagementBom at
most once in your application. A useful source of dependency management (which is a superset of
Spring Boots dependency management) is the Spring IO Platform, which you might include with the
following line:
@DependencyManagementBom('io.spring.platform:platform-bom:1.1.2.RELEASE')
The resulting jar contains the classes produced by compiling the application and all of the applications
dependencies so that it can then be run by using java -jar. The jar file also contains entries from
the applications classpath. You can add explicit paths to the jar by using --include and --exclude.
Both are comma-separated, and both accept prefixes, in the form of + and -, to signify that they
should be removed from the defaults. The default includes are as follows:
Type spring help jar on the command line for more information.
The preceding example creates a my-project directory with a Maven-based project that uses
spring-boot-starter-web and spring-boot-starter-data-jpa. You can list the capabilities
of the service by using the --list flag, as shown in the following example:
Available dependencies:
-----------------------
actuator - Actuator: Production ready features to help you monitor and manage your application
...
web - Web: Support for full-stack web development, including Tomcat and spring-webmvc
websocket - Websocket: Support for WebSocket development
ws - WS: Support for Spring Web Services
...
The init command supports many options. See the help output for more details. For instance, the
following command creates a Gradle project that uses Java 8 and war packaging:
$ spring shell
Spring Boot (v2.0.0.BUILD-SNAPSHOT)
Hit TAB to complete. Type \'help' and hit RETURN for help, and \'exit' to quit.
From inside the embedded shell, you can run other commands directly:
$ version
Spring CLI v2.0.0.BUILD-SNAPSHOT
The embedded shell supports ANSI color output as well as tab completion. If you need to run a native
command, you can use the ! prefix. To exit the embedded shell, press ctrl-c.
In addition to installing the artifacts identified by the coordinates you supply, all of the artifacts'
dependencies are also installed.
To uninstall a dependency, use the uninstall command. As with the install command, it takes
one or more sets of artifact coordinates in the format group:artifact:version, as shown in the
following example:
It uninstalls the artifacts identified by the coordinates you supply and their dependencies.
To uninstall all additional dependencies, you can use the --all option, as shown in the following
example:
@Configuration
class Application implements CommandLineRunner {
@Autowired
SharedService service
@Override
void run(String... args) {
println service.message
}
import my.company.SharedService
beans {
service(SharedService) {
message = "Hello World"
}
}
You can mix class declarations with beans{} in the same file as long as they stay at the top level, or,
if you prefer, you can put the beans DSL in a separate file.
Offline
Mirrors
Servers
Proxies
Profiles
Activation
Repositories
Active profiles
If you find that you reach the limit of the CLI tool, you probably want to look at converting your application
to a full Gradle or Maven built Groovy project. The next section covers Spring Boots "Build tool plugins",
which you can use with Gradle or Maven.
Note
See the Spring Boot Maven Plugin Site for complete plugin documentation.
The preceding configuration repackages a jar or war that is built during the package phase of the
Maven lifecycle. The following example shows both the repackaged jar as well as the original jar in the
target directory:
$ mvn package
$ ls target/*.jar
target/myproject-1.0.0.jar target/myproject-1.0.0.jar.original
If you do not include the <execution/> configuration as shown in the prior example, you can run the
plugin on its own (but only if the package goal is used as well). For example:
If you use a milestone or snapshot release, you also need to add the appropriate pluginRepository
elements as shown in the following listing:
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/snapshot</url>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
Your existing archive is enhanced by Spring Boot during the package phase. The main class that you
want to launch can either be specified by using a configuration option or by adding a Main-Class
attribute to the manifest in the usual way. If you do not specify a main class, the plugin searches for a
class with a public static void main(String[] args) method.
To build and run a project artifact, you can type the following:
$ mvn package
$ java -jar target/mymodule-0.0.1-SNAPSHOT.jar
To build a war file that is both executable and deployable into an external container, you need to mark
the embedded container dependencies as provided, as shown in the following example:
Tip
See the Section 86.1, Create a Deployable War File section for more details on how to create
a deployable war file.
Advanced configuration options and examples are available in the plugin info page.
API
<project xmlns:ivy="antlib:org.apache.ivy.ant"
xmlns:spring-boot="antlib:org.springframework.boot.ant"
name="myapp" default="build">
...
</project>
You need to remember to start Ant using the -lib option, as shown in the following example:
Tip
The Using Spring Boot section includes a more complete example of using Apache Ant with
spring-boot-antlib.
spring-boot:exejar
You can use the exejar task to create a Spring Boot executable jar. The following attributes are
supported by the task:
start-class The main application class to run No (default is first class found
declaring a main method)
Element Description
resources One or more Resource Collections describing a set of Resources that should
be added to the content of the created jar file.
lib One or more Resource Collections that should be added to the set of jar
libraries that make up the runtime dependency classpath of the application.
Examples
Specify start-class.
<spring-boot:exejar destfile="target/my-application.jar"
classes="target/classes" start-class="com.foo.MyApplication">
<resources>
<fileset dir="src/main/resources" />
</resources>
<lib>
<fileset dir="lib" />
</lib>
</spring-boot:exejar>
Detect start-class.
69.2 spring-boot:findmainclass
The findmainclass task is used internally by exejar to locate a class declaring a main. You can
also use this task directly in your build, if needed. The following attributes are supported:
classesroot The root directory of Java class files Yes (unless mainclass is specified)
property The Ant property that should be set No (result will be logged if unspecified)
with the result
Examples
The Spring Boot Maven and Gradle plugins both make use of spring-boot-loader-tools to
actually generate jars. If you need to, you may use this library directly.
If you have specific build-related questions, you can check out the how-to guides.
If you have a specific problem that we do not cover here, you might want to check out stackoverflow.com
to see if someone has already provided an answer. This is also a great place to ask new questions
(please use the spring-boot tag).
We are also more than happy to extend this section. If you want to add a how-to, send us a pull request.
Spring Boot Reference Guide
org.springframework.boot.diagnostics.FailureAnalyzer=\
com.example.ProjectConstraintViolationFailureAnalyzer
Many more questions can be answered by looking at the source code and the Javadoc. When reading
the code, remember the following rules of thumb:
Look for classes called *AutoConfiguration and read their sources. Pay special attention to the
@Conditional* annotations to find out what features they enable and when. Add --debug to the
command line or a System property -Ddebug to get a log on the console of all the auto-configuration
decisions that were made in your app. In a running Actuator app, look at the conditions endpoint
(/actuator/conditions or the JMX equivalent) for the same information.
Look for uses of the bind method on the Binder to pull configuration values explicitly out of the
Environment in a relaxed manner. It is often used with a prefix.
Look for @ConditionalOnExpression annotations that switch features on and off in response to
SpEL expressions, normally evaluated with placeholders resolved from the Environment.
It is also possible to customize the Environment before the application context is refreshed by
using EnvironmentPostProcessor. Each implementation should be registered in META-INF/
spring.factories, as shown in the following example:
org.springframework.boot.env.EnvironmentPostProcessor=com.example.YourEnvironmentPostProcessor
The implementation can load arbitrary files and add them to the Environment. For instance, the
following example loads a YAML configuration file from the classpath:
@Override
public void postProcessEnvironment(ConfigurableEnvironment environment,
SpringApplication application) {
Resource path = new ClassPathResource("com/example/myapp/config.yml");
PropertySource<?> propertySource = loadYaml(path);
environment.getPropertySources().addLast(propertySource);
}
Tip
The Environment has already been prepared with all the usual property sources that Spring
Boot loads by default. It is therefore possible to get the location of the file from the environment.
This example adds the custom-resource property source at the end of the list so that a key
defined in any of the usual other locations takes precedence. A custom implementation may define
another order.
Caution
You can automatically expand properties from the Maven project by using resource filtering. If you use
the spring-boot-starter-parent, you can then refer to your Maven project properties with @..@
placeholders, as shown in the following example:
app.encoding=@project.build.sourceEncoding@
app.java.version=@java.version@
Note
Only production configuration is filtered that way (in other words, no filtering is applied on src/
test/resources).
Tip
If you enable the addResources flag, the spring-boot:run goal can add src/main/
resources directly to the classpath (for hot reloading purposes). Doing so circumvents the
resource filtering and this feature. Instead, you can use the exec:java goal or customize the
plugins configuration, see the plugin usage page for more details.
If you do not use the starter parent, you need to include the following element inside the <build/>
element of your pom.xml:
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.7</version>
<configuration>
<delimiters>
<delimiter>@</delimiter>
</delimiters>
<useDefaultDelimiters>false</useDefaultDelimiters>
</configuration>
</plugin>
Note
processResources {
expand(project.properties)
}
You can then refer to your Gradle projects properties via placeholders, as shown in the following
example:
app.name=${name}
app.description=${description}
Note
spring.main.web-environment=false
spring.main.banner-mode=off
Then the Spring Boot banner is not printed on startup, and the application is not a web application.
Note
The preceding example also demonstrates how flexible binding allows the use of underscores (_)
as well as dashes (-) in property names.
Properties defined in external configuration overrides the values specified with the Java API, with the
notable exception of the sources used to create the ApplicationContext. Consider the following
application:
new SpringApplicationBuilder()
.bannerMode(Banner.Mode.OFF)
.sources(demo.MyApp.class)
.run(args);
spring.main.sources=com.acme.Config,com.acme.ExtraConfig
spring.main.banner-mode=console
The actual application now shows the banner (as overridden by configuration) and uses three
sources for the ApplicationContext (in the following order): demo.MyApp, com.acme.Config,
com.acme.ExtraConfig.
A nice way to augment and modify this ordering is to add @PropertySource annotations to your
application sources. Classes passed to the SpringApplication static convenience methods and
those added using setSources() are inspected to see if they have @PropertySources. If they
do, those properties are added to the Environment early enough to be used in all phases of the
ApplicationContext lifecycle. Properties added in this way have lower priority than any added by
using the default locations (such as application.properties), system properties, environment
variables, or the command line.
You can also provide the following System properties (or environment variables) to change the behavior:
No matter what you set in the environment, Spring Boot always loads application.properties as
described above. By default, if YAML is used, then files with the .yml extension are also added to the list.
Spring Boot logs the configuration files that are loaded at the DEBUG level and the candidates it has
not found at TRACE level.
server.port=${port:8080}
Tip
If you inherit from the spring-boot-starter-parent POM, the default filter token of the
maven-resources-plugins has been changed from ${*} to @ (that is, @maven.token@
instead of ${maven.token}) to prevent conflicts with Spring-style placeholders. If you have
enabled maven filtering for the application.properties directly, you may want to also
change the default filter token to use other delimiters.
Note
In this specific case, the port binding works in a PaaS environment such as Heroku or Cloud
Foundry In those two platforms, the PORT environment variable is set automatically and Spring
can bind to capitalized synonyms for Environment properties.
spring:
application:
name: cruncher
datasource:
driverClassName: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost/test
server:
port: 9000
Create a file called application.yml and put it in the root of your classpath. Then add snakeyaml
to your dependencies (Maven coordinates org.yaml:snakeyaml, already included if you use the
spring-boot-starter). A YAML file is parsed to a Java Map<String,Object> (like a JSON
object), and Spring Boot flattens the map so that it is one level deep and has period-separated keys, as
many people are used to with Properties files in Java.
spring.application.name=cruncher
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost/test
server.port=9000
See Section 24.6, Using YAML Instead of Properties in the Spring Boot features section for more
information about YAML.
In Spring Boot, you can also set the active profile in application.properties, as shown in the
following example:
spring.profiles.active=production
A value set this way is replaced by the System property or environment variable setting but not by
the SpringApplicationBuilder.profiles() method. Thus, the latter Java API can be used to
augment the profiles without changing the defaults.
See Chapter 25, Profiles in the Spring Boot features section for more information.
If a YAML document contains a spring.profiles key, then the profiles value (a comma-separated
list of profiles) is fed into the Spring Environment.acceptsProfiles() method. If any of those
profiles is active, that document is included in the final merge (otherwise not), as shown in the following
example:
server:
port: 9000
---
spring:
profiles: development
server:
port: 9001
---
spring:
profiles: production
server:
port: 0
In the preceding example, the default port is 9000. However, if the Spring profile called development
is active, then the port is 9001. If production is active, then the port is 0.
The YAML documents are merged in the order in which they are encountered (so later values override
earlier ones).
To do the same thing with properties files, you can use application-${profile}.properties to
specify profile-specific values.
A running application with the Actuator features has a configprops endpoint that shows all the bound
and bindable properties available through @ConfigurationProperties.
The appendix includes an application.properties example with a list of the most common
properties supported by Spring Boot. The definitive list comes from searching the source code for
@ConfigurationProperties and @Value annotations as well as the occasional use of Binder.
Note
Many starters support only Spring MVC, so they transitively bring spring-boot-starter-web
into your application classpath.
If you need to use a different HTTP server, you need to exclude the default dependencies and include
the one you need. Spring Boot provides separate starters for HTTP servers to help make this process
as easy as possible.
The following Maven example shows how to exclude Tomcat and include Jetty for Spring MVC:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<!-- Exclude the Tomcat dependency -->
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Use Jetty instead -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
The following Gradle example shows how to exclude Netty and include Undertow for Spring WebFlux:
configurations {
// exclude Reactor Netty
compile.exclude module: 'spring-boot-starter-reactor-netty'
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-webflux'
// Use Undertow instead
compile 'org.springframework.boot:spring-boot-starter-undertow'
// ...
}
Note
To add a Servlet, Filter, or Servlet *Listener by using a Spring bean, you must provide a @Bean
definition for it. Doing so can be very useful when you want to inject configuration or dependencies.
However, you must be very careful that they do not cause eager initialization of too many other beans,
because they have to be installed in the container very early in the application lifecycle (for example,
it is not a good idea to have them depend on your DataSource or JPA configuration). You can work
around restrictions like that by initializing the beans lazily when first used instead of on initialization.
In the case of Filters and Servlets, you can also add mappings and init parameters by adding
a FilterRegistrationBean or a ServletRegistrationBean instead of or in addition to the
underlying component.
Note
If no dispatcherType is specified on a filter registration, REQUEST is used. This aligns with the
Servlet Specifications default dispatcher type.
As described above, any Servlet or Filter beans are registered with the servlet container
automatically. To disable registration of a particular Filter or Servlet bean, create a registration
bean for it and mark it as disabled, as shown in the following example:
@Bean
public FilterRegistrationBean registration(MyFilter filter) {
FilterRegistrationBean registration = new FilterRegistrationBean(filter);
registration.setEnabled(false);
return registration;
}
To switch off the HTTP endpoints completely but still create a WebApplicationContext, use
server.port=-1. (Doing so is sometimes useful for testing.)
For more details, see the section called Customizing Embedded Servlet Containers in the Spring
Boot features section, or the ServerProperties source code.
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(webEnvironment=WebEnvironment.RANDOM_PORT)
public class MyWebIntegrationTests {
@Autowired
ServletWebServerApplicationContext server;
@LocalServerPort
int port;
// ...
Note
server.port=8443
server.ssl.key-store=classpath:keystore.jks
server.ssl.key-store-password=secret
server.ssl.key-password=another-secret
Using configuration such as the preceding example means the application no longer supports a plain
HTTP connector at port 8080. Spring Boot does not support the configuration of both an HTTP connector
and an HTTPS connector through application.properties. If you want to have both, you need
to configure one of them programmatically. We recommend using application.properties to
configure HTTPS, as the HTTP connector is the easier of the two to configure programmatically. See
the spring-boot-sample-tomcat-multi-connectors sample project for an example.
Note
Spring Boot does not support h2c, the cleartext version of the HTTP/2 protocol. So you must
configure SSL first.
Currently, only Undertow and Tomcat are supported with this configuration key.
Spring Boot ships by default with Tomcat 8.5.x; with that version, HTTP/2 is only supported if the
libtcnative library and its dependencies are installed on the host operating system.
The library folder must be made available, if not already, to the JVM library path; this can be done with
a JVM argument such as -Djava.library.path=/usr/local/opt/tomcat-native/lib. More
on this in the official Tomcat documentation.
Starting Tomcat 8.5.x without that native support will log the following error:
This error is not fatal, and the application starts with HTTP/1.1 SSL support still.
Running your application with Tomcat 9.0.x and JDK9 doesnt require any native library installed. To
use Tomcat 9, you can override the tomcat.version build property with the version of your choice.
For instance, the following settings log access on Tomcat with a custom pattern.
server.tomcat.basedir=my-tomcat
server.tomcat.accesslog.enabled=true
server.tomcat.accesslog.pattern=%t %a "%r" %s (%D ms)
Note
The default location for logs is a logs directory relative to the Tomcat base directory. By default,
the logs directory is a temporary directory, so you may want to fix Tomcats base directory or use
an absolute path for the logs. In the preceding example, the logs are available in my-tomcat/
logs relative to the working directory of the application.
Access logging for undertow can be configured in a similar fashion, as shown in the following example:
server.undertow.accesslog.enabled=true
server.undertow.accesslog.pattern=%t %a "%r" %s (%D ms)
Logs are stored in a logs directory relative to the working directory of the application. You can customize
this location by setting the server.undertow.accesslog.directory property.
server.jetty.accesslog.enabled=true
server.jetty.accesslog.filename=/var/log/jetty-access.log
By default, logs are redirected to System.err. For more details, see the documentation.
If the proxy adds conventional X-Forwarded-For and X-Forwarded-Proto headers (most proxy
server do so), the absolute links should be rendered correctly, provided server.use-forward-
headers is set to true in your application.properties.
Note
server.tomcat.remote-ip-header=x-your-remote-ip-header
server.tomcat.protocol-header=x-your-protocol-header
Tomcat is also configured with a default regular expression that matches internal proxies that are to
be trusted. By default, IP addresses in 10/8, 192.168/16, 169.254/16 and 127/8 are trusted. You
can customize the valves configuration by adding an entry to application.properties, as shown
in the following example:
server.tomcat.internal-proxies=192\\.168\\.\\d{1,3}\\.\\d{1,3}
Note
The double backslashes are required only when you use a properties file for configuration. If you
use YAML, single backslashes are sufficient, and a value equivalent to that shown in the preceding
example would be 192\.168\.\d{1,3}\.\d{1,3}.
Note
You can trust all proxies by setting the internal-proxies to empty (but do not do so in
production).
You can take complete control of the configuration of Tomcats RemoteIpValve by switching the
automatic one off (to do so, set server.use-forward-headers=false) and adding a new valve
instance in a TomcatServletWebServerFactory bean.
@Bean
public ServletWebServerFactory servletContainer() {
TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
tomcat.addAdditionalTomcatConnectors(createSslConnector());
return tomcat;
}
protocol.setKeystoreFile(keystore.getAbsolutePath());
protocol.setKeystorePass("changeit");
protocol.setTruststoreFile(truststore.getAbsolutePath());
protocol.setTruststorePass("changeit");
protocol.setKeyAlias("apitester");
return connector;
}
catch (IOException ex) {
throw new IllegalStateException("can't access keystore: [" + "keystore"
+ "] or truststore: [" + "keystore" + "]", ex);
}
}
If at all possible, you should consider updating your code to only store values compliant with later
Cookie specifications. If, however, you cannot change the way that cookies are written, you can instead
configure Tomcat to use a LegacyCookieProcessor. To switch to the LegacyCookieProcessor,
use an ServletWebServerFactoryCustomizer bean that adds a TomcatContextCustomizer,
as shown in the following example:
@Bean
public WebServerFactoryCustomizer<TomcatServletWebServerFactory> cookieProcessorCustomizer() {
return (serverFactory) -> serverFactory.addContextCustomizers(
(context) -> context.setCookieProcessor(new LegacyCookieProcessor()));
}
@Bean
public UndertowServletWebServerFactory servletWebServerFactory() {
UndertowServletWebServerFactory factory = new UndertowServletWebServerFactory();
factory.addBuilderCustomizers(new UndertowBuilderCustomizer() {
@Override
public void customize(Builder builder) {
builder.addHttpListener(8080, "0.0.0.0");
}
});
return factory;
}
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
The bean shown in the preceding example registers any @ServerEndpoint annotated beans with
the underlying WebSocket container. When deployed to a standalone servlet container, this role is
performed by a servlet container initializer, and the ServerEndpointExporter bean is not required.
server.compression.enabled=true
By default, responses must be at least 2048 bytes in length for compression to be performed. You can
configure this behavior by setting the server.compression.min-response-size property.
By default, responses are compressed only if their content type is one of the following:
text/html
text/xml
text/plain
text/css
@RestController
public class MyController {
@RequestMapping("/thing")
public MyThing thing() {
return new MyThing();
}
As long as MyThing can be serialized by Jackson2 (true for a normal POJO or Groovy object), then
localhost:8080/thing serves a JSON representation of it by default. Note that, in a browser, you
might sometimes see XML responses, because browsers tend to send accept headers that prefer XML.
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
</dependency>
You may also want to add a dependency on Woodstox. It is faster than the default StAX implementation
provided by the JDK and also adds pretty-print support and improved namespace handling. The
following listing shows how to include a dependency on Woodstox:
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
</dependency>
If Jacksons XML extension is not available, JAXB (provided by default in the JDK) is used, with the
additional requirement of having MyThing annotated as @XmlRootElement, as shown in the following
example:
@XmlRootElement
public class MyThing {
private String name;
// .. getters and setters
}
To get the server to render XML instead of JSON, you might have to send an Accept: text/xml
header (or use a browser).
The ObjectMapper (or XmlMapper for Jackson XML converter) instance (created by default) has the
following customized properties:
MapperFeature.DEFAULT_VIEW_INCLUSION is disabled
DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES is disabled
Spring Boot has also some features to make it easier to customize this behavior.
You can configure the ObjectMapper and XmlMapper instances by using the environment. Jackson
provides an extensive suite of simple on/off features that can be used to configure various aspects of
its processing. These features are described in six enums (in Jackson) that map onto properties in the
environment:
com.fasterxml.jackson.databind.DeserializationFeature
spring.jackson.deserialization.<feature_name>=tru
false
com.fasterxml.jackson.core.JsonGenerator.Feature
spring.jackson.generator.<feature_name>=true|
false
com.fasterxml.jackson.databind.MapperFeature
spring.jackson.mapper.<feature_name>=true|
false
com.fasterxml.jackson.core.JsonParser.Feature
spring.jackson.parser.<feature_name>=true|
false
com.fasterxml.jackson.databind.SerializationFeature
spring.jackson.serialization.<feature_name>=true|
false
com.fasterxml.jackson.annotation.JsonInclude.Include
spring.jackson.default-property-
inclusion=always|non_null|
non_absent|non_default|non_empty
If you want to replace the default ObjectMapper completely, either define a @Bean of
that type and mark it as @Primary or, if you prefer the builder-based approach, define a
Jackson2ObjectMapperBuilder @Bean. Note that, in either case, doing so disables all auto-
configuration of the ObjectMapper.
See the Section 75.4, Customize the @ResponseBody Rendering section and the
WebMvcAutoConfiguration source code for more details.
As in normal MVC usage, any WebMvcConfigurer beans that you provide can also contribute
converters by overriding the configureMessageConverters method. However, unlike with normal
MVC, you can supply only additional converters that you need (because Spring Boot uses the same
mechanism to contribute its defaults). Finally, if you opt out of the Spring Boot default MVC configuration
by providing your own @EnableWebMvc configuration, you can take control completely and do
everything manually by using getMessageConverters from WebMvcConfigurationSupport.
The multipart support is helpful when you want to receive multipart encoded file data as a
@RequestParam-annotated parameter of type MultipartFile in a Spring MVC controller handler
method.
If you use Groovy templates (actually, if groovy-templates is on your classpath), you also
have a GroovyMarkupViewResolver named groovyMarkupViewResolver. It looks for resources
in a loader path by surrounding the view name with a prefix and suffix (externalized to
spring.groovy.template.prefix and spring.groovy.template.suffix). The prefix and
suffix have default values of classpath:/templates/ and .tpl, respectively. You can override
GroovyMarkupViewResolver by providing a bean of the same name.
WebMvcAutoConfiguration
ThymeleafAutoConfiguration
FreeMarkerAutoConfiguration
GroovyTemplateAutoConfiguration
The exact details of the proxy configuration depend on the underlying client request factory that is
being used. The following example configures HttpComponentsClientRequestFactory with an
HttpClient that uses a proxy for all hosts except 192.168.0.5:
@Override
public void customize(RestTemplate restTemplate) {
HttpHost proxy = new HttpHost("proxy.example.com");
HttpClient httpClient = HttpClientBuilder.create()
.setRoutePlanner(new DefaultProxyRoutePlanner(proxy) {
@Override
public HttpHost determineProxy(HttpHost target,
HttpRequest request, HttpContext context)
throws HttpException {
if (target.getHostName().equals("192.168.0.5")) {
return null;
}
return super.determineProxy(target, request, context);
}
}).build();
restTemplate.setRequestFactory(
new HttpComponentsClientHttpRequestFactory(httpClient));
}
77. Logging
Spring Boot has no mandatory logging dependency, except for the Commons Logging API, of which
there are many implementations to choose from. To use Logback, you need to include it and jcl-
over-slf4j (which implements the Commons Logging API) on the classpath. The simplest way to
do that is through the starters, which all depend on spring-boot-starter-logging. For a web
application, you need only spring-boot-starter-web, since it depends transitively on the logging
starter. If you use Maven, the following dependency adds logging for you:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
Spring Boot has a LoggingSystem abstraction that attempts to configure logging based on the content
of the classpath. If Logback is available, it is the first choice.
If the only change you need to make to logging is to set the levels of various loggers, you can do so in
application.properties by using the "logging.level" prefix, as shown in the following example:
logging.level.org.springframework.web=DEBUG
logging.level.org.hibernate=ERROR
You can also set the location of a file to which to write the log (in addition to the console) by using
"logging.file".
To configure the more fine-grained settings of a logging system, you need to use the native configuration
format supported by the LoggingSystem in question. By default, Spring Boot picks up the native
configuration from its default location for the system (such as classpath:logback.xml for Logback),
but you can set the location of the config file by using the "logging.config" property.
If you look at base.xml in the spring-boot jar, you can see that it uses some useful System properties
that the LoggingSystem takes care of creating for you:
${LOG_PATH}: Whether logging.path (representing a directory for log files to live in) was set in
Boots external configuration.
Spring Boot also provides some nice ANSI color terminal output on a console (but not in a log file) by
using a custom Logback converter. See the default base.xml configuration for details.
If Groovy is on the classpath, you should be able to configure Logback with logback.groovy as well.
If present, this setting is given preference.
You also need to add logging.file to your application.properties, as shown in the following
example:
logging.file=myapplication.log
The simplest path is probably through the starters, even though it requires some jiggling with excludes.
The following example shows how to set up the starters in Maven:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
Note
The Log4j starters gather together the dependencies for common logging requirements (such
as having Tomcat use java.util.logging but configuring the output using Log4j 2). See the
Actuator Log4j 2 samples for more detail and to see it in action.
In addition to its default XML configuration format, Log4j 2 also supports YAML and JSON configuration
files. To configure Log4j 2 to use an alternative configuration file format, add the appropriate
dependencies to the classpath and name your configuration files to match your chosen file format, as
shown in the following example:
@Bean
@ConfigurationProperties(prefix="app.datasource")
public DataSource dataSource() {
return new FancyDataSource();
}
The following example shows how to define a data source by setting properties:
app.datasource.url=jdbc:h2:mem:mydb
app.datasource.username=sa
app.datasource.pool-size=30
Assuming that your FancyDataSource has regular JavaBean properties for the URL, the username,
and the pool size, these settings are bound automatically before the DataSource is made available
to other components. The regular database initialization also happens (so the relevant sub-set of
spring.datasource.* can still be used with your custom configuration).
You can apply the same principle if you configure a custom JNDI DataSource, as shown in the following
example:
@Bean(destroyMethod="")
@ConfigurationProperties(prefix="app.datasource")
public DataSource dataSource() throws Exception {
JndiDataSourceLookup dataSourceLookup = new JndiDataSourceLookup();
return dataSourceLookup.getDataSource("java:comp/env/jdbc/YourDS");
}
Spring Boot also provides a utility builder class, called DataSourceBuilder, that can be used to create
one of the standard data sources (if it is on the classpath). The builder can detect the one to use based
on whats available on the classpath. It also auto-detects the driver based on the JDBC URL.
The following example shows how to create a data source by using a DataSourceBuilder:
@Bean
@ConfigurationProperties("app.datasource")
public DataSource dataSource() {
return DataSourceBuilder.create().build();
}
To run an app with that DataSource, all you need is the connection information. Pool-specific settings
can also be provided. Check the implementation that is going to be used at runtime for more details.
The following example shows how to define a JDBC data source by setting properties:
app.datasource.url=jdbc:mysql://localhost/test
app.datasource.username=dbuser
app.datasource.password=dbpass
app.datasource.pool-size=30
However, there is a catch. Because the actual type of the connection pool is not exposed, no keys
are generated in the metadata for your custom DataSource and no completion is available in your
IDE (because the DataSource interface exposes no properties). Also, if you happen to have Hikari on
the classpath, this basic setup does not work, because Hikari has no url property (but does have a
jdbcUrl property). In that case, you must rewrite your configuration as follows:
app.datasource.jdbc-url=jdbc:mysql://localhost/test
app.datasource.username=dbuser
app.datasource.password=dbpass
app.datasource.maximum-pool-size=30
You can fix that by forcing the connection pool to use and return a dedicated implementation rather than
DataSource. You cannot change the implementation at runtime, but the list of options will be explicit.
@Bean
@ConfigurationProperties("app.datasource")
public HikariDataSource dataSource() {
return DataSourceBuilder.create().type(HikariDataSource.class).build();
}
You can even go further by leveraging what DataSourceProperties does for you that is, by
providing a default embedded database with a sensible username and password if no URL is provided.
You can easily initialize a DataSourceBuilder from the state of any DataSourceProperties
object, so you could also inject the one Spring Boot creates automatically. However, that would
split your configuration into two namespaces: url, username, password, type, and driver on
spring.datasource and the rest on your custom namespace (app.datasource). To avoid that,
you can redefine a custom DataSourceProperties on your custom namespace, as shown in the
following example:
@Bean
@Primary
@ConfigurationProperties("app.datasource")
public DataSourceProperties dataSourceProperties() {
return new DataSourceProperties();
}
@Bean
@ConfigurationProperties("app.datasource")
public HikariDataSource dataSource(DataSourceProperties properties) {
return properties.initializeDataSourceBuilder().type(HikariDataSource.class)
.build();
}
This setup puts you in sync with what Spring Boot does for you by default, except that a dedicated
connection pool is chosen (in code) and its settings are exposed in the same namespace. Because
DataSourceProperties is taking care of the url/jdbcUrl translation for you, you can configure
it as follows:
app.datasource.url=jdbc:mysql://localhost/test
app.datasource.username=dbuser
app.datasource.password=dbpass
app.datasource.maximum-pool-size=30
Note
See Section 29.1, Configure a DataSource in the Spring Boot features section and the
DataSourceAutoConfiguration class for more details.
If you create your own DataSource, the auto-configuration backs off. In the following example, we
provide the exact same feature set as the auto-configuration provides on the primary data source:
@Bean
@Primary
@ConfigurationProperties("app.datasource.foo")
public DataSourceProperties fooDataSourceProperties() {
return new DataSourceProperties();
}
@Bean
@Primary
@ConfigurationProperties("app.datasource.foo")
public DataSource fooDataSource() {
return fooDataSourceProperties().initializeDataSourceBuilder().build();
}
@Bean
@ConfigurationProperties("app.datasource.bar")
public BasicDataSource barDataSource() {
return DataSourceBuilder.create().type(BasicDataSource.class).build();
}
Tip
Both data sources are also bound for advanced customizations. For instance, you could configure them
as follows:
app.datasource.foo.type=com.zaxxer.hikari.HikariDataSource
app.datasource.foo.maximum-pool-size=30
app.datasource.bar.url=jdbc:mysql://localhost/test
app.datasource.bar.username=dbuser
app.datasource.bar.password=dbpass
app.datasource.bar.max-total=30
You can apply the same concept to the secondary DataSource as well, as shown in the following
example:
@Bean
@Primary
@ConfigurationProperties("app.datasource.foo")
@Bean
@Primary
@ConfigurationProperties("app.datasource.foo")
public DataSource fooDataSource() {
return fooDataSourceProperties().initializeDataSourceBuilder().build();
}
@Bean
@ConfigurationProperties("app.datasource.bar")
public DataSourceProperties barDataSourceProperties() {
return new DataSourceProperties();
}
@Bean
@ConfigurationProperties("app.datasource.bar")
public DataSource barDataSource() {
return barDataSourceProperties().initializeDataSourceBuilder().build();
}
The preceding example configures two data sources on custom namespaces with the same logic as
Spring Boot would use in auto-configuration.
For many applications, all you need is to put the right Spring Data dependencies on your classpath (there
is a spring-boot-starter-data-jpa for JPA and a spring-boot-starter-data-mongodb
for Mongodb) and create some repository interfaces to handle your @Entity objects. Examples are in
the JPA sample and the Mongodb sample.
Spring Boot tries to guess the location of your @Repository definitions, based on the
@EnableAutoConfiguration it finds. To get more control, use the @EnableJpaRepositories
annotation (from Spring Data JPA).
@Configuration
@EnableAutoConfiguration
@EntityScan(basePackageClasses=City.class)
public class Application {
//...
configuration properties. Some of them are automatically detected according to the context so you
should not have to set them.
The dialect to use is also automatically detected based on the current DataSource, but you can set
spring.jpa.database yourself if you want to be explicit and bypass that check on startup.
Note
The most common options to set are shown in the following example:
spring.jpa.hibernate.naming.physical-strategy=com.example.MyPhysicalNamingStrategy
spring.jpa.show-sql=true
If you prefer to use Hibernate 5s default instead, set the following property:
spring.jpa.hibernate.naming.physical-
strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
@Bean
public PhysicalNamingStrategy physicalNamingStrategy() {
return new PhysicalNamingStrategyStandardImpl();
}
@Bean
public LocalContainerEntityManagerFactoryBean customerEntityManagerFactory(
EntityManagerFactoryBuilder builder) {
return builder
.dataSource(customerDataSource())
.packages(Customer.class)
.persistenceUnit("customers")
.build();
}
@Bean
public LocalContainerEntityManagerFactoryBean orderEntityManagerFactory(
EntityManagerFactoryBuilder builder) {
return builder
.dataSource(orderDataSource())
.packages(Order.class)
.persistenceUnit("orders")
.build();
}
The configuration above almost works on its own. To complete the picture, you need to configure
TransactionManagers for the two EntityManagers as well. One of them could be picked up by the
default JpaTransactionManager in Spring Boot if you mark it as @Primary. The other would have
to be explicitly injected into a new instance. Alternatively, you might be able to use a JTA transaction
manager that spans both.
If you are using Spring Data, you need to configure @EnableJpaRepositories accordingly, as shown
in the following example:
@Configuration
@EnableJpaRepositories(basePackageClasses = Customer.class,
entityManagerFactoryRef = "customerEntityManagerFactory")
public class CustomerConfiguration {
...
}
@Configuration
@EnableJpaRepositories(basePackageClasses = Order.class,
entityManagerFactoryRef = "orderEntityManagerFactory")
public class OrderConfiguration {
...
}
The same obstacle and the same features exist for other auto-configured Spring Data repository types
(Elasticsearch, Solr, and others). To work with them, change the names of the annotations and flags
accordingly.
Spring Boot exposes a set of useful properties (from the spring.data.rest namespace) that
customize the RepositoryRestConfiguration. If you need to provide additional customization,
you should use a RepositoryRestConfigurer bean.
Note
If you do not specify any order on your custom RepositoryRestConfigurer, it runs after the
one Spring Boot uses internally. If you need to specify an order, make sure it is higher than 0.
/**
* {@link EntityManagerFactoryDependsOnPostProcessor} that ensures that
* {@link EntityManagerFactory} beans depend on the {@code elasticsearchClient} bean.
*/
@Configuration
static class ElasticsearchJpaDependencyConfiguration
extends EntityManagerFactoryDependsOnPostProcessor {
ElasticsearchJpaDependencyConfiguration() {
super("elasticsearchClient");
}
spring.jpa.generate-ddl (boolean) switches the feature on and off and is vendor independent.
Note
You can output the schema creation by enabling the org.hibernate.SQL logger. This is done
for you automatically if you enable the debug mode.
In addition, a file named import.sql in the root of the classpath is executed on startup if Hibernate
creates the schema from scratch (that is, if the ddl-auto property is set to create or create-drop).
This can be useful for demos and for testing if you are careful but is probably not something you want
to be on the classpath in production. It is a Hibernate feature (and has nothing to do with Spring).
Spring Boot automatically creates the schema of an embedded DataSource. This behavior can be
customized by using the spring.datasource.initialization-mode property (and it can also be
always or never).
By default, Spring Boot enables the fail-fast feature of the Spring JDBC initializer, so, if the
scripts cause exceptions, the application fails to start. You can tune that behavior by setting
spring.datasource.continue-on-error.
Note
In a JPA-based app, you can choose to let Hibernate create the schema or use schema.sql,
but you cannot do both. Make sure to disable spring.jpa.hibernate.ddl-auto if you use
schema.sql.
spring.batch.initialize-schema=always
You can also switch off the initialization explicitly by setting spring.batch.initialize-
schema=never.
The migrations are scripts in the form V<VERSION>__<NAME>.sql (with <VERSION> an underscore-
separated version, such as 1 or 2_1). By default, they live in a folder called classpath:db/
migration, but you can modify that location by setting spring.flyway.locations. You can also
add a special {vendor} placeholder to use vendor-specific scripts. Assume the following:
spring.flyway.locations=db/migration/{vendor}
Rather than using db/migration, the preceding configuration sets the folder to use according to the
type of the database (such as db/migration/mysql for MySQL). The list of supported database are
available in DatabaseDriver.
See the Flyway class from flyway-core for details of available settings such as schemas and others.
In addition, Spring Boot provides a small set of properties (in FlywayProperties) that can be used
to disable the migrations or switch off the location checking. Spring Boot calls Flyway.migrate()
to perform the database migration. If you would like more control, provide a @Bean that implements
FlywayMigrationStrategy.
Flyway supports SQL and Java callbacks. To use SQL-based callbacks, place the callback scripts
in the classpath:db/migration folder. To use Java-based callbacks, create one or more beans
that implement FlywayCallback or, preferably, extend BaseFlywayCallback. Any such beans
are automatically registered with Flyway. They can be ordered by using @Order or by implementing
Ordered.
By default, Flyway autowires the (@Primary) DataSource in your context and uses that for
migrations. If you like to use a different DataSource, you can create one and mark its @Bean
as @FlywayDataSource. If you do so and want two data sources, remember to create another
one and mark it as @Primary. Alternatively, you can use Flyways native DataSource by setting
spring.flyway.[url,user,password] in external properties.
There is a Flyway sample so that you can see how to set things up.
You can also use Flyway to provide data for specific scenarios. For example, you can place test-
specific migrations in src/test/resources and they are run only when your application starts for
testing. If you want to be more sophisticated, you can use profile-specific configuration to customize
spring.flyway.locations so that certain migrations run only when a particular profile is active.
For example, in application-dev.properties, you might specify the following setting:
spring.flyway.locations=classpath:/db/migration,classpath:/dev/db/migration
With that setup, migrations in dev/db/migration run only when the dev profile is active.
By default, Liquibase autowires the (@Primary) DataSource in your context and uses that for
migrations. If you like to use a different DataSource, you can create one and mark its @Bean as
@LiquibaseDataSource. If you do so and you want two data sources, remember to create another
one and mark it as @Primary. Alternatively, you can use Liquibases native DataSource by setting
spring.liquibase.[url,user,password] in external properties.
See LiquibaseProperties for details about available settings such as contexts, the default schema,
and others.
There is a Liquibase sample so that you can see how to set things up.
80. Messaging
Spring Boot offers a number of starters that include messaging. This section answers questions that
arise from using messaging with Spring Boot.
@Bean
public DefaultJmsListenerContainerFactory jmsListenerContainerFactory(
ConnectionFactory connectionFactory,
DefaultJmsListenerContainerFactoryConfigurer configurer) {
DefaultJmsListenerContainerFactory listenerFactory =
new DefaultJmsListenerContainerFactory();
configurer.configure(listenerFactory, connectionFactory);
listenerFactory.setTransactionManager(null);
listenerFactory.setSessionTransacted(false);
return listenerFactory;
}
The preceding example overrides the default factory, and it should be applied to any other factory that
your application defines, if any.
By default, batch applications require a DataSource to store job details. If you want
to deviate from that, you need to implement BatchConfigurer. See The Javadoc of
@EnableBatchProcessing for more details.
If the application context includes a JobRegistry, the jobs in spring.batch.job.names are looked
up in the registry instead of being autowired from the context. This is a common pattern with more
complex systems, where multiple jobs are defined in child contexts and registered centrally.
82. Actuator
Spring Boot includes the Spring Boot Actuator. This section answers questions that often arise from
its use.
For more detail, see the ManagementServerProperties source code and Section 50.2,
Customizing the Management Server Port in the Production-ready features section.
Note
Overriding the error page with your own depends on the templating technology that you use. For
example, if you use Thymeleaf, you can add an error.html template. If you use FreeMarker, you can
add an error.ftl template. In general, you need a View that resolves with a name of error or a
@Controller that handles the /error path. Unless you replaced some of the default configuration,
you should find a BeanNameViewResolver in your ApplicationContext, so a @Bean named
error would be a simple way of doing that. See ErrorMvcAutoConfiguration for more options.
See also the section on Error Handling for details of how to register handlers in the servlet container.
83. Security
83.1 Switch off the Spring Boot Security Configuration
If you define a @Configuration with @EnableWebSecurity anywhere in your application, it switches
off the default webapp security settings in Spring Boot (but leaves the Actuators security enabled).
To tweak the defaults try setting properties in security.* (see SecurityProperties for details of
available settings) and the SECURITY section of Common Application Properties.
@Configuration
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.inMemoryAuthentication()
.withUser("barry").password("password").roles("USER"); // ... etc.
}
You get the best results if you put this in a nested class or a standalone class (that is, not mixed in
with a lot of other @Beans that might be allowed to influence the order of instantiation). The secure web
sample is a useful template to follow.
If you experience instantiation issues (for example, when using JDBC or JPA for the user
detail store), it might be worth extracting the AuthenticationManagerBuilder callback into a
GlobalAuthenticationConfigurerAdapter (in the init() method so that it happens before the
authentication manager is needed elsewhere), as shown in the following example:
@Configuration
public class AuthenticationManagerConfiguration extends
GlobalAuthenticationConfigurerAdapter {
@Override
public void init(AuthenticationManagerBuilder auth) {
auth.inMemoryAuthentication() // ... etc.
}
RemoteIpValve automatically if it detects some environment settings, and you should be able to
rely on the HttpServletRequest to report whether it is secure or not (even downstream of a proxy
server that handles the real SSL termination). The standard behavior is determined by the presence or
absence of certain request headers (x-forwarded-for and x-forwarded-proto), whose names
are conventional, so it should work with most front-end proxies. You can switch on the valve by adding
some entries to application.properties, as shown in the following example:
server.tomcat.remote-ip-header=x-forwarded-for
server.tomcat.protocol-header=x-forwarded-proto
(The presence of either of those properties switches on the valve. Alternatively, you can add the
RemoteIpValve yourself by adding a TomcatServletWebServerFactory bean.)
Spring Security can also be configured to require a secure channel for all (or some) requests.
To switch that on in a Spring Boot application, set security.require_ssl to true in
application.properties.
Alternatively, running in an IDE (especially with debugging on) is a good way to do development (all
modern IDEs allow reloading of static resources and usually also hot-swapping of Java class changes).
Finally, the Maven and Gradle plugins can be configured (see the addResources property) to support
running from the command line with reloading of static files directly from source. You can use that with
an external css/js compiler process if you are writing that code with higher-level tools.
Thymeleaf Templates
FreeMarker Templates
Groovy Templates
For more details, see the Chapter 20, Developer Tools section.
85. Build
Spring Boot includes build plugins for Maven and Gradle. This section answers common questions
about these plugins.
To generate build information with Maven, add an execution for the build-info goal, as shown in
the following example:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Tip
See the Spring Boot Maven Plugin documentation for more details.
springBoot {
buildInfo()
}
Additional properties can be added by using the DSL, as shown in the following example:
springBoot {
buildInfo {
additionalProperties = [
'foo': 'bar'
]
}
}
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
</plugins>
</build>
Gradle users can achieve the same result by using the gradle-git-properties plugin, as shown
in the following example:
plugins {
id "com.gorylenko.gradle-git-properties" version "1.4.17"
}
Tip
The commit time in git.properties is expected to match the following format: yyyy-MM-
ddTHH:mm:ssZ. This is the default format for both plugins listed above. Using this format
allows the time to be parsed into a Date and its format, when serialized to JSON, to be controlled
by Jacksons date serialization configuration settings.
<properties>
<slf4j.version>1.7.5<slf4j.version>
</properties>
Note
Doing so only works if your Maven project inherits (directly or indirectly) from spring-
boot-dependencies. If you have added spring-boot-dependencies in your own
dependencyManagement section with <scope>import</scope>, you have to redefine the
artifact yourself instead of overriding the property.
Warning
Each Spring Boot release is designed and tested against a specific set of third-party
dependencies. Overriding versions may cause compatibility issues.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
If you do not use the parent POM, you can still use the plugin. However, you must additionally add an
<executions> section, as follows:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
If you cannot rearrange your code as recommended above, Spring Boots Maven and Gradle plugins
must be configured to produce a separate artifact that is suitable for use as a dependency. The
executable archive cannot be used as a dependency as the executable jar format packages application
classes in BOOT-INF/classes. This means that they cannot be found when the executable jar is used
as a dependency.
To produce the two artifacts, one that can be used as a dependency and one that is executable, a
classifier must be specified. This classifier is applied to the name of the executable archive, leaving the
default archive for use as a dependency.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>exec</classifier>
</configuration>
</plugin>
</plugins>
</build>
To deal with any problematic libraries, you can flag that specific nested jars should be automatically
unpacked to the temp folder when the executable jar first runs.
For example, to indicate that JRuby should be flagged for unpacking by using the Maven Plugin, you
would add the following configuration:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<requiresUnpack>
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-complete</artifactId>
</dependency>
</requiresUnpack>
</configuration>
</plugin>
</plugins>
</build>
In Maven, the executable jar must be the main artifact and you can add a classified jar for the library,
as follows:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>lib</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>lib</classifier>
<excludes>
<exclude>application.yml</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
1. If you are building a jar, package the applications classes and resources in a nested BOOT-INF/
classes directory. If you are building a war, package the applications classes in a nested WEB-
INF/classes directory as usual.
2. Add the runtime dependencies in a nested BOOT-INF/lib directory for a jar or WEB-INF/lib for
a war. Remember not to compress the entries in the archive.
3. Add the provided (embedded container) dependencies in a nested BOOT-INF/lib directory for a
jar or WEB-INF/lib-provided for a war. Remember not to compress the entries in the archive.
4. Add the spring-boot-loader classes at the root of the archive (so that the Main-Class is
available).
5. Use the appropriate launcher (such as JarLauncher for a jar file) as a Main-Class attribute in
the manifest and specify the other properties it needs as manifest entries principally, by setting a
Start-Class property.
The following example shows how to build an executable archive with Ant:
The Ant Sample has a build.xml file with a manual task that should work if you run it with the following
command:
Then you can run the application with the following command:
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Application.class);
}
The next step is to update your build configuration such that your project produces a war file rather
than a jar file. If you use Maven and spring-boot-starter-parent (which configures Mavens war
plugin for you) all you need to do is to modify pom.xml to change the packaging to war, as follows:
<packaging>war</packaging>
If you use Gradle, you need to modify build.gradle to apply the war plugin to the project, as follows:
The final step in the process is to ensure that the embedded servlet container does not interfere with the
servlet container to which the war file is deployed. To do so, you need to mark the embedded servlet
container dependency as being provided.
If you use Maven, the following example marks the servlet container (Tomcat, in this case) as being
provided:
<dependencies>
<!-- -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<!-- -->
</dependencies>
If you use Gradle, the following example marks the servlet container (Tomcat, in this case) as being
provided:
dependencies {
//
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
//
}
Note
If you use the Spring Boot build tools, marking the embedded servlet container dependency as provided
produces an executable war file with the provided dependencies packaged in a lib-provided
directory. This means that, in addition to being deployable to a servlet container, you can also run your
application by using java -jar on the command line.
Tip
Take a look at Spring Boots sample applications for a Maven-based example of the previously
described configuration.
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
// Customize the application or call application.sources(...) to add sources
// Since our example is itself a @Configuration class (via @SpringBootApplication)
// we actually don't need to override this method.
return application;
}
Remember that, whatever you put in the sources is merely a Spring ApplicationContext.
Normally, anything that already works should work here. There might be some beans you can remove
later and let Spring Boot provide its own defaults for them, but it should be possible to get something
working before you need to do that.
Vanilla usage of Spring DispatcherServlet and Spring Security should require no further changes.
If you have other features in your application (for instance, using other servlets or filters), you may
need to add some configuration to your Application context, by replacing those elements from the
web.xml as follows:
Once the war file is working, you can make it executable by adding a main method to your
Application, as shown in the following example:
Note
@SpringBootApplication
public class Application extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) {
return configureApplication(builder);
}
All of these should be amenable to translation, but each might require slightly different techniques.
Servlet 3.0+ applications might translate pretty easily if they already use the Spring Servlet 3.0+
initializer support classes. Normally, all the code from an existing WebApplicationInitializer
can be moved into a SpringBootServletInitializer. If your existing application has more than
one ApplicationContext (for example, if it uses AbstractDispatcherServletInitializer)
then you might be able to combine all your context sources into a single SpringApplication. The
main complication you might encounter is if combining does not work and you need to maintain the
context hierarchy. See the entry on building a hierarchy for examples. An existing parent context that
contains web-specific features usually needs to be broken up so that all the ServletContextAware
components are in the child context.
Applications that are not already Spring applications might be convertible to Spring Boot applications,
and the previously mentioned guidance may help. However, you may yet encounter problems. In that
case, we suggest asking questions on Stack Overflow with a tag of spring-boot.
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.web.SpringBootServletInitializer;
import org.springframework.web.WebApplicationInitializer;
@SpringBootApplication
public class MyApplication extends SpringBootServletInitializer implements WebApplicationInitializer {
If you use Logback, you also need to tell WebLogic to prefer the packaged version rather than the
version that was pre-installed with the server. You can do so by adding a WEB-INF/weblogic.xml
file with the following contents:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>demo.Application</param-value>
</context-param>
<listener>
<listener-class>org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener</listener-
class>
</listener>
<filter>
<filter-name>metricsFilter</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>metricsFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextAttribute</param-name>
<param-value>org.springframework.web.context.WebApplicationContext.ROOT</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
In the preceding example, we use a single application context (the one created by the context listener)
and attach it to the DispatcherServlet by using an init parameter. This is normal in a Spring Boot
application (you normally only have one application context).
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<exclusions>
<exclusion>
<groupId>io.lettuce</groupId>
<artifactId>lettuce-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
</dependency>
configurations {
compile.exclude module: "lettuce"
}
dependencies {
compile("redis.clients:jedis")
// ...
}
Note
Property contributions can come from additional jar files on your classpath, so you should not
consider this an exhaustive list. Also, you can define your own properties.
Warning
This sample file is meant as a guide only. Do not copy and paste the entire content into your
application. Rather, pick only the properties that you need.
# ===================================================================
# COMMON SPRING BOOT PROPERTIES
#
# This sample file is provided as a guideline. Do NOT copy it in its
# entirety to your own application. ^^^
# ===================================================================
# ----------------------------------------
# CORE PROPERTIES
# ----------------------------------------
# BANNER
banner.charset=UTF-8 # Banner file encoding.
banner.location=classpath:banner.txt # Banner file location.
banner.image.location=classpath:banner.gif # Banner image file location (jpg or png can also be used).
banner.image.width= # Width of the banner image in chars (default 76)
banner.image.height= # Height of the banner image in chars (default based on image height)
banner.image.margin= # Left hand image margin in chars (default 2)
banner.image.invert= # Whether images should be inverted for dark terminal themes (default false)
# LOGGING
logging.config= # Location of the logging configuration file. For instance, `classpath:logback.xml` for
Logback
logging.exception-conversion-word=%wEx # Conversion word used when logging exceptions.
logging.file= # Log file name. For instance, `myapp.log`
logging.file.max-history= # Maximum of archive log files to keep. Only supported with the default
logback setup.
logging.file.max-size= # Maximum log file size. Only supported with the default logback setup.
logging.level.*= # Log levels severity mapping. For instance, `logging.level.org.springframework=DEBUG`
logging.path= # Location of the log file. For instance, `/var/log`
logging.pattern.console= # Appender pattern for output to the console. Supported only with the default
Logback setup.
logging.pattern.dateformat= # Appender pattern for log dateformat (default yyyy-MM-dd HH:mm:ss.SSS).
Only supported with the default logback setup.
logging.pattern.file= # Appender pattern for output to a file. Supported only with the default Logback
setup.
logging.pattern.level= # Appender pattern for log level (default: %5p). Supported only with the default
Logback setup.
logging.register-shutdown-hook=false # Register a shutdown hook for the logging system when it is
initialized.
# AOP
spring.aop.auto=true # Add @EnableAspectJAutoProxy.
# IDENTITY (ContextIdApplicationContextInitializer)
spring.application.index= # Application index.
spring.application.name= # Application name.
# ADMIN (SpringApplicationAdminJmxAutoConfiguration)
spring.application.admin.enabled=false # Whether to enable admin features for the application.
spring.application.admin.jmx-name=org.springframework.boot:type=Admin,name=SpringApplication # JMX name
of the application admin MBean.
# AUTO-CONFIGURATION
spring.autoconfigure.exclude= # Auto-configuration classes to exclude.
# SPRING CORE
spring.beaninfo.ignore=true # Whether to skip search of BeanInfo classes.
# HAZELCAST (HazelcastProperties)
spring.hazelcast.config= # The location of the configuration file to use to initialize Hazelcast.
# JMX
spring.jmx.default-domain= # JMX domain name.
spring.jmx.enabled=true # Expose management beans to the JMX domain.
spring.jmx.server=mbeanServer # MBeanServer bean name.
# Email (MailProperties)
spring.mail.default-encoding=UTF-8 # Default MimeMessage encoding.
spring.mail.host= # SMTP server host. For instance, `smtp.example.com`
spring.mail.jndi-name= # Session JNDI name. When set, takes precedence over other mail settings.
spring.mail.password= # Login password of the SMTP server.
spring.mail.port= # SMTP server port.
spring.mail.properties.*= # Additional JavaMail session properties.
spring.mail.protocol=smtp # Protocol used by the SMTP server.
spring.mail.test-connection=false # Whether to test that the mail server is available on startup.
spring.mail.username= # Login user of the SMTP server.
spring.main.sources= # Sources (class names, package names, or XML resource locations) to include in the
ApplicationContext.
spring.main.web-application-type= # Flag to explicitly request a specific type of web application. If
not set, auto-detected based on the classpath.
# INTERNATIONALIZATION (MessageSourceProperties)
spring.messages.always-use-message-format=false # Whether to always apply the MessageFormat rules,
parsing even messages without arguments.
spring.messages.basename=messages # Comma-separated list of basenames, each following the ResourceBundle
convention.
spring.messages.cache-duration=-1 # Loaded resource bundle files cache duration. When not set, bundles
are cached forever.
spring.messages.encoding=UTF-8 # Message bundles encoding.
spring.messages.fallback-to-system-locale=true # Whether to fall back to the system Locale if no files
for a specific Locale have been found.
spring.messages.use-code-as-default-message=false # Whether to use the message code as the default
message instead of throwing a "NoSuchMessageException". Recommended during development only.
# OUTPUT
spring.output.ansi.enabled=detect # Configures the ANSI output.
# PROFILES
spring.profiles.active= # Comma-separated list (or list if using YAML) of active profiles.
spring.profiles.include= # Unconditionally activate the specified comma-separated list of profiles (or
list of profiles if using YAML).
# REACTOR (ReactorCoreProperties)
spring.reactor.stacktrace-mode.enabled=false # Whether Reactor should collect stacktrace information at
runtime.
# SENDGRID (SendGridAutoConfiguration)
spring.sendgrid.api-key= # SendGrid API key.
spring.sendgrid.proxy.host= # SendGrid proxy host.
spring.sendgrid.proxy.port= # SendGrid proxy port.
# ----------------------------------------
# WEB PROPERTIES
# ----------------------------------------
# FREEMARKER (FreeMarkerProperties)
spring.freemarker.allow-request-override=false # Whether HttpServletRequest attributes are allowed to
override (hide) controller generated model attributes of the same name.
spring.freemarker.allow-session-override=false # Whether HttpSession attributes are allowed to override
(hide) controller generated model attributes of the same name.
spring.freemarker.cache=false # Whether to enable template caching.
spring.freemarker.charset=UTF-8 # Template encoding.
spring.freemarker.check-template-location=true # Whether to check that the templates location exists.
spring.freemarker.content-type=text/html # Content-Type value.
spring.freemarker.enabled=true # Whether to enable MVC view resolution for this technology.
spring.freemarker.expose-request-attributes=false # Whether all request attributes should be added to
the model prior to merging with the template.
spring.freemarker.expose-session-attributes=false # Whether all HttpSession attributes should be added
to the model prior to merging with the template.
spring.freemarker.expose-spring-macro-helpers=true # Whether to expose a RequestContext for use by
Spring's macro library, under the name "springMacroRequestContext".
spring.freemarker.prefer-file-system-access=true # Whether to prefer file system access for template
loading. File system access enables hot detection of template changes.
spring.freemarker.prefix= # Prefix that gets prepended to view names when building a URL.
spring.freemarker.request-context-attribute= # Name of the RequestContext attribute for all views.
spring.freemarker.settings.*= # Well-known FreeMarker keys which are passed to FreeMarker's
Configuration.
spring.freemarker.suffix=.ftl # Suffix that gets appended to view names when building a URL.
spring.freemarker.template-loader-path=classpath:/templates/ # Comma-separated list of template paths.
spring.freemarker.view-names= # White list of view names that can be resolved.
# MULTIPART (MultipartProperties)
spring.servlet.multipart.enabled=true # Whether to enable support of multipart uploads.
spring.servlet.multipart.file-size-threshold=0 # Threshold after which files are written to disk. Values
can use the suffixes "MB" or "KB" to indicate megabytes or kilobytes, respectively.
spring.servlet.multipart.location= # Intermediate location of uploaded files.
spring.servlet.multipart.max-file-size=1MB # Max file size. Values can use the suffixes "MB" or "KB" to
indicate megabytes or kilobytes, respectively.
spring.servlet.multipart.max-request-size=10MB # Max request size. Values can use the suffixes "MB" or
"KB" to indicate megabytes or kilobytes, respectively.
spring.servlet.multipart.resolve-lazily=false # Whether to resolve the multipart request lazily at the
time of file or parameter access.
# JACKSON (JacksonProperties)
spring.jackson.date-format= # Date format string or a fully-qualified date format class name. For
instance, `yyyy-MM-dd HH:mm:ss`.
spring.jackson.default-property-inclusion= # Controls the inclusion of properties during serialization.
Configured with one of the values in Jackson's JsonInclude.Include enumeration.
spring.jackson.deserialization.*= # Jackson on/off features that affect the way Java objects are
deserialized.
spring.jackson.generator.*= # Jackson on/off features for generators.
spring.jackson.joda-date-time-format= # Joda date time format string. If not configured, "date-format"
is used as a fallback if it is configured with a format string.
spring.jackson.locale= # Locale used for formatting.
spring.jackson.mapper.*= # Jackson general purpose on/off features.
spring.jackson.parser.*= # Jackson on/off features for parsers.
spring.jackson.property-naming-strategy= # One of the constants on Jackson's PropertyNamingStrategy. Can
also be a fully-qualified class name of a PropertyNamingStrategy subclass.
spring.jackson.serialization.*= # Jackson on/off features that affect the way Java objects are
serialized.
spring.jackson.time-zone= # Time zone used when formatting dates. For instance, "America/Los_Angeles"
or "GMT+10".
# JERSEY (JerseyProperties)
spring.jersey.application-path= # Path that serves as the base URI for the application. If specified,
overrides the value of "@ApplicationPath".
spring.jersey.filter.order=0 # Jersey filter chain order.
spring.jersey.init.*= # Init parameters to pass to Jersey through the servlet or filter.
spring.jersey.servlet.load-on-startup=-1 # Load on startup priority of the Jersey servlet.
spring.jersey.type=servlet # Jersey integration type.
# THYMELEAF (ThymeleafAutoConfiguration)
spring.thymeleaf.cache=true # Whether to enable template caching.
spring.thymeleaf.check-template=true # Whether to check that the template exists before rendering it.
spring.thymeleaf.check-template-location=true # Whether to check that the templates location exists.
spring.thymeleaf.enabled=true # Whether to enable Thymeleaf view resolution for Web frameworks.
spring.thymeleaf.enable-spring-el-compiler=false # Enable the SpringEL compiler in SpringEL expressions.
spring.thymeleaf.encoding=UTF-8 # Template files encoding.
spring.thymeleaf.excluded-view-names= # Comma-separated list of view names that should be excluded from
resolution.
spring.thymeleaf.mode=HTML5 # Template mode to be applied to templates. See also Thymeleaf's
TemplateMode enum.
spring.thymeleaf.prefix=classpath:/templates/ # Prefix that gets prepended to view names when building a
URL.
spring.thymeleaf.reactive.chunked-mode-view-names= # Comma-separated list of view names (patterns
allowed) that should be the only ones executed in CHUNKED mode when a max chunk size is set.
spring.thymeleaf.reactive.full-mode-view-names= # Comma-separated list of view names (patterns allowed)
that should be executed in FULL mode even if a max chunk size is set.
spring.thymeleaf.reactive.max-chunk-size= # Maximum size of data buffers used for writing to the
response, in bytes.
spring.thymeleaf.reactive.media-types= # Media types supported by the view technology.
spring.thymeleaf.servlet.content-type=text/html # Content-Type value written to HTTP responses.
spring.thymeleaf.suffix=.html # Suffix that gets appended to view names when building a URL.
spring.thymeleaf.template-resolver-order= # Order of the template resolver in the chain.
spring.thymeleaf.view-names= # Comma-separated list of view names that can be resolved.
# ----------------------------------------
# SECURITY PROPERTIES
# ----------------------------------------
# SECURITY (SecurityProperties)
spring.security.filter.order=0 # Security filter chain order.
spring.security.filter.dispatcher-types=ASYNC,ERROR,REQUEST # Security filter chain dispatcher types.
# ----------------------------------------
# DATA PROPERTIES
# ----------------------------------------
# FLYWAY (FlywayProperties)
spring.flyway.allow-mixed-migrations= #
spring.flyway.baseline-description= #
spring.flyway.baseline-on-migrate= #
spring.flyway.baseline-version=1 # Version to start migration
spring.flyway.check-location=true # Whether to check that migration scripts location exists.
spring.flyway.clean-disabled= #
spring.flyway.clean-on-validation-error= #
spring.flyway.enabled=true # Whether to enable flyway.
spring.flyway.encoding= #
spring.flyway.group= #
spring.flyway.ignore-failed-future-migration= #
spring.flyway.ignore-future-migrations= #
spring.flyway.ignore-missing-migrations= #
spring.flyway.init-sqls= # SQL statements to execute to initialize a connection immediately after
obtaining it.
spring.flyway.installed-by= #
spring.flyway.locations=classpath:db/migration # The locations of migrations scripts.
spring.flyway.mixed= #
spring.flyway.out-of-order= #
spring.flyway.password= # JDBC password to use if you want Flyway to create its own DataSource.
spring.flyway.placeholder-prefix= #
spring.flyway.placeholder-replacement= #
spring.flyway.placeholder-suffix= #
spring.flyway.placeholders.*= #
spring.flyway.repeatable-sql-migration-prefix= #
spring.flyway.schemas= # schemas to update
spring.flyway.skip-default-callbacks= #
spring.flyway.skip-default-resolvers= #
spring.flyway.sql-migration-prefix=V #
spring.flyway.sql-migration-separator= #
spring.flyway.sql-migration-suffix=.sql #
spring.flyway.table= #
spring.flyway.target= #
spring.flyway.url= # JDBC url of the database to migrate. If not set, the primary configured data source
is used.
spring.flyway.user= # Login user of the database to migrate.
spring.flyway.validate-on-migrate= #
# LIQUIBASE (LiquibaseProperties)
spring.liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml # Change log configuration
path.
spring.liquibase.check-change-log-location=true # Whether to check that the change log location exists.
spring.liquibase.contexts= # Comma-separated list of runtime contexts to use.
spring.liquibase.default-schema= # Default database schema.
spring.liquibase.drop-first=false # Whether to first drop the database schema.
spring.liquibase.enabled=true # Whether to enable Liquibase support.
spring.liquibase.labels= # Comma-separated list of runtime labels to use.
spring.liquibase.parameters.*= # Change log parameters.
spring.liquibase.password= # Login password of the database to migrate.
spring.liquibase.rollback-file= # File to which rollback SQL is written when an update is performed.
spring.liquibase.url= # JDBC URL of the database to migrate. If not set, the primary configured data
source is used.
spring.liquibase.user= # Login user of the database to migrate.
# COUCHBASE (CouchbaseProperties)
spring.couchbase.bootstrap-hosts= # Couchbase nodes (host or IP address) to bootstrap from.
spring.couchbase.bucket.name=default # Name of the bucket to connect to.
spring.couchbase.bucket.password= # Password of the bucket.
spring.couchbase.env.endpoints.key-value=1 # Number of sockets per node against the Key/value service.
spring.couchbase.env.endpoints.query=1 # Number of sockets per node against the Query (N1QL) service.
spring.couchbase.env.endpoints.view=1 # Number of sockets per node against the view service.
spring.couchbase.env.ssl.enabled= # Whether to enable SSL support. Enabled automatically if a "keyStore"
is provided, unless specified otherwise.
spring.couchbase.env.ssl.key-store= # Path to the JVM key store that holds the certificates.
spring.couchbase.env.ssl.key-store-password= # Password used to access the key store.
spring.couchbase.env.timeouts.connect=5000ms # Bucket connections timeouts.
spring.couchbase.env.timeouts.key-value=2500ms # Blocking operations performed on a specific key
timeout.
spring.couchbase.env.timeouts.query=7500ms # N1QL query operations timeout.
spring.couchbase.env.timeouts.socket-connect=1000ms # Socket connect connections timeout.
spring.couchbase.env.timeouts.view=7500ms # Regular and geospatial view operations timeout.
# DAO (PersistenceExceptionTranslationAutoConfiguration)
spring.dao.exceptiontranslation.enabled=true # Whether to enable the
PersistenceExceptionTranslationPostProcessor.
# CASSANDRA (CassandraProperties)
spring.data.cassandra.cluster-name= # Name of the Cassandra cluster.
spring.data.cassandra.compression=none # Compression supported by the Cassandra binary protocol.
spring.data.cassandra.connect-timeout= # Socket option: connection time out.
spring.data.cassandra.consistency-level= # Queries consistency level.
spring.data.cassandra.contact-points=localhost # Comma-separated list of cluster node addresses.
spring.data.cassandra.fetch-size= # Queries default fetch size.
spring.data.cassandra.keyspace-name= # Keyspace name to use.
spring.data.cassandra.load-balancing-policy= # Class name of the load balancing policy.
spring.data.cassandra.port= # Port of the Cassandra server.
spring.data.cassandra.password= # Login password of the server.
spring.data.cassandra.pool.heartbeat-interval=30 # Heartbeat interval after which a message is sent on
an idle connection to make sure it's still alive. If a duration suffix is not specified, seconds will
be used.
# ELASTICSEARCH (ElasticsearchProperties)
spring.data.elasticsearch.cluster-name=elasticsearch # Elasticsearch cluster name.
spring.data.elasticsearch.cluster-nodes= # Comma-separated list of cluster node addresses.
spring.data.elasticsearch.properties.*= # Additional properties used to configure the client.
spring.data.elasticsearch.repositories.enabled=true # Whether to enable Elasticsearch repositories.
# DATA LDAP
spring.data.ldap.repositories.enabled=true # Enable LDAP repositories.
# MONGODB (MongoProperties)
spring.data.mongodb.authentication-database= # Authentication database name.
spring.data.mongodb.database=test # Database name.
spring.data.mongodb.field-naming-strategy= # Fully qualified name of the FieldNamingStrategy to use.
spring.data.mongodb.grid-fs-database= # GridFS database name.
spring.data.mongodb.host=localhost # Mongo server host. Cannot be set with URI.
spring.data.mongodb.password= # Login password of the mongo server. Cannot be set with URI.
spring.data.mongodb.port=27017 # Mongo server port. Cannot be set with URI.
spring.data.mongodb.repositories.type=true # Type of Mongo repositories to enable.
spring.data.mongodb.uri=mongodb://localhost/test # Mongo database URI. Cannot be set with host, port and
credentials.
spring.data.mongodb.username= # Login user of the mongo server. Cannot be set with URI.
# DATA REDIS
spring.data.redis.repositories.enabled=true # Whether to enable Redis repositories.
# NEO4J (Neo4jProperties)
spring.data.neo4j.auto-index=none # Auto index mode.
spring.data.neo4j.embedded.enabled=true # Whether to enable embedded mode if the embedded driver is
available.
spring.data.neo4j.open-in-view=true # Register OpenSessionInViewInterceptor. Binds a Neo4j Session to
the thread for the entire processing of the request.
spring.data.neo4j.password= # Login password of the server.
spring.data.neo4j.repositories.enabled=true # Whether to enable Neo4j repositories.
spring.data.neo4j.uri= # URI used by the driver. Auto-detected by default.
spring.data.neo4j.username= # Login user of the server.
spring.data.rest.sort-param-name= # Name of the URL query string parameter that indicates what direction
to sort results.
# SOLR (SolrProperties)
spring.data.solr.host=http://127.0.0.1:8983/solr # Solr host. Ignored if "zk-host" is set.
spring.data.solr.repositories.enabled=true # Whether to enable Solr repositories.
spring.data.solr.zk-host= # ZooKeeper host address in the form HOST:PORT.
# InfluxDB (InfluxDbProperties)
spring.influx.password= # Login password.
spring.influx.url= # URL of the InfluxDB instance to which to connect.
spring.influx.user= # Login user.
# JOOQ (JooqAutoConfiguration)
spring.jooq.sql-dialect= # SQL dialect to use. Auto-detected by default.
# JDBC (JdbcProperties)
spring.jdbc.template.fetch-size=-1 # Number of rows that should be fetched from the database when more
rows are needed.
spring.jdbc.template.max-rows=-1 # Maximum number of rows.
spring.jdbc.template.query-timeout= # Query timeout. If a duration suffix is not specified, seconds will
be used.
# JTA (JtaAutoConfiguration)
spring.jta.enabled=true # Whether to enable JTA support.
spring.jta.log-dir= # Transaction logs directory.
spring.jta.transaction-manager-id= # Transaction manager unique identifier.
# ATOMIKOS (AtomikosProperties)
spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing
connections from the pool.
spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=true # Whether to ignore the
transacted flag when creating session.
spring.jta.atomikos.connectionfactory.local-transaction-mode=false # Whether local transactions are
desired.
spring.jta.atomikos.connectionfactory.maintenance-interval=60 # The time, in seconds, between runs of
the pool's maintenance thread.
spring.jta.atomikos.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections
are cleaned up from the pool.
spring.jta.atomikos.connectionfactory.max-lifetime=0 # The time, in seconds, that a connection can be
pooled for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.max-pool-size=1 # The maximum size of the pool.
spring.jta.atomikos.connectionfactory.min-pool-size=1 # The minimum size of the pool.
spring.jta.atomikos.connectionfactory.reap-timeout=0 # The reap timeout, in seconds, for borrowed
connections. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory # The unique name used
to identify the resource during recovery.
spring.jta.atomikos.datasource.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing
connections from the pool.
spring.jta.atomikos.datasource.default-isolation-level= # Default isolation level of connections
provided by the pool.
spring.jta.atomikos.datasource.login-timeout= # Timeout, in seconds, for establishing a database
connection.
spring.jta.atomikos.datasource.maintenance-interval=60 # The time, in seconds, between runs of the
pool's maintenance thread.
spring.jta.atomikos.datasource.max-idle-time=60 # The time, in seconds, after which connections are
cleaned up from the pool.
spring.jta.atomikos.datasource.max-lifetime=0 # The time, in seconds, that a connection can be pooled
for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.datasource.max-pool-size=1 # The maximum size of the pool.
spring.jta.atomikos.datasource.min-pool-size=1 # The minimum size of the pool.
# BITRONIX
spring.jta.bitronix.connectionfactory.acquire-increment=1 # Number of connections to create when growing
the pool.
spring.jta.bitronix.connectionfactory.acquisition-interval=1 # Time, in seconds, to wait before trying
to acquire a connection again after an invalid connection was acquired.
spring.jta.bitronix.connectionfactory.acquisition-timeout=30 # Timeout, in seconds, for acquiring
connections from the pool.
spring.jta.bitronix.connectionfactory.allow-local-transactions=true # Whether the transaction manager
should allow mixing XA and non-XA transactions.
spring.jta.bitronix.connectionfactory.apply-transaction-timeout=false # Whether the transaction timeout
should be set on the XAResource when it is enlisted.
spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled=true # Whether resources should be
enlisted and delisted automatically.
spring.jta.bitronix.connectionfactory.cache-producers-consumers=true # Whether producers and consumers
should be cached.
spring.jta.bitronix.connectionfactory.defer-connection-release=true # Whether the provider can run many
transactions on the same connection and supports transaction interleaving.
spring.jta.bitronix.connectionfactory.ignore-recovery-failures=false # Whether recovery failures should
be ignored.
spring.jta.bitronix.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections
are cleaned up from the pool.
spring.jta.bitronix.connectionfactory.max-pool-size=10 # The maximum size of the pool. 0 denotes no
limit.
spring.jta.bitronix.connectionfactory.min-pool-size=0 # The minimum size of the pool.
spring.jta.bitronix.connectionfactory.password= # The password to use to connect to the JMS provider.
spring.jta.bitronix.connectionfactory.share-transaction-connections=false # Whether connections in the
ACCESSIBLE state can be shared within the context of a transaction.
spring.jta.bitronix.connectionfactory.test-connections=true # Whether connections should be tested when
acquired from the pool.
spring.jta.bitronix.connectionfactory.two-pc-ordering-position=1 # The position that this
resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is
Integer.MAX_VALUE).
spring.jta.bitronix.connectionfactory.unique-name=jmsConnectionFactory # The unique name used to
identify the resource during recovery.
spring.jta.bitronix.connectionfactory.use-tm-join=true Whether TMJOIN should be used when starting
XAResources.
spring.jta.bitronix.connectionfactory.user= # The user to use to connect to the JMS provider.
spring.jta.bitronix.datasource.acquire-increment=1 # Number of connections to create when growing the
pool.
# NARAYANA (NarayanaProperties)
spring.jta.narayana.default-timeout=60s # Transaction timeout. If a duration suffix is not specified,
seconds will be used.
spring.jta.narayana.expiry-
scanners=com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner # Comma-
separated list of expiry scanners.
spring.jta.narayana.log-dir= # Transaction object store directory.
spring.jta.narayana.one-phase-commit=true # Whether to enable one phase commit optimization.
spring.jta.narayana.periodic-recovery-period=120s # Interval in which periodic recovery scans are
performed. If a duration suffix is not specified, seconds will be used.
spring.jta.narayana.recovery-backoff-period=10s # Back off period between first and second phases of the
recovery scan. If a duration suffix is not specified, seconds will be used.
spring.jta.narayana.recovery-db-pass= # Database password to be used by the recovery manager.
spring.jta.narayana.recovery-db-user= # Database username to be used by the recovery manager.
spring.jta.narayana.recovery-jms-pass= # JMS password to be used by the recovery manager.
spring.jta.narayana.recovery-jms-user= # JMS username to be used by the recovery manager.
spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules.
spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id.
spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of orphan filters.
# REDIS (RedisProperties)
spring.redis.cluster.max-redirects= # Maximum number of redirects to follow when executing commands
across the cluster.
spring.redis.cluster.nodes= # Comma-separated list of "host:port" pairs to bootstrap from.
spring.redis.database=0 # Database index used by the connection factory.
spring.redis.url= # Connection URL. Overrides host, port, and password. User is ignored. Example:
redis://user:password@example.com:6379
spring.redis.host=localhost # Redis server host.
spring.redis.jedis.pool.max-active=8 # Max number of connections that can be allocated by the pool at a
given time. Use a negative value for no limit.
spring.redis.jedis.pool.max-idle=8 # Max number of "idle" connections in the pool. Use a negative value
to indicate an unlimited number of idle connections.
spring.redis.jedis.pool.max-wait=-1ms # Maximum amount of time a connection allocation should block
before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
spring.redis.jedis.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in
the pool. This setting only has an effect if it is positive.
spring.redis.lettuce.pool.max-active=8 # Maximum number of connections that can be allocated by the pool
at a given time. Use a negative value for no limit.
spring.redis.lettuce.pool.max-idle=8 # Maximum number of "idle" connections in the pool. Use a negative
value to indicate an unlimited number of idle connections.
spring.redis.lettuce.pool.max-wait=-1ms # Maximum amount of time a connection allocation should block
before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.
spring.redis.lettuce.pool.min-idle=0 # Target for the minimum number of idle connections to maintain in
the pool. This setting only has an effect if it is positive.
spring.redis.lettuce.shutdown-timeout=100ms # Shutdown timeout.
spring.redis.password= # Login password of the redis server.
spring.redis.port=6379 # Redis server port.
spring.redis.sentinel.master= # Name of the Redis server.
spring.redis.sentinel.nodes= # Comma-separated list of "host:port" pairs.
spring.redis.ssl=false # Whether to enable SSL support.
spring.redis.timeout=0 # Connection timeout.
# TRANSACTION (TransactionProperties)
spring.transaction.default-timeout= # Default transaction timeout. If a duration suffix is not
specified, seconds will be used.
spring.transaction.rollback-on-commit-failure= # Whether to roll back on commit failures.
# ----------------------------------------
# INTEGRATION PROPERTIES
# ----------------------------------------
# ACTIVEMQ (ActiveMQProperties)
spring.activemq.broker-url= # URL of the ActiveMQ broker. Auto-generated by default.
spring.activemq.close-timeout=15s # Time to wait before considering a close complete.
spring.activemq.in-memory=true # Whether the default broker URL should be in memory. Ignored if an
explicit broker has been specified.
spring.activemq.non-blocking-redelivery=false # Whether to stop message delivery before re-delivering
messages from a rolled back transaction. This implies that message order is not preserved when this is
enabled.
spring.activemq.password= # Login password of the broker.
spring.activemq.send-timeout=0 # Time to wait on message sends for a response. Set it to 0 to wait
forever.
spring.activemq.user= # Login user of the broker.
spring.activemq.packages.trust-all= # Whether to trust all packages.
spring.activemq.packages.trusted= # Comma-separated list of specific packages to trust (when not
trusting all packages).
spring.activemq.pool.block-if-full=true # Whether to block when a connection is requested and the pool
is full. Set it to false to throw a "JMSException" instead.
spring.activemq.pool.block-if-full-timeout=-1ms # Blocking period before throwing an exception if the
pool is still full.
spring.activemq.pool.create-connection-on-startup=true # Whether to create a connection on startup. Can
be used to warm up the pool on startup.
spring.activemq.pool.enabled=false # Whether a PooledConnectionFactory should be created, instead of a
regular ConnectionFactory.
spring.activemq.pool.expiry-timeout=0ms # Connection expiration timeout.
spring.activemq.pool.idle-timeout=30s # Connection idle timeout.
spring.activemq.pool.max-connections=1 # Maximum number of pooled connections.
spring.activemq.pool.maximum-active-session-per-connection=500 # Maximum number of active sessions per
connection.
spring.activemq.pool.reconnect-on-exception=true # Reset the connection when a "JMSException" occurs.
spring.activemq.pool.time-between-expiration-check=-1ms # Time to sleep between runs of the idle
connection eviction thread. When negative, no idle connection eviction thread runs.
spring.activemq.pool.use-anonymous-producers=true # Whether to use only one anonymous "MessageProducer"
instance. Set it to false to create one "MessageProducer" every time one is required.
# ARTEMIS (ArtemisProperties)
spring.artemis.embedded.cluster-password= # Cluster password. Randomly generated on startup by default.
spring.artemis.embedded.data-directory= # Journal file directory. Not necessary if persistence is turned
off.
spring.artemis.embedded.enabled=true # Whether to enable embedded mode if the Artemis server APIs are
available.
spring.artemis.embedded.persistent=false # Whether to enable persistent store.
spring.artemis.embedded.queues= # Comma-separated list of queues to create on startup.
spring.artemis.embedded.server-id= # Server ID. By default, an auto-incremented counter is used.
spring.artemis.embedded.topics= # Comma-separated list of topics to create on startup.
spring.artemis.host=localhost # Artemis broker host.
spring.artemis.mode= # Artemis deployment mode, auto-detected by default.
spring.artemis.password= # Login password of the broker.
spring.artemis.port=61616 # Artemis broker port.
spring.artemis.user= # Login user of the broker.
# JMS (JmsProperties)
spring.jms.jndi-name= # Connection factory JNDI name. When set, takes precedence to others connection
factory auto-configurations.
spring.jms.listener.acknowledge-mode= # Acknowledge mode of the container. By default, the listener is
transacted with automatic acknowledgment.
# RABBIT (RabbitProperties)
spring.rabbitmq.addresses= # Comma-separated list of addresses to which the client should connect.
spring.rabbitmq.cache.channel.checkout-timeout= # Duration to wait to obtain a channel if the cache size
has been reached.
spring.rabbitmq.cache.channel.size= # Number of channels to retain in the cache.
spring.rabbitmq.cache.connection.mode=channel # Connection factory cache mode.
spring.rabbitmq.cache.connection.size= # Number of connections to cache.
spring.rabbitmq.connection-timeout= # Connection timeout. Set it to zero to wait forever.
spring.rabbitmq.dynamic=true # Whether to create an AmqpAdmin bean.
spring.rabbitmq.host=localhost # RabbitMQ host.
spring.rabbitmq.listener.direct.acknowledge-mode= # Acknowledge mode of container.
spring.rabbitmq.listener.direct.auto-startup=true # Whether to start the container automatically on
startup.
spring.rabbitmq.listener.direct.consumers-per-queue= # Number of consumers per queue.
spring.rabbitmq.listener.direct.default-requeue-rejected= # Whether rejected deliveries are re-queued by
default. Defaults to true.
spring.rabbitmq.listener.direct.idle-event-interval= # How often idle container events should be
published.
spring.rabbitmq.listener.direct.prefetch= # Number of messages to be handled in a single request. It
should be greater than or equal to the transaction size (if used).
spring.rabbitmq.listener.direct.retry.enabled=false # Whether publishing retries are enabled.
spring.rabbitmq.listener.direct.retry.initial-interval=1000ms # Interval between the first and second
attempt to publish or deliver a message.
spring.rabbitmq.listener.direct.retry.max-attempts=3 # Maximum number of attempts to publish or deliver
a message.
spring.rabbitmq.listener.direct.retry.max-interval=10000ms # Maximum interval between attempts.
spring.rabbitmq.listener.direct.retry.multiplier=1 # Multiplier to apply to the previous retry interval.
spring.rabbitmq.listener.direct.retry.stateless=true # Whether retries are stateless or stateful.
spring.rabbitmq.listener.simple.acknowledge-mode= # Acknowledge mode of container.
spring.rabbitmq.listener.simple.auto-startup=true # Whether to start the container automatically on
startup.
spring.rabbitmq.listener.simple.concurrency= # Minimum number of listener invoker threads.
spring.rabbitmq.listener.simple.default-requeue-rejected= # Whether to re-queue delivery failures.
spring.rabbitmq.listener.simple.idle-event-interval= # How often idle container events should be
published.
spring.rabbitmq.listener.simple.max-concurrency= # Maximum number of listener invoker.
spring.rabbitmq.listener.simple.prefetch= # Number of messages to be handled in a single request. It
should be greater than or equal to the transaction size (if used).
spring.rabbitmq.listener.simple.retry.enabled=false # Whether publishing retries are enabled.
spring.rabbitmq.listener.simple.retry.initial-interval=1000 # Interval, in milliseconds, between the
first and second attempt to deliver a message.
spring.rabbitmq.listener.simple.retry.max-attempts=3 # Maximum number of attempts to deliver a message.
# ----------------------------------------
# ACTUATOR PROPERTIES
# ----------------------------------------
# CLOUDFOUNDRY
management.cloudfoundry.enabled=true # Whether to enable extended Cloud Foundry actuator endpoints.
management.cloudfoundry.skip-ssl-validation=false # Whether to skip SSL verification for Cloud Foundry
actuator endpoint security calls.
# HEALTH INDICATORS
management.health.db.enabled=true # Whether to enable database health check.
# JOLOKIA (JolokiaProperties)
management.jolokia.config.*= # Jolokia settings. See the Jolokia manual for details.
management.jolokia.enabled=false # Whether to enable Jolokia.
management.jolokia.path=/jolokia # Path at which Jolokia is available.
# TRACING (TraceEndpointProperties)
management.trace.filter.enabled=true # Whether to enable the trace servlet filter.
management.trace.include=request-headers,response-headers,cookies,errors # Items to be included in the
trace.
# METRICS
spring.metrics.binders.jvmmemory.enabled=true # Whether to enable JVM memory metrics.
spring.metrics.binders.logback.enabled=true # Whether to enable Logback metrics.
spring.metrics.binders.processor.enabled=true # Whether to enable processor metrics.
spring.metrics.binders.uptime.enabled=true # Whether to enable uptime metrics.
spring.metrics.export.atlas.batch-size= # Number of measurements per request to use for the backend. If
more measurements are found, then multiple requests will be made.
spring.metrics.export.atlas.config-refresh-frequency= # Frequency for refreshing config settings from
the LWC service.
spring.metrics.export.atlas.config-time-to-live= # Time to live for subscriptions from the LWC service.
spring.metrics.export.atlas.config-uri= # URI for the Atlas LWC endpoint to retrieve current
subscriptions.
spring.metrics.export.atlas.connect-timeout= # Connection timeout for requests to the backend.
spring.metrics.export.atlas.enabled= # Whether exporting of metrics to this backend is enabled.
spring.metrics.export.atlas.eval-uri= # URI for the Atlas LWC endpoint to evaluate the data for a
subscription.
spring.metrics.export.atlas.lwc-enabled= # Enable streaming to Atlas LWC.
spring.metrics.export.atlas.meter-time-to-live= # Time to live for meters that do not have any activity.
After this period the meter will be considered expired and will not get reported.
spring.metrics.export.atlas.num-threads= # Number of threads to use with the metrics publishing
scheduler.
spring.metrics.export.atlas.read-timeout= # Read timeout for requests to the backend.
spring.metrics.export.atlas.step=1m # Step size (i.e. reporting frequency) to use.
spring.metrics.export.atlas.uri= # URI of the Atlas server.
spring.metrics.export.datadog.api-key= # Datadog API key.
spring.metrics.export.datadog.batch-size= # Number of measurements per request to use for the backend.
If more measurements are found, then multiple requests will be made.
spring.metrics.export.datadog.connect-timeout= # Connection timeout for requests to the backend.
spring.metrics.export.datadog.enabled= # Whether exporting of metrics to this backend is enabled.
spring.metrics.export.datadog.host-tag= # Tag that will be mapped to "host" when shipping metrics to
Datadog. Can be omitted if host should be omitted on publishing.
# ----------------------------------------
# DEVTOOLS PROPERTIES
# ----------------------------------------
# DEVTOOLS (DevToolsProperties)
spring.devtools.livereload.enabled=true # Whether to enable a livereload.com-compatible server.
spring.devtools.livereload.port=35729 # Server port.
spring.devtools.restart.additional-exclude= # Additional patterns that should be excluded from
triggering a full restart.
spring.devtools.restart.additional-paths= # Additional paths to watch for changes.
spring.devtools.restart.enabled=true # Enable automatic restart.
spring.devtools.restart.exclude=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/
**,templates/**,**/*Test.class,**/*Tests.class,git.properties # Patterns that should be excluded from
triggering a full restart.
spring.devtools.restart.log-condition-evaluation-delta=true # Whether to log the condition evaluation
delta upon restart.
spring.devtools.restart.poll-interval=1s # Amount of time to wait between polling for classpath changes.
spring.devtools.restart.quiet-period=400ms # Amount of quiet time required without any classpath changes
before a restart is triggered.
spring.devtools.restart.trigger-file= # Name of a specific file that, when changed, triggers the restart
check. If not specified, any classpath file change triggers the restart.
# ----------------------------------------
# TESTING PROPERTIES
# ----------------------------------------
The majority of the metadata file is generated automatically at compile time by processing all items
annotated with @ConfigurationProperties. However, it is possible to write part of the metadata
manually for corner cases or more advanced use cases.
{"groups": [
{
"name": "server",
"type": "org.springframework.boot.autoconfigure.web.ServerProperties",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties"
},
{
"name": "spring.jpa.hibernate",
"type": "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties$Hibernate",
"sourceType": "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties",
"sourceMethod": "getHibernate()"
}
...
],"properties": [
{
"name": "server.port",
"type": "java.lang.Integer",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties"
},
{
"name": "server.servlet.path",
"type": "java.lang.String",
"sourceType": "org.springframework.boot.autoconfigure.web.ServerProperties",
"defaultValue": "/"
},
{
"name": "spring.jpa.hibernate.ddl-auto",
"type": "java.lang.String",
"description": "DDL mode. This is actually a shortcut for the \"hibernate.hbm2ddl.auto\" property.",
"sourceType": "org.springframework.boot.autoconfigure.orm.jpa.JpaProperties$Hibernate"
}
...
],"hints": [
{
"name": "spring.jpa.hibernate.ddl-auto",
"values": [
{
"value": "none",
"description": "Disable DDL handling."
},
{
"value": "validate",
"description": "Validate the schema, make no changes to the database."
},
{
"value": "update",
"description": "Update the schema if necessary."
},
{
"value": "create",
"description": "Create the schema and destroy previous data."
},
{
"value": "create-drop",
"description": "Create and then destroy the schema at the end of the session."
}
]
}
]}
Each property is a configuration item that the user specifies with a given value. For example,
server.port and server.servlet.path might be specified in application.properties, as
follows:
server.port=9090
server.servlet.path=/home
The groups are higher level items that do not themselves specify a value but instead provide a
contextual grouping for properties. For example, the server.port and server.servlet.path
properties are part of the server group.
Note
It is not required that every property has a group. Some properties might exist in their own right.
Finally, hints are additional information used to assist the user in configuring a given property. For
example, when a developer is configuring the spring.jpa.hibernate.ddl-auto property, a tool
can use the hints to offer some auto-completion help for the none, validate, update, create, and
create-drop values.
Group Attributes
The JSON object contained in the groups array can contain the attributes shown in the following table:
name String The full name of the group. This attribute is mandatory.
type String The class name of the data type of the group. For example,
if the group were based on a class annotated with
@ConfigurationProperties, the attribute would contain the
fully qualified name of that class. If it were based on a @Bean
method, it would be the return type of that method. If the type is
not known, the attribute may be omitted.
description String A short description of the group that can be displayed to users. If
not description is available, it may be omitted. It is recommended
that descriptions be short paragraphs, with the first line providing
a concise summary. The last line in the description should end
with a period (.).
sourceType String The class name of the source that contributed this group. For
example, if the group were based on a @Bean method annotated
sourceMethod String The full name of the method (include parenthesis and argument
types) that contributed this group (for example, the name of a
@ConfigurationProperties annotated @Bean method). If the
source method is not known, it may be omitted.
Property Attributes
The JSON object contained in the properties array can contain the attributes described in the
following table:
name String The full name of the property. Names are in lower-case period-
separated form (for example, server.servlet.path). This
attribute is mandatory.
type String The full signature of the data type of the property (for example,
java.lang.String) but also a full generic type (such as
java.util.Map<java.util.String,acme.MyEnum>). You
can use this attribute to guide the user as to the types of values
that they can enter. For consistency, the type of a primitive is
specified by using its wrapper counterpart (for example, boolean
becomes java.lang.Boolean). Note that this class may be a
complex type that gets converted from a String as values are
bound. If the type is not known, it may be omitted.
description String A short description of the group that can be displayed to users. If
no description is available, it may be omitted. It is recommended
that descriptions be short paragraphs, with the first line providing
a concise summary. The last line in the description should end
with a period (.).
sourceType String The class name of the source that contributed this property.
For example, if the property were from a class annotated with
@ConfigurationProperties, this attribute would contain the
fully qualified name of that class. If the source type is unknown, it
may be omitted.
defaultValue Object The default value, which is used if the property is not specified. If
the type of the property is an array, it can be an array of value(s).
If the default value is unknown, it may be omitted.
deprecation Deprecation Specify whether the property is deprecated. If the field is not
deprecated or if that information is not known, it may be omitted.
The next table offers more detail about the deprecation
attribute.
The JSON object contained in the deprecation attribute of each properties element can contain
the following attributes:
level String The level of deprecation, which can be either warning (the
default) or error. When a property has a warning deprecation
level, it should still be bound in the environment. However, when
it has an error deprecation level, the property is no longer
managed and is not bound.
reason String A short description of the reason why the property was
deprecated. If no reason is available, it may be omitted. It is
recommended that descriptions be short paragraphs, with the first
line providing a concise summary. The last line in the description
should end with a period (.).
replacement String The full name of the property that replaces this deprecated
property. If there is no replacement for this property, it may be
omitted.
Note
Prior to Spring Boot 1.3, a single deprecated boolean attribute can be used instead of the
deprecation element. This is still supported in a deprecated fashion and should no longer be
used. If no reason and replacement are available, an empty deprecation object should be set.
@ConfigurationProperties("app.foo")
public class FooProperties {
@DeprecatedConfigurationProperty(replacement = "app.foo.name")
@Deprecated
public String getTarget() {
return getName();
}
@Deprecated
public void setTarget(String target) {
setName(target);
}
}
Note
There is no way to set a level. warning is always assumed, since code is still handling the
property.
The preceding code makes sure that the deprecated property still works (delegating to the name property
behind the scenes). Once the getTarget and setTarget methods can be removed from your public
API, the automatic deprecation hint in the metadata goes away as well. If you want to keep a hint,
adding manual metadata with an error deprecation level ensures that users are still informed about
that property. Doing so is particularly useful when a replacement is provided.
Hint Attributes
The JSON object contained in the hints array can contain the attributes shown in the following table:
name String The full name of the property to which this hint refers.
Names are in lower-case period-separated form (such as
server.servlet.path). If the property refers to a map
(such as system.contexts), the hint either applies to the
keys of the map (system.context.keys) or the values
(system.context.values) of the map. This attribute is
mandatory.
The JSON object contained in the values attribute of each hint element can contain the attributes
described in the following table:
value Object A valid value for the element to which the hint refers. If the type of
the property is an array, it can also be an array of value(s). This
attribute is mandatory.
description String A short description of the value that can be displayed to users. If
no description is available, it may be omitted . It is recommended
that descriptions be short paragraphs, with the first line providing
a concise summary. The last line in the description should end
with a period (.).
The JSON object contained in the providers attribute of each hint element can contain the attributes
described in the following table:
name String The name of the provider to use to offer additional content
assistance for the element to which the hint refers.
parameters JSON object Any additional parameter that the provider supports (check the
documentation of the provider for more details).
Objects with the same property and group name can appear multiple times within a metadata file.
For example, you could bind two separate classes to the same prefix, with each having potentially
overlapping property names. While the same names appearing in the metadata multiple times should
not be common, consumers of metadata should take care to ensure that they support it.
Associates a provider, to attach a well defined semantic to a property, so that a tool can discover the
list of potential values based on the projects context.
Value Hint
The name attribute of each hint refers to the name of a property. In the initial example shown earlier, we
provide five values for the spring.jpa.hibernate.ddl-auto property: none, validate, update,
create, and create-drop. Each value may have a description as well.
If your property is of type Map, you can provide hints for both the keys and the values (but not for the map
itself). The special .keys and .values suffixes must refer to the keys and the values, respectively.
Assume a sample.contexts maps magic String values to an integer, as shown in the following
example:
@ConfigurationProperties("sample")
public class SampleProperties {
The magic values are (in this example) are sample1 and sample2. In order to offer additional content
assistance for the keys, you could add the following JSON to the manual metadata of the module:
{"hints": [
{
"name": "sample.contexts.keys",
"values": [
{
"value": "sample1"
},
{
"value": "sample2"
}
]
}
]}
Tip
We recommend that you use an Enum for those two values instead. If your IDE supports it, this
is by far the most effective approach to auto-completion.
Value Providers
Providers are a powerful way to attach semantics to a property. In this section, we define the official
providers that you can use for your own hints. However, your favorite IDE may implement some of these
or none of them. Also, it could eventually provide its own.
Note
As this is a new feature, IDE vendors must catch up with how it works. Adoption times naturally
vary.
Name Description
Tip
Only one provider can be active for a given property, but you can specify several providers if they
can all manage the property in some way. Make sure to place the most powerful provider first, as
the IDE must use the first one in the JSON section that it can handle. If no provider for a given
property is supported, no special content assistance is provided, either.
Any
The special any provider value permits any additional values to be provided. Regular value validation
based on the property type should be applied if this is supported.
This provider is typically used if you have a list of values and any extra values should still be considered
as valid.
The following example offers on and off as auto-completion values for system.state:
{"hints": [
{
"name": "system.state",
"values": [
{
"value": "on"
},
{
"value": "off"
}
],
"providers": [
{
"name": "any"
}
]
}
]}
Note that, in the preceding example, any other value is also allowed.
Class Reference
The class-reference provider auto-completes classes available in the project. This provider supports
the following parameters:
target String none The fully qualified name of the class that should
(Class) be assignable to the chosen value. Typically
used to filter out-non candidate classes. Note
that this information can be provided by the type
itself by exposing a class with the appropriate
upper bound.
{"hints": [
{
"name": "server.servlet.jsp.class-name",
"providers": [
{
"name": "class-reference",
"parameters": {
"target": "javax.servlet.http.HttpServlet"
}
}
]
}
]}
Handle As
The handle-as provider lets you substitute the type of the property to a more high-level type. This
typically happens when the property has a java.lang.String type, because you do not want your
configuration classes to rely on classes that may not be on the classpath. This provider supports the
following parameters:
target String none The fully qualified name of the type to consider
(Class) for the property. This parameter is mandatory.
Any java.lang.Enum: Lists the possible values for the property. (We recommend defining the
property with the Enum type, as no further hint should be required for the IDE to auto-complete the
values.)
Tip
If multiple values can be provided, use a Collection or Array type to teach the IDE about it.
{"hints": [
{
"name": "spring.liquibase.change-log",
"providers": [
{
"name": "handle-as",
"parameters": {
"target": "org.springframework.core.io.Resource"
}
}
]
}
]}
Logger Name
The logger-name provider auto-completes valid logger names. Typically, package and class names
available in the current project can be auto-completed. Specific frameworks may have extra magic
logger names that can be supported as well.
Since a logger name can be any arbitrary name, this provider should allow any value but could highlight
valid package and class names that are not available in the projects classpath.
The following metadata snippet corresponds to the standard logging.level property. Keys are logger
names, and values correspond to the standard log levels or any custom level.
{"hints": [
{
"name": "logging.level.keys",
"values": [
{
"value": "root",
"description": "Root logger used to assign the default logging level."
}
],
"providers": [
{
"name": "logger-name"
}
]
},
{
"name": "logging.level.values",
"values": [
{
"value": "trace"
},
{
"value": "debug"
},
{
"value": "info"
},
{
"value": "warn"
},
{
"value": "error"
},
{
"value": "fatal"
},
{
"value": "off"
}
],
"providers": [
{
"name": "any"
}
]
}
]}
The spring-bean-reference provider auto-completes the beans that are defined in the configuration of
the current project. This provider supports the following parameters:
target String none The fully qualified name of the bean class that
(Class) should be assignable to the candidate. Typically
used to filter out non-candidate beans.
The following metadata snippet corresponds to the standard spring.jmx.server property that
defines the name of the MBeanServer bean to use:
{"hints": [
{
"name": "spring.jmx.server",
"providers": [
{
"name": "spring-bean-reference",
"parameters": {
"target": "javax.management.MBeanServer"
}
}
]
}
]}
Note
The binder is not aware of the metadata. If you provide that hint, you still need to transform the
bean name into an actual Bean reference using by the ApplicationContext.
The spring-profile-name provider auto-completes the Spring profiles that are defined in the
configuration of the current project.
The following metadata snippet corresponds to the standard spring.profiles.active property that
defines the name of the Spring profile(s) to enable:
{"hints": [
{
"name": "spring.profiles.active",
"providers": [
{
"name": "spring-profile-name"
}
]
}
]}
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
With Gradle, you can use the propdeps-plugin and specify the following dependency:
dependencies {
optional "org.springframework.boot:spring-boot-configuration-processor"
}
compileJava.dependsOn(processResources)
Note
The processor picks up both classes and methods that are annotated with
@ConfigurationProperties. The Javadoc for field values within configuration classes is used to
populate the description attribute.
Note
You should only use simple text with @ConfigurationProperties field Javadoc, since they
are not processed before being added to the JSON.
Properties are discovered through the presence of standard getters and setters with special handling
for collection types (that is detected even if only a getter is present). The annotation processor also
supports the use of the @Data, @Getter, and @Setter lombok annotations.
Note
If you are using AspectJ in your project, you need to make sure that the annotation processor runs
only once. There are several ways to do this. With Maven, you can configure the maven-apt-
plugin explicitly and add the dependency to the annotation processor only there. You could also
let the AspectJ plugin run all the processing and disable annotation processing in the maven-
compiler-plugin configuration, as follows:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<proc>none</proc>
</configuration>
</plugin>
Nested Properties
The annotation processor automatically considers inner classes as nested properties. Consider the
following class:
@ConfigurationProperties(prefix="server")
public class ServerProperties {
The preceding example produces metadata information for server.name, server.host.ip, and
server.host.port properties. You can use the @NestedConfigurationProperty annotation on
a field to indicate that a regular (non-inner) class should be treated as if it were nested.
Tip
This has no effect on collections and maps, as those types are automatically identified, and a
single metadata property is generated for each of them.
Spring Boots configuration file handling is quite flexible, and it is often the case that properties may
exist that are not bound to a @ConfigurationProperties bean. You may also need to tune some
attributes of an existing key. To support such cases and let you provide custom "hints", the annotation
processor automatically merges items from META-INF/additional-spring-configuration-
metadata.json into the main metadata file.
If you refer to a property that has been detected automatically, the description, default value, and
deprecation information are overridden, if specified. If the manual property declaration is not identified
in the current module, it is added as a new property.
Appendix C. Auto-configuration
classes
Here is a list of all auto-configuration classes provided by Spring Boot, with links to documentation and
source code. Remember to also look at the conditions report in your application for more details of
which features are switched on. (To do so, start the app with --debug or -Ddebug or, in an Actuator
application, use the conditions endpoint).
ActiveMQAutoConfiguration javadoc
AopAutoConfiguration javadoc
ArtemisAutoConfiguration javadoc
BatchAutoConfiguration javadoc
CacheAutoConfiguration javadoc
CassandraAutoConfiguration javadoc
CassandraDataAutoConfiguration javadoc
CassandraReactiveDataAutoConfiguration javadoc
CassandraReactiveRepositoriesAutoConfiguration javadoc
CassandraRepositoriesAutoConfiguration javadoc
CloudAutoConfiguration javadoc
CodecsAutoConfiguration javadoc
ConfigurationPropertiesAutoConfiguration javadoc
CouchbaseAutoConfiguration javadoc
CouchbaseDataAutoConfiguration javadoc
CouchbaseReactiveDataAutoConfiguration javadoc
CouchbaseReactiveRepositoriesAutoConfiguration javadoc
CouchbaseRepositoriesAutoConfiguration javadoc
DataSourceAutoConfiguration javadoc
DataSourceTransactionManagerAutoConfiguration javadoc
DispatcherServletAutoConfiguration javadoc
ElasticsearchAutoConfiguration javadoc
ElasticsearchDataAutoConfiguration javadoc
ElasticsearchRepositoriesAutoConfiguration javadoc
EmbeddedLdapAutoConfiguration javadoc
EmbeddedMongoAutoConfiguration javadoc
ErrorMvcAutoConfiguration javadoc
ErrorWebFluxAutoConfiguration javadoc
FlywayAutoConfiguration javadoc
FreeMarkerAutoConfiguration javadoc
GroovyTemplateAutoConfiguration javadoc
GsonAutoConfiguration javadoc
H2ConsoleAutoConfiguration javadoc
HazelcastAutoConfiguration javadoc
HazelcastJpaDependencyAutoConfiguration javadoc
HibernateJpaAutoConfiguration javadoc
HttpEncodingAutoConfiguration javadoc
HttpHandlerAutoConfiguration javadoc
HttpMessageConvertersAutoConfiguration javadoc
HypermediaAutoConfiguration javadoc
InfluxDbAutoConfiguration javadoc
IntegrationAutoConfiguration javadoc
JacksonAutoConfiguration javadoc
JdbcTemplateAutoConfiguration javadoc
JerseyAutoConfiguration javadoc
JestAutoConfiguration javadoc
JmsAutoConfiguration javadoc
JmxAutoConfiguration javadoc
JndiConnectionFactoryAutoConfiguration javadoc
JndiDataSourceAutoConfiguration javadoc
JooqAutoConfiguration javadoc
JpaRepositoriesAutoConfiguration javadoc
JsonbAutoConfiguration javadoc
JtaAutoConfiguration javadoc
KafkaAutoConfiguration javadoc
LdapAutoConfiguration javadoc
LdapDataAutoConfiguration javadoc
LdapRepositoriesAutoConfiguration javadoc
LiquibaseAutoConfiguration javadoc
MailSenderAutoConfiguration javadoc
MailSenderValidatorAutoConfiguration javadoc
MessageSourceAutoConfiguration javadoc
MongoAutoConfiguration javadoc
MongoDataAutoConfiguration javadoc
MongoReactiveAutoConfiguration javadoc
MongoReactiveDataAutoConfiguration javadoc
MongoReactiveRepositoriesAutoConfiguration javadoc
MongoRepositoriesAutoConfiguration javadoc
MultipartAutoConfiguration javadoc
MustacheAutoConfiguration javadoc
Neo4jDataAutoConfiguration javadoc
Neo4jRepositoriesAutoConfiguration javadoc
OAuth2ClientAutoConfiguration javadoc
PersistenceExceptionTranslationAutoConfiguration javadoc
ProjectInfoAutoConfiguration javadoc
PropertyPlaceholderAutoConfiguration javadoc
QuartzAutoConfiguration javadoc
RabbitAutoConfiguration javadoc
ReactiveSecurityAutoConfiguration javadoc
ReactiveWebServerAutoConfiguration javadoc
ReactorCoreAutoConfiguration javadoc
RedisAutoConfiguration javadoc
RedisReactiveAutoConfiguration javadoc
RedisRepositoriesAutoConfiguration javadoc
RepositoryRestMvcAutoConfiguration javadoc
RestTemplateAutoConfiguration javadoc
SecurityAutoConfiguration javadoc
SecurityFilterAutoConfiguration javadoc
SendGridAutoConfiguration javadoc
ServletWebServerFactoryAutoConfiguration javadoc
SessionAutoConfiguration javadoc
SolrAutoConfiguration javadoc
SolrRepositoriesAutoConfiguration javadoc
SpringApplicationAdminJmxAutoConfiguration javadoc
SpringDataWebAutoConfiguration javadoc
ThymeleafAutoConfiguration javadoc
TransactionAutoConfiguration javadoc
ValidationAutoConfiguration javadoc
WebClientAutoConfiguration javadoc
WebFluxAutoConfiguration javadoc
WebMvcAutoConfiguration javadoc
WebServicesAutoConfiguration javadoc
WebSocketMessagingAutoConfiguration javadoc
WebSocketReactiveAutoConfiguration javadoc
WebSocketServletAutoConfiguration javadoc
XADataSourceAutoConfiguration javadoc
AuditAutoConfiguration javadoc
AuditEventsEndpointAutoConfiguration javadoc
BeansEndpointAutoConfiguration javadoc
CassandraHealthIndicatorAutoConfiguration javadoc
CloudFoundryActuatorAutoConfiguration javadoc
CloudFoundryHealthWebEndpointManagementContextConfiguration javadoc
ConditionsReportEndpointAutoConfiguration javadoc
ConfigurationPropertiesReportEndpointAutoConfiguration javadoc
CouchbaseHealthIndicatorAutoConfiguration javadoc
DataSourceHealthIndicatorAutoConfiguration javadoc
DiskSpaceHealthIndicatorAutoConfiguration javadoc
ElasticsearchHealthIndicatorAutoConfiguration javadoc
EndpointAutoConfiguration javadoc
EnvironmentEndpointAutoConfiguration javadoc
FlywayEndpointAutoConfiguration javadoc
HealthEndpointAutoConfiguration javadoc
HealthIndicatorAutoConfiguration javadoc
HeapDumpWebEndpointAutoConfiguration javadoc
InfoContributorAutoConfiguration javadoc
InfoEndpointAutoConfiguration javadoc
JmsHealthIndicatorAutoConfiguration javadoc
JmxEndpointAutoConfiguration javadoc
LdapHealthIndicatorAutoConfiguration javadoc
LiquibaseEndpointAutoConfiguration javadoc
LogFileWebEndpointAutoConfiguration javadoc
LoggersEndpointAutoConfiguration javadoc
MailHealthIndicatorAutoConfiguration javadoc
ManagementContextAutoConfiguration javadoc
MetricsAutoConfiguration javadoc
MongoHealthIndicatorAutoConfiguration javadoc
Neo4jHealthIndicatorAutoConfiguration javadoc
RabbitHealthIndicatorAutoConfiguration javadoc
ReactiveCloudFoundryActuatorAutoConfiguration javadoc
ReactiveManagementContextAutoConfiguration javadoc
RedisHealthIndicatorAutoConfiguration javadoc
RequestMappingEndpointAutoConfiguration javadoc
ScheduledTasksEndpointAutoConfiguration javadoc
ServletManagementContextAutoConfiguration javadoc
SessionsEndpointAutoConfiguration javadoc
ShutdownEndpointAutoConfiguration javadoc
SolrHealthIndicatorAutoConfiguration javadoc
ThreadDumpEndpointAutoConfiguration javadoc
TraceEndpointAutoConfiguration javadoc
TraceRepositoryAutoConfiguration javadoc
TraceWebFilterAutoConfiguration javadoc
WebEndpointAutoConfiguration javadoc
@DataJpaTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.data.jpa.J
org.springframework.boot.autoconfigure.flyway.Fly
org.springframework.boot.autoconfigure.jdbc.DataS
org.springframework.boot.autoconfigure.jdbc.DataS
org.springframework.boot.autoconfigure.jdbc.JdbcT
org.springframework.boot.autoconfigure.liquibase.
org.springframework.boot.autoconfigure.orm.jpa.Hi
org.springframework.boot.autoconfigure.transactio
org.springframework.boot.test.autoconfigure.jdbc.
org.springframework.boot.test.autoconfigure.orm.j
@DataLdapTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.data.ldap.
org.springframework.boot.autoconfigure.data.ldap.
org.springframework.boot.autoconfigure.ldap.LdapA
org.springframework.boot.autoconfigure.ldap.embed
@DataMongoTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.data.mongo
org.springframework.boot.autoconfigure.data.mongo
org.springframework.boot.autoconfigure.data.mongo
org.springframework.boot.autoconfigure.data.mongo
org.springframework.boot.autoconfigure.mongo.Mong
org.springframework.boot.autoconfigure.mongo.Mong
org.springframework.boot.autoconfigure.mongo.embe
@DataNeo4jTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.data.neo4j
org.springframework.boot.autoconfigure.data.neo4j
org.springframework.boot.autoconfigure.transactio
@DataRedisTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.data.redis
org.springframework.boot.autoconfigure.data.redis
@JdbcTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.flyway.Fly
org.springframework.boot.autoconfigure.jdbc.DataS
org.springframework.boot.autoconfigure.jdbc.DataS
org.springframework.boot.autoconfigure.jdbc.JdbcT
org.springframework.boot.autoconfigure.liquibase.
@JooqTest org.springframework.boot.autoconfigure.flyway.Fly
org.springframework.boot.autoconfigure.jdbc.DataS
org.springframework.boot.autoconfigure.jdbc.DataS
org.springframework.boot.autoconfigure.jooq.JooqA
org.springframework.boot.autoconfigure.liquibase.
org.springframework.boot.autoconfigure.transactio
@JsonTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.gson.GsonA
org.springframework.boot.autoconfigure.jackson.Ja
org.springframework.boot.autoconfigure.jsonb.Json
org.springframework.boot.test.autoconfigure.json.
@RestClientTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.gson.GsonA
org.springframework.boot.autoconfigure.http.HttpM
org.springframework.boot.autoconfigure.http.codec
org.springframework.boot.autoconfigure.jackson.Ja
org.springframework.boot.autoconfigure.jsonb.Json
org.springframework.boot.autoconfigure.web.client
org.springframework.boot.autoconfigure.web.reacti
org.springframework.boot.test.autoconfigure.web.c
org.springframework.boot.test.autoconfigure.web.c
@WebFluxTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.context.Me
org.springframework.boot.autoconfigure.validation
org.springframework.boot.autoconfigure.web.reacti
org.springframework.boot.test.autoconfigure.web.r
@WebMvcTest org.springframework.boot.autoconfigure.cache.Cach
org.springframework.boot.autoconfigure.context.Me
org.springframework.boot.autoconfigure.freemarker
org.springframework.boot.autoconfigure.groovy.tem
org.springframework.boot.autoconfigure.gson.GsonA
org.springframework.boot.autoconfigure.hateoas.Hy
org.springframework.boot.autoconfigure.http.HttpM
org.springframework.boot.autoconfigure.jackson.Ja
org.springframework.boot.autoconfigure.jsonb.Json
org.springframework.boot.autoconfigure.mustache.M
org.springframework.boot.autoconfigure.thymeleaf.
org.springframework.boot.autoconfigure.validation
org.springframework.boot.autoconfigure.web.servle
org.springframework.boot.autoconfigure.web.servle
org.springframework.boot.test.autoconfigure.web.s
org.springframework.boot.test.autoconfigure.web.s
If you need to create executable jars from a different build system or if you are just curious about the
underlying technology, this section provides some background.
To solve this problem, many developers use shaded jars. A shaded jar packages all classes, from all
jars, into a single uber jar. The problem with shaded jars is that it becomes hard to see which libraries
are actually in your application. It can also be problematic if the same filename is used (but with different
content) in multiple jars. Spring Boot takes a different approach and lets you actually nest jars directly.
Spring Boot Loader-compatible jar files should be structured in the following way:
example.jar
|
+-META-INF
| +-MANIFEST.MF
+-org
| +-springframework
| +-boot
| +-loader
| +-<spring boot loader classes>
+-BOOT-INF
+-classes
| +-mycompany
| +-project
| +-YourClasses.class
+-lib
+-dependency1.jar
+-dependency2.jar
Spring Boot Loader-compatible war files should be structured in the following way:
example.war
|
+-META-INF
| +-MANIFEST.MF
+-org
| +-springframework
| +-boot
| +-loader
| +-<spring boot loader classes>
+-WEB-INF
+-classes
| +-com
| +-mycompany
| +-project
| +-YourClasses.class
+-lib
| +-dependency1.jar
| +-dependency2.jar
+-lib-provided
+-servlet-api.jar
+-dependency3.jar
Dependencies should be placed in a nested WEB-INF/lib directory. Any dependencies that are
required when running embedded but are not required when deploying to a traditional web container
should be placed in WEB-INF/lib-provided.
myapp.jar
+-------------------+-------------------------+
| /BOOT-INF/classes | /BOOT-INF/lib/mylib.jar |
|+-----------------+||+-----------+----------+|
|| A.class ||| B.class | C.class ||
|+-----------------+||+-----------+----------+|
+-------------------+-------------------------+
^ ^ ^
0063 3452 3980
The preceding example shows how A.class can be found in /BOOT-INF/classes in myapp.jar
at position 0063. B.class from the nested jar can actually be found in myapp.jar at position 3452,
and C.class is at position 3980.
Armed with this information, we can load specific nested entries by seeking to the appropriate part of the
outer jar. We do not need to unpack the archive, and we do not need to read all entry data into memory.
Spring Boot Loader strives to remain compatible with existing code and libraries.
org.springframework.boot.loader.jar.JarFile extends from java.util.jar.JarFile
and should work as a drop-in replacement. The getURL() method returns a URL that opens
a connection compatible with java.net.JarURLConnection and can be used with Javas
URLClassLoader.
Launcher Manifest
The following example shows a typical MANIFEST.MF for an executable jar file:
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.mycompany.project.MyApplication
Main-Class: org.springframework.boot.loader.WarLauncher
Start-Class: com.mycompany.project.MyApplication
Note
You need not specify Class-Path entries in your manifest file. The classpath is deduced from
the nested jars.
Exploded Archives
Certain PaaS implementations may choose to unpack archives before they run. For example, Cloud
Foundry operates this way. You can run an unpacked archive by starting the appropriate launcher, as
follows:
$ unzip -q myapp.jar
$ java org.springframework.boot.loader.JarLauncher
Key Purpose
Key Purpose
When specified as environment variables or manifest entries, the following names should be used:
Tip
Build plugins automatically move the Main-Class attribute to Start-Class when the fat jar is
built. If you use that, specify the name of the class to launch by using the Main-Class attribute
and leaving out Start-Class.
loader.properties is searched for in loader.home, then in the root of the classpath, and then
in classpath:/BOOT-INF/classes. The first location where a file with that name exists is used.
loader.home is the directory location of an additional properties file (overriding the default) only
when loader.config.location is not specified.
loader.path can contain directories (which are scanned recursively for jar and zip files), archive
paths, a directory within an archive that is scanned for jar files (for example, dependencies.jar!/
lib), or wildcard patterns (for the default JVM behavior). Archive paths can be relative to
loader.home or anywhere in the file system with a jar:file: prefix.
loader.path can not be used to configure the location of loader.properties (the classpath
used to search for the latter is the JVM classpath when PropertiesLauncher is launched).
Placeholder replacement is done from System and environment variables plus the properties file itself
on all values before use.
The search order for properties (where it makes sense to look in more than one place) is environment
variables, system properties, loader.properties, the exploded archive manifest, and the archive
manifest.
Zip entry compression: The ZipEntry for a nested jar must be saved by using the
ZipEntry.STORED method. This is required so that we can seek directly to individual content within
the nested jar. The content of the nested jar file itself can still be compressed, as can any other entries
in the outer jar.
JarClassLoader
OneJar
com.fasterxml.jackson.core
jackson-annotations 2.9.0
com.fasterxml.jackson.core
jackson-core 2.9.2
com.fasterxml.jackson.core
jackson-databind 2.9.2
com.fasterxml.jackson.dataformat
jackson-dataformat-avro 2.9.2
com.fasterxml.jackson.dataformat
jackson-dataformat-cbor 2.9.2
com.fasterxml.jackson.dataformat
jackson-dataformat-csv 2.9.2
com.fasterxml.jackson.dataformat
jackson-dataformat-ion 2.9.2
com.fasterxml.jackson.dataformat
jackson-dataformat- 2.9.2
properties
com.fasterxml.jackson.dataformat
jackson-dataformat- 2.9.2
protobuf
com.fasterxml.jackson.dataformat
jackson-dataformat- 2.9.2
smile
com.fasterxml.jackson.dataformat
jackson-dataformat-xml 2.9.2
com.fasterxml.jackson.dataformat
jackson-dataformat-yaml 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype-guava 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype- 2.9.2
hibernate3
com.fasterxml.jackson.datatype
jackson-datatype- 2.9.2
hibernate4
com.fasterxml.jackson.datatype
jackson-datatype- 2.9.2
hibernate5
com.fasterxml.jackson.datatype
jackson-datatype-hppc 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype-jaxrs 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype-jdk8 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype-joda 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype-json- 2.9.2
org
com.fasterxml.jackson.datatype
jackson-datatype-jsr310 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype-jsr353 2.9.2
com.fasterxml.jackson.datatype
jackson-datatype- 2.9.2
pcollections
com.fasterxml.jackson.jaxrs
jackson-jaxrs-base 2.9.2
com.fasterxml.jackson.jaxrs
jackson-jaxrs-cbor- 2.9.2
provider
com.fasterxml.jackson.jaxrs
jackson-jaxrs-json- 2.9.2
provider
com.fasterxml.jackson.jaxrs
jackson-jaxrs-smile- 2.9.2
provider
com.fasterxml.jackson.jaxrs
jackson-jaxrs-xml- 2.9.2
provider
com.fasterxml.jackson.jaxrs
jackson-jaxrs-yaml- 2.9.2
provider
com.fasterxml.jackson.module
jackson-module- 2.9.2
afterburner
com.fasterxml.jackson.module
jackson-module-guice 2.9.2
com.fasterxml.jackson.module
jackson-module-jaxb- 2.9.2
annotations
com.fasterxml.jackson.module
jackson-module- 2.9.2
jsonSchema
com.fasterxml.jackson.module
jackson-module-kotlin 2.9.2
com.fasterxml.jackson.module
jackson-module-mrbean 2.9.2
com.fasterxml.jackson.module
jackson-module-osgi 2.9.2
com.fasterxml.jackson.module
jackson-module- 2.9.2
parameter-names
com.fasterxml.jackson.module
jackson-module- 2.9.2
paranamer
com.fasterxml.jackson.module
jackson-module- 2.9.2
scala_2.10
com.fasterxml.jackson.module
jackson-module- 2.9.2
scala_2.11
com.fasterxml.jackson.module
jackson-module- 2.9.2
scala_2.12
com.github.mxab.thymeleaf.extras
thymeleaf-extras-data- 2.0.1
attribute
com.h2database h2 1.4.196
de.flapdoodle.embed de.flapdoodle.embed.mongo2.0.0
org.apache.httpcomponentshttpasyncclient 4.1.3
org.apache.httpcomponentshttpclient 4.5.3
org.apache.httpcomponentshttpcore 4.4.8
org.apache.httpcomponentshttpcore-nio 4.4.8
org.apache.httpcomponentshttpmime 4.5.3
org.eclipse.jetty.memcached
jetty-memcached- 9.4.7.v20170914
sessions
org.eclipse.jetty.websocket
javax-websocket-client- 9.4.7.v20170914
impl
org.eclipse.jetty.websocket
javax-websocket-server- 9.4.7.v20170914
impl
org.eclipse.jetty.websocket
websocket-api 9.4.7.v20170914
org.eclipse.jetty.websocket
websocket-client 9.4.7.v20170914
org.eclipse.jetty.websocket
websocket-common 9.4.7.v20170914
org.eclipse.jetty.websocket
websocket-server 9.4.7.v20170914
org.eclipse.jetty.websocket
websocket-servlet 9.4.7.v20170914
org.glassfish.jersey.containers
jersey-container- 2.26
servlet
org.glassfish.jersey.containers
jersey-container- 2.26
servlet-core
org.glassfish.jersey.corejersey-client 2.26
org.glassfish.jersey.corejersey-common 2.26
org.glassfish.jersey.corejersey-server 2.26
org.glassfish.jersey.media
jersey-media-jaxb 2.26
org.glassfish.jersey.media
jersey-media-json- 2.26
jackson
org.glassfish.jersey.media
jersey-media-multipart 2.26
org.springframework.batchspring-batch-core 4.0.0.M5
org.springframework.batchspring-batch- 4.0.0.M5
infrastructure
org.springframework.batchspring-batch- 4.0.0.M5
integration
org.springframework.batchspring-batch-test 4.0.0.M5
org.springframework.cloudspring-cloud- 2.0.1.RELEASE
cloudfoundry-connector
org.springframework.cloudspring-cloud- 2.0.1.RELEASE
connectors-core
org.springframework.cloudspring-cloud-heroku- 2.0.1.RELEASE
connector
org.springframework.cloudspring-cloud- 2.0.1.RELEASE
localconfig-connector
org.springframework.cloudspring-cloud-spring- 2.0.1.RELEASE
service-connector
org.springframework.hateoas
spring-hateoas 0.24.0.RELEASE
org.springframework.integration
spring-integration-amqp 5.0.0.RELEASE
org.springframework.integration
spring-integration-core 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
event
org.springframework.integration
spring-integration-feed 5.0.0.RELEASE
org.springframework.integration
spring-integration-file 5.0.0.RELEASE
org.springframework.integration
spring-integration-ftp 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
gemfire
org.springframework.integration
spring-integration- 5.0.0.RELEASE
groovy
org.springframework.integration
spring-integration-http 5.0.0.RELEASE
org.springframework.integration
spring-integration-ip 5.0.0.RELEASE
org.springframework.integration
spring-integration-jdbc 5.0.0.RELEASE
org.springframework.integration
spring-integration-jms 5.0.0.RELEASE
org.springframework.integration
spring-integration-jmx 5.0.0.RELEASE
org.springframework.integration
spring-integration-jpa 5.0.0.RELEASE
org.springframework.integration
spring-integration-mail 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
mongodb
org.springframework.integration
spring-integration-mqtt 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
redis
org.springframework.integration
spring-integration-rmi 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
scripting
org.springframework.integration
spring-integration- 5.0.0.RELEASE
security
org.springframework.integration
spring-integration-sftp 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
stomp
org.springframework.integration
spring-integration- 5.0.0.RELEASE
stream
org.springframework.integration
spring-integration- 5.0.0.RELEASE
syslog
org.springframework.integration
spring-integration-test 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
test-support
org.springframework.integration
spring-integration- 5.0.0.RELEASE
twitter
org.springframework.integration
spring-integration- 5.0.0.RELEASE
webflux
org.springframework.integration
spring-integration- 5.0.0.RELEASE
websocket
org.springframework.integration
spring-integration-ws 5.0.0.RELEASE
org.springframework.integration
spring-integration-xml 5.0.0.RELEASE
org.springframework.integration
spring-integration-xmpp 5.0.0.RELEASE
org.springframework.integration
spring-integration- 5.0.0.RELEASE
zookeeper
org.springframework.kafkaspring-kafka 2.1.0.RC1
org.springframework.kafkaspring-kafka-test 2.1.0.RC1
org.springframework.plugin
spring-plugin-core 1.2.0.RELEASE
org.springframework.plugin
spring-plugin-metadata 1.2.0.RELEASE
org.springframework.restdocs
spring-restdocs- 2.0.0.RELEASE
asciidoctor
org.springframework.restdocs
spring-restdocs-core 2.0.0.RELEASE
org.springframework.restdocs
spring-restdocs-mockmvc 2.0.0.RELEASE
org.springframework.restdocs
spring-restdocs- 2.0.0.RELEASE
restassured
org.springframework.restdocs
spring-restdocs- 2.0.0.RELEASE
webtestclient
org.springframework.retryspring-retry 1.2.1.RELEASE
org.springframework.security
spring-security-acl 5.0.0.RELEASE
org.springframework.security
spring-security-aspects 5.0.0.RELEASE
org.springframework.security
spring-security-bom 5.0.0.RELEASE
org.springframework.security
spring-security-cas 5.0.0.RELEASE
org.springframework.security
spring-security-config 5.0.0.RELEASE
org.springframework.security
spring-security-core 5.0.0.RELEASE
org.springframework.security
spring-security-crypto 5.0.0.RELEASE
org.springframework.security
spring-security-data 5.0.0.RELEASE
org.springframework.security
spring-security-ldap 5.0.0.RELEASE
org.springframework.security
spring-security- 5.0.0.RELEASE
messaging
org.springframework.security
spring-security-oauth2- 5.0.0.RELEASE
client
org.springframework.security
spring-security-oauth2- 5.0.0.RELEASE
core
org.springframework.security
spring-security-oauth2- 5.0.0.RELEASE
jose
org.springframework.security
spring-security-openid 5.0.0.RELEASE
org.springframework.security
spring-security- 5.0.0.RELEASE
remoting
org.springframework.security
spring-security-taglibs 5.0.0.RELEASE
org.springframework.security
spring-security-test 5.0.0.RELEASE
org.springframework.security
spring-security-web 5.0.0.RELEASE
org.springframework.session
spring-session-core 2.0.0.RC2
org.springframework.session
spring-session-data- 2.0.0.RC2
mongodb
org.springframework.session
spring-session-data- 2.0.0.RC2
redis
org.springframework.session
spring-session- 2.0.0.RC2
hazelcast
org.springframework.session
spring-session-jdbc 2.0.0.RC2