Spring Boot Reference
Spring Boot Reference
1.1.4.RELEASE
Copyright © 2013-2014
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. Installing Spring Boot .................................................................................................... 11
9.1. Installation instructions for the Java developer ..................................................... 11
Maven installation ............................................................................................. 11
Gradle installation ............................................................................................. 12
9.2. Installing the Spring Boot CLI ............................................................................. 13
Manual installation ............................................................................................ 13
Installation with GVM ........................................................................................ 13
OSX Homebrew installation ............................................................................... 14
Command-line completion ................................................................................. 14
Quick start Spring CLI example ......................................................................... 14
9.3. Upgrading from an earlier version of Spring Boot ................................................. 15
10. Developing your first Spring Boot application ................................................................ 16
10.1. Creating the POM ............................................................................................ 16
10.2. Adding classpath dependencies ........................................................................ 17
10.3. Writing the code ............................................................................................... 17
The @RestController and @RequestMapping annotations .................................. 18
The @EnableAutoConfiguration annotation ........................................................ 18
The “main” method ........................................................................................... 18
10.4. Running the example ........................................................................................ 18
10.5. Creating an executable jar ................................................................................ 19
11. What to read next ....................................................................................................... 21
III. Using Spring Boot ................................................................................................................ 22
12. Build systems ............................................................................................................. 23
12.1. Maven .............................................................................................................. 23
Inheriting the starter parent ............................................................................... 23
Using Spring Boot without the parent POM ........................................................ 23
Changing the Java version ................................................................................ 24
Using the Spring Boot Maven plugin .................................................................. 24
12.2. Gradle .............................................................................................................. 24
12.3. Ant ................................................................................................................... 25
12.4. Starter POMs ................................................................................................... 25
13. Structuring your code .................................................................................................. 28
13.1. Using the “default” package .............................................................................. 28
13.2. Locating the main application class ................................................................... 28
14. Configuration classes .................................................................................................. 30
14.1. Importing additional configuration classes .......................................................... 30
14.2. Importing XML configuration .............................................................................. 30
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
Having trouble with Spring Boot, We’d like to help!
• Try the How-to’s — they provide solutions to the most common questions.
• Learn the Spring basics — Spring Boot is builds on many other Spring projects, check the spring.io
web-site for a wealth of reference documentation. If you are just 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 just want to improve them, please get involved.
3. First steps
If you’re just getting started with Spring Boot, or Spring in general, this is the place to start!
6. Moving to production
When you’re ready to push your Spring Boot application to production, we’ve got some tricks that you
might like!
7. Advanced topics
Lastly, we have a few topics for the more advanced user.
You can use Spring Boot to create Java applications that can be started 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 (e.g.
embedded servers, security, metrics, health checks, externalized configuration).
$ java -version
If you are new to Java development, or if you just want to experiment with Spring Boot you might want
to try the Spring Boot CLI first, otherwise, read on for “classic” installation instructions.
Tip
Although Spring Boot is compatible with Java 1.6, if possible, you should consider using the latest
version of Java.
Although you could just 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.0 or above. If you don’t already have Maven installed
you can follow the instructions at http://maven.apache.org.
Tip
On many operating systems Maven can be installed via a package manager. If you’re an OSX
Homebrew user try brew install maven. Ubuntu users can run sudo apt-get install
maven.
Spring Boot dependencies use the org.springframework.boot groupId. Typically your Maven
POM file will inherit from the spring-boot-starter-parent project and declare dependencies to
one or more “Starter POMs”. 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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.1.4.RELEASE</version>
</parent>
</project>
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 just not like our default settings. 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 1.6 or above. If you don’t already have Gradle installed you can
follow the instructions at http://www.gradle.org/.
Spring Boot dependencies can be declared using the org.springframework.boot group. Typically
your project will declare dependencies to one or more “Starter POMs”. Spring Boot provides a useful
Gradle plugin that can be used to simplify dependency declarations and to create executable jars.
Gradle Wrapper
The Gradle Wrapper provides a nice way of “obtaining” Gradle when you need to build a project.
It’s a small script and library that you commit alongside your code to bootstrap the build process.
See http://www.gradle.org/docs/current/userguide/gradle_wrapper.html for details.
buildscript {
repositories {
mavenCentral()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE")
}
}
jar {
baseName = 'myproject'
version = '0.0.1-SNAPSHOT'
}
repositories {
mavenCentral()
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 don’t need to use the CLI to work with Spring Boot but it’s 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-1.1.4.RELEASE-bin.zip
• spring-boot-cli-1.1.4.RELEASE-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, or alternatively you
can use java -jar with the .jar file (the script helps you to be sure that the classpath is set correctly).
GVM (the Groovy Environment Manager) can be used for managing multiple versions of various Groovy
and Java binary packages, including Groovy itself and the Spring Boot CLI. Get gvm from http://
gvmtool.net and install Spring Boot with
If you are developing features for the CLI and want easy access to the version you just built, follow
these extra instructions.
This will install a local instance of spring called the dev instance inside your gvm repository. It points
at your target build location, so every time you rebuild Spring Boot, spring will be up-to-date.
$ gvm ls springboot
================================================================================
Available Springboot Versions
================================================================================
> + dev
* 1.1.4.RELEASE
================================================================================
+ - local version
* - installed
> - currently in use
================================================================================
Note
If you don’t see the formula, your installation of brew might be out-of-date. Just execute brew
update and try again.
Command-line completion
Spring Boot CLI ships with scripts that provide command completion for 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. To run the script manually,
e.g. if you have installed using GVM
$ . ~/.gvm/springboot/current/shell-completion/bash/spring
$ spring <HIT TAB HERE>
grab help jar run test version
Note
If you install Spring Boot CLI using Homebrew, the command-line completion scripts are
automatically registered with your shell.
@RestController
class ThisWillActuallyRun {
@RequestMapping("/")
String home() {
"Hello World!"
}
Note
It will take some time when you first run the application as dependencies are downloaded,
subsequent runs will be much quicker.
Open http://localhost:8080 in your favorite web browser and 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’re
looking to solve a specific problem; check there first.
Before we begin, open a terminal to check that you have valid versions of Java and Maven installed.
$ java -version
java version "1.7.0_51"
Java(TM) SE Runtime Environment (build 1.7.0_51-b13)
Java HotSpot(TM) 64-Bit Server VM (build 24.51-b03, mixed mode)
$ mvn -v
Apache Maven 3.1.1 (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 08:22:22-0700)
Maven home: /Users/user/tools/apache-maven-3.1.1
Java version: 1.7.0_51, 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>1.1.4.RELEASE</version>
</parent>
</project>
This should give you a working build, you can test it out by running mvn package (you can ignore the
“jar will be empty - no content was marked for inclusion!” warning for now).
Note
At this point you could import the project into an IDE (most modern Java IDE’s include built-in
support for Maven). For simplicity, we will continue to use a plain text editor for this example.
Other “Starter POMs” simply provide dependencies that you are likely to need when developing a
specific type of application. Since we are developing a web application, we will add a spring-boot-
starter-web dependency — but before that, let’s look at what we currently have.
$ mvn dependency:tree
[INFO] com.example:myproject:jar:0.0.1-SNAPSHOT
The mvn dependency:tree command prints tree representation of your project dependencies. You
can see that spring-boot-starter-parent provides no dependencies by itself. Let’s edit our
pom.xml and add the spring-boot-starter-web dependency just 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 will 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.stereotype.*;
import org.springframework.web.bind.annotation.*;
@RestController
@EnableAutoConfiguration
public class Example {
@RequestMapping("/")
String home() {
return "Hello World!";
}
Although there isn’t much code here, quite a lot is going on. Let’s step though the important parts.
The first annotation on our Example class is @RestController. This is known as a stereotype
annotation. It provides hints for people reading the code, and for Spring, that the class plays a specific
role. In this case, our class is a web @Controller so Spring will consider it when handling incoming
web requests.
The @RequestMapping annotation provides “routing” information. It is telling 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
The @RestController and @RequestMapping annotations are Spring MVC annotations (they
are not specific to Spring Boot). See the MVC section in the Spring Reference Documentation
for more details.
Auto-configuration is designed to work well with “Starter POMs”, but the two concepts are not
directly tied. You are free to pick-and-choose jar dependencies outside of the starter POMs and
Spring Boot will still do 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 Boot’s
SpringApplication class by calling run. SpringApplication will bootstrap our application,
starting Spring which will in turn start 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
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
If you open a web browser to http://localhost:8080 you should see the following output:
Hello World!
Java does not provide any standard way to load nested jar files (i.e. 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 “shaded” jars. A shaded jar simply 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 you are actually using in your application. It can also be problematic if the
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.
To create an executable jar we need to add the spring-boot-maven-plugin to our pom.xml. Insert
the following lines just below the dependencies section:
<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:
$ mvn package
[INFO] ------------------------------------------------------------------------
[INFO] .... ..
[INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ myproject ---
[INFO] Building jar: /Users/developer/example/spring-boot-example/target/myproject-0.0.1-SNAPSHOT.jar
[INFO]
[INFO] --- spring-boot-maven-plugin:1.1.4.RELEASE:repackage (default) @ myproject ---
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
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:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.1.4.RELEASE)
....... . . .
....... . . . (log output here)
....... . . .
........ Started Example in 3.236 seconds (JVM running for 3.764)
Otherwise, the next logical step is to read Part III, “Using Spring Boot”. If you’re really impatient, you
could also jump ahead and read about Spring Boot features.
If you’re just starting out with Spring Boot, you should probably read the Getting Started guide before
diving into this section.
Spring Boot Reference Guide
12.1 Maven
Maven users can inherit from the spring-boot-starter-parent project to obtain sensible defaults.
The parent project provides the following features:
• A Dependency Management section, allowing you to omit <version> tags for common
dependencies, inherited from the spring-boot-dependencies POM.
• Sensible plugin configuration (exec plugin, surefire, Git commit ID, shade).
To configure your project to inherit from the spring-boot-starter-parent simply set the parent:
Note
You should only need to specify the Spring Boot version number on this dependency. If you import
additional starters, you can safely omit the version number.
Not everyone likes inheriting from the spring-boot-starter-parent POM. You may have your
own corporate standard parent that you need to use, or you may just prefer to explicitly declare all your
Maven configuration.
If you don’t 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:
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.1.4.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<java.version>1.8</java.version>
</properties>
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:
<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 only need to add the plugin, there is no need
for to configure it unless you want to change the settings defined in the parent.
12.2 Gradle
Gradle users can directly import “starter POMs” in their dependencies section. Unlike Maven, there
is no “super parent” to import to share some configuration.
repositories { mavenCentral() }
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.1.4.RELEASE")
}
The spring-boot-gradle-plugin is also available and provides tasks to create executable jars and
run projects from source. It also adds a ResolutionStrategy that enables you to omit the version
number for “blessed” dependencies:
buildscript {
repositories { mavenCentral() }
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE")
}
}
repositories { mavenCentral() }
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
12.3 Ant
It is possible to build a Spring Boot project using Apache Ant, however, no special support or plugins
are provided. Ant scripts can use the Ivy dependency system to import starter POMs.
See the Section 68.8, “Build an executable archive with Ant” “How-to” for more complete instructions.
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.
What’s in a name
The following application starters are provided by Spring Boot under the
org.springframework.boot group:
Name Description
Name Description
In addition to the application starters, the following starters can be used to add production ready features.
Name Description
Finally, Spring Boot includes some starters that can be used if you want to exclude or swap specific
technical facets.
Name Description
Tip
For a list of additional community contributed starter POMs, see the README file in the spring-
boot-starters module on GitHub.
Tip
We recommend that you follow Java’s recommended package naming conventions and use a
reversed domain name (for example, com.example.project).
Using a root package also allows the @ComponentScan annotation to be used without needing to
specify a basePackage attribute.
com
+- example
+- myproject
+- Application.java
|
+- domain
| +- Customer.java
| +- CustomerRepository.java
|
+- service
| +- CustomerService.java
|
+- web
+- CustomerController.java
The Application.java file would declare the main method, along with the basic @Configuration.
package com.example.myproject;
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. Always try to use the equivalent Java-base configuration if possible. Searching for
enable* annotations can be a good starting point.
15. 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 we will auto-configure an in-memory
database.
Tip
If you need to find out what auto-configuration is currently being applied, and why, starting your
application with the --debug switch. This will log an auto-configuration 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 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.) will be automatically registered as Spring Beans.
Here is an example @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;
}
// ...
Tip
Notice how using constructor injection allows the riskAssessor field to be marked as final,
indicating that it cannot be subsequently changed.
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 can’t directly import your project into your IDE, you may be able to generate IDE meta-data 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 will see a “Port already in use” error. STS users
can use the Relaunch button rather than Run to ensure that any existing instance is closed.
It is also possible to run a packaged application with remote debugging support enabled. This allows
you to attach a debugger to your packaged application:
$ mvn spring-boot:run
(The “egd” setting is to speed up Tomcat startup by giving it a faster source of entropy for session keys.)
$ gradle bootRun
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.
20. SpringApplication
The SpringApplication class provides a convenient way to bootstrap a Spring application that
will be started from a main() method. In many situations you can just delegate to the static
SpringApplication.run method:
When your application starts you should see something similar to the following:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: v1.1.4.RELEASE
By default INFO logging messages will be shown, including some relevant startup details such as the
user that launched the application.
Note
The constructor arguments passed to SpringApplication are configuration sources for spring
beans. In most cases these will be 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 allows you to chain together multiple method calls, and includes
parent and child methods that allow you to create a hierarchy.
For example:
new SpringApplicationBuilder()
.showBanner(false)
.sources(Parent.class)
.child(Application.class)
.run(args);
Note
There are some restrictions when creating an ApplicationContext hierarchy, e.g. Web
components must be contained within the child context, and the same Environment will be
used for both parent and child contexts. See the SpringApplicationBuilder javadoc for full
details.
You can register event listeners in a number of ways, the most common being
SpringApplication.addListeners(...) method.
Application events are sent in the following order, as your application runs:
1. An ApplicationStartedEvent 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.
Tip
You often won’t need to use application events, but it can be handy to know that they exist.
Internally, Spring Boot uses events to handle a variety of tasks.
The algorithm used to determine a “web environment” is fairly simplistic (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 will be used by
calling setApplicationContextClass(...).
Tip
import org.springframework.boot.*
import org.springframework.stereotype.*
@Component
public class MyBean implements CommandLineRunner {
Spring Boot uses a very particular PropertySource order that is designed to allow sensible overriding
of values, properties are considered in the the following order:
3. OS environment variables.
7. Application properties packaged inside your jar (application.properties including YAML and
profile variants).
To provide a concrete example, suppose you develop a @Component that uses a name property:
import org.springframework.stereotype.*
import org.springframework.beans.factory.annotation.*
@Component
public class MyBean {
@Value("${name}")
private String name;
// ...
You can bundle an application.properties inside your jar that provides a sensible default name.
When running in production, an application.properties can be provided outside of your jar that
overrides name; and for one-off testing, you can launch with a specific command line switch (e.g. java
-jar app.jar --name="Spring").
The RandomValuePropertySource is useful for injecting random values (e.g. into secrets or test
cases). It can produce integers, longs or strings, e.g.
my.secret=${random.value}
my.number=${random.int}
my.bignumber=${random.long}
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 (exclusive).
If you don’t want command line properties to be added to the Environment you can disable them using
SpringApplication.setAddCommandLineProperties(false).
The list is ordered by precedence (locations higher in the list override lower items).
Note
If you don’t like application.properties as the configuration file name you can switch to
another by specifying a spring.config.name environment property. You can also refer to an
explicit location using the spring.config.location environment property (comma-separated list
of directory locations, or file paths).
or
If spring.config.location contains directories (as opposed to files) they should end in / (and
will be appended with the names generated from spring.config.name before being loaded). The
default search path classpath:,classpath:/config,file:,file:config/ is always used,
irrespective of the value of spring.config.location. In that way you can set up default values
for your application in application.properties (or whatever other basename you choose with
spring.config.name) and override it at runtime with a different file, keeping the defaults.
Note
if you use environment variables not system properties, most operating systems disallow period-
separated key names, but you can use underscores instead (e.g. SPRING_CONFIG_NAME instead
of spring.config.name).
Note
If you are running 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.
Profile specific properties are loaded from the same locations as standard
application.properties, with profiles specific files overriding the default ones.
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 58.3, “Use “short” command line arguments” how-to for details.
Note
If you use “starter POMs” SnakeYAML will be automatically provided via spring-boot-
starter.
Loading YAML
Spring Boot provides two convenient classes that can be used to load YAML documents. The
YamlPropertiesFactoryBean will load YAML as Properties and the YamlMapFactoryBean will
load YAML as a Map.
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 this 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 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,
e.g. this will bind to the properties above
@ConfigurationProperties(prefix="my")
public class Config {
private List<String> servers = new ArrayList<String>();
server:
address: 192.168.1.100
---
spring:
profiles: development
server:
address: 127.0.0.1
---
spring:
profiles: production
server:
address: 192.168.1.120
YAML shortcomings
YAML files can’t be loaded via the @PropertySource annotation. So in the case that you need to load
values that way, you need to use a properties file.
@Component
@ConfigurationProperties(prefix="connection")
public class ConnectionSettings {
# application.yml
connection:
username: admin
remoteAddress: 192.168.1.1
To work with @ConfigurationProperties beans you can just inject them in the same way as any
other bean.
@Service
public class MyService {
@Autowired
private ConnectionSettings connection;
//...
@PostConstruct
public void openConnection() {
Server server = new Server();
this.connection.configure(server);
}
@Configuration
@EnableConfigurationProperties(ConnectionSettings.class)
public class MyConfiguration {
Relaxed binding
Spring Boot uses some relaxed rules for binding Environment properties to
@ConfigurationProperties beans, so there doesn’t need to be an exact match between the
Environment property name and the bean property name. Common examples where this is useful
include underscore separated (e.g. context_path binds to contextPath), and capitalized (e.g. PORT
binds to port) environment properties.
Spring will attempt 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 id conversionService) or custom property editors (via a
CustomEditorConfigurer bean).
@ConfigurationProperties Validation
Spring Boot will attempt to validate external configuration, by default using JSR-303 (if it is on
the classpath). You can simply add JSR-303 javax.validation constraint annotations to your
@ConfigurationProperties class:
@Component
@ConfigurationProperties(prefix="connection")
public class ConnectionSettings {
@NotNull
private InetAddress remoteAddress;
You can also add a custom Spring Validator by creating a bean definition called
configurationPropertiesValidator.
Tip
22. Profiles
Spring Profiles provide a way to segregate parts of your application configuration and make it
only available in certain environments. Any @Component or @Configuration can be marked with
@Profile to limit when it is loaded:
@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
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 (i.e. on top of
those activated by the spring.profiles.active property): see the setAdditionalProfiles()
method.
For example, when an application with following properties is run using the switch --
spring.profiles.active=prod the proddb and prodmq profiles will also be activated:
---
my.property: fromyamlfile
---
spring.profiles: prod
spring.profiles.include: proddb,prodmq
23. 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, Log4J and Logback. In each case there
is console output and file output (rotating, 10 Mb file size).
By default, If you use the “Starter POMs”, Logback will be used for logging. Appropriate Logback routing
is also included to ensure that dependent libraries that use Java Util Logging, Commons Logging, Log4J
or SLF4J will all work correctly.
Tip
There are a lot of logging frameworks available for Java. Don’t worry if the above list seems
confusing, generally you won’t need to change your logging dependencies and the Spring Boot
defaults will work just fine.
• Process ID.
• Logger name — This is usually the source class name (often abbreviated).
If your terminal supports ANSI, color output will be used to aid readability.
As with console output, ERROR, WARN and INFO level messages are logged by default.
logging.level.org.springframework.web: DEBUG
logging.level.org.hibernate: ERROR
Logback logback.xml
To help with the customization some other properties are transferred from the Spring Environment
to System properties:
All the logging systems supported can consult System properties when parsing their configuration files.
See the default configurations in spring-boot.jar for examples.
Warning
There are know classloading issues with Java Util Logging that cause problems when running
from an “executable jar”. We recommend that you avoid it if at all possible.
If you haven’t yet developed a Spring Boot web application you can follow the "Hello World!" example
in the Getting started section.
@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 available at http://spring.io/guides that cover Spring MVC.
Spring Boot provides auto-configuration for Spring MVC that works well with most applications.
• Support for serving static resources, including support for WebJars (see below).
If you want to take complete control of Spring MVC, you can add your own @Configuration annotated
with @EnableWebMvc. If you want to keep Spring Boot MVC features, and you just want to add additional
MVC configuration (interceptors, formatters, view controllers etc.) you can add your own @Bean of type
WebMvcConfigurerAdapter, but without @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 (using the Jackson library) or XML (using JAXB).
If you need to add or customize converters you can use Spring Boot’s 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);
}
MessageCodesResolver
Spring MVC has a strategy for generating error codes for rendering error messages from binding errors:
MessageCodesResolver. Spring Boot will create one for you if you set the spring.mvc.message-
codes-resolver.format property PREFIX_ERROR_CODE or POSTFIX_ERROR_CODE (see the
enumeration in DefaultMessageCodesResolver.Format).
Static Content
By default Spring Boot will serve static content from a folder 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 you can modify that behavior by
adding your own WebMvcConfigurerAdapter 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 will
always be able to handle requests through the DispatcherServlet.
In addition to the “standard” static resource locations above, a special case is made for Webjars content.
Any resources with a path in /webjars/** will be served from jar files if they are packaged in the
Webjars format.
Tip
Do not use the src/main/webapp folder if your application will be packaged as a jar. Although
this folder is a common standard, it will only work with war packaging and it will be silently ignored
by most build tools if you generate a jar.
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 Velocity, FreeMarker and JSPs. Many other
templating engines also ship their own Spring MVC integrations.
Spring Boot includes auto-configuration support for the following templating engines:
• FreeMarker
• Groovy
• Thymeleaf
• Velocity
When you’re using one of these templating engines with the default configuration, your templates will
be picked up automatically from src/main/resources/templates.
Tip
JSPs should be avoided if possible, there are several known limitations when using them with
embedded servlet containers.
Error Handling
Spring Boot provides an /error mapping by default 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 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 view that renders the same data in HTML format (to customize
it just add a View that resolves to “error”). To replace the default behaviour completely you can
implement ErrorController and register a bean definition of that type, or simply add a bean of type
ErrorAttributes to use the existing mechanism but replace the contents.
If you want more specific error pages for some conditions, the embedded servlet containers support a
uniform Java DSL for customizing the error handling. For example:
@Bean
public EmbeddedServletContainerCustomizer containerCustomizer(){
return new MyCustomizer();
}
// ...
@Override
public void customize(ConfigurableEmbeddedServletContainer factory) {
factory.addErrorPages(new ErrorPage(HttpStatus.BAD_REQUEST, "/400"));
}
You can also use regular Spring MVC features like @ExceptionHandler methods and
@ControllerAdvice. The ErrorController will then pick up any unhandled exceptions.
By default, if the context contains only a single Servlet it will be mapped to /. In the case of multiple
Servlets beans the bean name will be used as a path prefix. Filters will map to /*.
If convention-based mapping is not flexible enough you can use the ServletRegistrationBean and
FilterRegistrationBean classes for complete control. You can also register items directly if your
bean implements the ServletContextInitializer interface.
The EmbeddedWebApplicationContext
Under the hood Spring Boot uses a new type of ApplicationContext for embedded servlet container
support. The EmbeddedWebApplicationContext is a special type of WebApplicationContext
that bootstraps itself by searching for a single EmbeddedServletContainerFactory bean. Usually a
TomcatEmbeddedServletContainerFactory or JettyEmbeddedServletContainerFactory
will have been auto-configured.
Note
Programmatic customization
If you need to configure your embdedded servlet container programmatically you can
register a Spring bean that implements the EmbeddedServletContainerCustomizer
import org.springframework.boot.context.embedded.*;
import org.springframework.stereotype.Component;
@Component
public class CustomizationBean implements EmbeddedServletContainerCustomizer {
@Override
public void customize(ConfigurableEmbeddedServletContainer container) {
container.setPort(9000);
}
If the above customization techniques are too limited, you can register the
TomcatEmbeddedServletContainerFactory or JettyEmbeddedServletContainerFactory
bean yourself.
@Bean
public EmbeddedServletContainerFactory servletContainer() {
TomcatEmbeddedServletContainerFactory factory = new TomcatEmbeddedServletContainerFactory();
factory.setPort(9000);
factory.setSessionTimeout(10, TimeUnit.MINUTES);
factory.addErrorPages(new ErrorPage(HttpStatus.404, "/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, i.e. an executable war will work, and will also
be deployable to a standard container (not limited to, but including Tomcat). An executable jar will not
work because of a hard coded file pattern in Tomcat.
There is a JSP sample so you can see how to set things up.
25. Security
If Spring Security is on the classpath then web applications will be secure by default with “basic”
authentication on all HTTP endpoints. 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 (“user” username and random password,
printed at INFO level when the application starts up)
You can change the password by providing a security.user.password. This and other useful
properties are externalized via SecurityProperties (properties prefix "security").
The basic features you get out of the box in a web application are:
• Ignored (unsecure) paths for common static resource locations (/css/**, /js/**, /images/**
and **/favicon.ico).
• Common low-level features (HSTS, XSS, CSRF, caching) provided by Spring Security are on by
default.
All of the above can be switched on and off or modified using external properties (security.*). To
override the access rules without changing any other autoconfigured features add a @Bean of type
WebConfigurerAdapter with @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER).
• The management endpoints are secure even if the application endpoints are unsecure.
• Security events are transformed into AuditEvents and published to the AuditService.
• The default user will have the ADMIN role as well as the USER role.
The Actuator security features can be modified using external properties (management.security.*).
To override the application access rules add a @Bean of type WebConfigurerAdapter and use
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) if you don’t want to override the
It’s often convenient to develop applications using an in-memory embedded database. Obviously, in-
memory databases do not provide persistent storage; you will 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 don’t need to provide
any connection URLs, simply include a build dependency to the embedded database that you want to
use.
<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
Production database connections can also be auto-configured using a pooling DataSource. Here’s the
algorithm for choosing a specific implementation.
• We prefer the Tomcat pooling DataSource for its performance and concurrency, so if that is available
we always choose it.
Note
Additional connection pools can always be configured manually. If you define your own
DataSource bean, auto-configuration will not occur.
spring.datasource.url=jdbc:mysql://localhost/test
spring.datasource.username=dbuser
spring.datasource.password=dbpass
spring.datasource.driverClassName=com.mysql.jdbc.Driver
Note
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;
@Component
public class MyBean {
@Autowired
public MyBean(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
// ...
Tip
We won’t go into too many details of JPA or Spring Data here. You can follow the “Accessing
Data with JPA” guide from http://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 instead “Entity Scanning” is used. By default all packages below your main
configuration class (the one annotated with @EnableAutoConfiguration) will be searched.
package com.example.myapp.domain;
import java.io.Serializable;
import javax.persistence.*;
@Entity
public class City implements Serializable {
@Id
@GeneratedValue
private Long id;
@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 using the @EntityScan annotation. See the
Section 62.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 cities in a given state.
For more complex queries you can annotate your method using Spring Data’s Query annotation.
Spring Data repositories usually extend from the Repository or CrudRepository interfaces. If you
are using auto-configuration, repositories will be searched from the package containing your main
configuration class (the one annotated with @EnableAutoConfiguration) down.
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 check their
reference documentation.
By default JPA database will be automatically created only if you use an embedded database (H2, HSQL
or Derby). You can explicitly configure JPA settings using spring.jpa.* properties. For example, to
create and drop tables you can add the following to your application.properties.
spring.jpa.hibernate.ddl-auto=create-drop
Note
Hibernate’s 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, using
spring.jpa.properties.* (the prefix is stripped before adding them to the 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
autoconfig is active because the ddl-auto settings are more fine grained.
27.1 Redis
Redis is a cache, message broker and richly-featured key-value store. Spring Boot offers basic auto-
configuration for the Jedis client library and abstractions on top of it provided by Spring Data Redis. There
is a spring-boot-starter-redis “Starter POM” for collecting the dependencies in a convenient
way.
Connecting to Redis
@Component
public class MyBean {
@Autowired
public MyBean(StringRedisTemplate template) {
this.template = template;
}
// ...
If you add a @Bean of your own of any of the auto-configured types it will replace the default (except in
the case of RedisTemplate the exclusion is based on the bean name “redisTemplate” not its type). If
commons-pool2 is on the classpath you will get a pooled connection factory by default.
27.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 The spring-boot-starter-data-mongodb “Starter POM”.
You can inject an auto-configured com.mongodb.Mongo instance as you would any other Spring Bean.
By default the instance will attempt to connect to a MongoDB server using the URL mongodb://
localhost/test:
import com.mongodb.Mongo;
@Component
public class MyBean {
@Autowired
public MyBean(Mongo mongo) {
this.mongo = mongo;
}
// ...
You can set spring.data.mongodb.uri property to change the url, or alternatively specify a
host/port. For example, you might declare the following in your application.properties:
spring.data.mongodb.host=mongoserver
spring.data.mongodb.port=27017
Tip
If spring.data.mongodb.port is not specified the default of 27017 is used. You could simply
delete this line from the sample above.
You can also declare your own 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 Spring’s
JdbcTemplate. As with JdbcTemplate Spring Boot auto-configures a bean for you to simply inject:
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;
}
// ...
In fact, both Spring Data JPA and Spring Data MongoDB share the same common infrastructure; so
you could take the JPA example from earlier and, assuming that City is now a Mongo data class rather
than a JPA @Entity, it will work in the same way.
package com.example.myapp.domain;
import org.springframework.data.domain.*;
import org.springframework.data.repository.*;
Tip
For complete details of Spring Data MongoDB, including its rich object mapping technologies,
refer to their reference documentation.
27.3 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 POM” for
collecting the dependencies in a convenient way. There is currently no auto=config support for Gemfire,
but you can enable Spring Data Repositories with a single annotation.
27.4 Solr
Apache Solr is a search engine. Spring Boot offers basic auto-configuration for the solr client library
and abstractions on top of it provided by Spring Data Solr. There is a spring-boot-starter-data-
solr “Starter POM” for collecting the dependencies in a convenient way.
Connecting to Solr
You can inject an auto-configured SolrServer instance as you would any other Spring Bean. By
default the instance will attempt to connect to a server using http://localhost:8983/solr:
@Component
public class MyBean {
@Autowired
public MyBean(SolrServer solr) {
this.solr = solr;
}
// ...
If you add a @Bean of your own of type SolrServer it will replace the default.
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 will work in the same way.
Tip
For complete details of Spring Data Solr, refer to their reference documentation.
27.5 Elasticsearch
Elastic Search is an open source, distributed, real-time search and analytics engine. Spring Boot
offers basic auto-configuration for the Elasticsearch and abstractions on top of it provided by Spring
Data Elasticsearch. There is a spring-boot-starter-data-elasticsearch “Starter POM” for
collecting the dependencies in a convenient way.
Connecting to Elasticsearch
@Component
public class MyBean {
@Autowired
public MyBean(ElasticsearchTemplate template) {
this.template = template;
}
// ...
If you add a @Bean of your own of type ElasticsearchTemplate it will replace 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;
so you could take the JPA example from earlier and, assuming that City is now an Elasticsearch
@Document class rather than a JPA @Entity, it will work in the same way.
Tip
For complete details of Spring Data Elasticsearch, refer to their reference documentation.
28. 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” and Boot also provides auto-configuration options for RabbitTemplate and RabbitMQ.
There is also support for STOMP messaging natively in Spring Websocket and Spring Boot has support
for that through starters and a small amount of auto configuration.
28.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 won’t need to use it directly yourself and you can
instead rely on higher level messaging abstractions (see the relevant section of the Spring Framework
reference documentation for details).
HornetQ support
Spring Boot can auto-configure a ConnectionFactory when it detects that HornetQ is available on
the classpath. If the broker is present, an embedded broker is started and configured automatically
(unless the mode property has been explicitly set). The supported modes are: embedded (to make
explicit that an embedded broker is required and should lead to an error if the broker is not available in
the classpath), and native to connect to a broker using the the netty transport protocol. When the
latter is configured, Spring Boot configures a ConnectionFactory connecting to a broker running on
the local machine with the default settings.
Note
spring.hornetq.mode=native
spring.hornetq.host=192.168.1.210
spring.hornetq.port=9876
When embedding the broker, you can chose if you want to enable persistence,
and the list of 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.hornetq.jms.server.config.JMSQueueConfiguration or
org.hornetq.jms.server.config.TopicConfiguration, for advanced queue and topic
configurations respectively.
No JNDI lookup is involved at all and destinations are resolved against their names, either using the
“name” attribute in the HornetQ configuration or the names provided through configuration.
ActiveMQ support
Spring Boot can also configure a ConnectionFactory when it detects that ActiveMQ is available on
the classpath. If the broker is present, an embedded broker is started and configured automatically (as
long as no broker URL is specified through configuration).
spring.activemq.broker-url=tcp://192.168.1.210:9876
spring.activemq.user=admin
spring.activemq.password=secret
By default, ActiveMQ creates a destination if it does not exist yet, so destinations are resolved against
their provided names.
Using JmsTemplate
Spring’s JmsTemplate is auto-configured and you can @Autowire it directly into your own beans:
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;
}
// ...
31. Testing
Spring Boot provides a number of useful tools for testing your application. The spring-boot-
starter-test POM provides Spring Test, JUnit, Hamcrest and Mockito dependencies. There are also
useful test utilities in the core spring-boot module under the org.springframework.boot.test
package.
These are common libraries that we generally find useful when writing tests. You are free to add
additional test dependencies of your own if these don’t suit your needs.
Often you need to move beyond “unit testing” and start “integration testing” (with a Spring
ApplicationContext actually involved in the process). It’s 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 just such integration testing. You can
declare a dependency directly to org.springframework:spring-test or use the spring-boot-
starter-test “Starter POM” 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.
For example:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = SampleDataJpaApplication.class)
public class CityRepositoryIntegrationTests {
@Autowired
CityRepository repository;
// ...
Tip
The context loader guesses whether you want to test a web application or not (e.g.
with MockMVC) by looking for the @WebAppConfiguration annotation. (MockMVC and
@WebAppConfiguration are part of spring-test).
If you want a web application to start up and listen on its normal port, so you can test it with HTTP (e.g.
using RestTemplate), annotate your test class (or one of its superclasses) with @IntegrationTest.
This can be very useful because it means you can test the full stack of your application, but also inject
its components into the test class and use them to assert the internal state of the application after an
HTTP interaction. For Example:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = SampleDataJpaApplication.class)
@WebAppConfiguration
@IntegrationTest
public class CityRepositoryIntegrationTests {
@Autowired
CityRepository repository;
Note
Spring’s test framework will cache application contexts between tests. Therefore, as long as your
tests share the same configuration, the time consuming process of starting and stopping the server
will only happen once, regardless of the number of tests that actually run.
To change the port you can add environment properties to @IntegrationTest as colon- or equals-
separated name-value pairs, e.g. @IntegrationTest("server.port:9000"). Additionally you
can set the server.port and management.port properties to 0 in order to run your integration tests
using random ports. For example:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = MyApplication.class)
@WebAppConfiguration
@IntegrationTest({"server.port=0", "management.port=0"})
public class SomeIntegrationTests {
// ...
See Section 59.4, “Discover the HTTP port at runtime” for a description of how you can discover the
actual port that was allocated for the duration of the tests.
@ContextConfiguration(loader = SpringApplicationContextLoader.class)
class ExampleSpec extends Specification {
// ...
ConfigFileApplicationContextInitializer
ConfigFileApplicationContextInitializer is an ApplicationContextInitializer that
can apply to your tests to load Spring Boot application.properties files. You can use this when
you don’t need the full features provided by @SpringApplicationConfiguration.
@ContextConfiguration(classes = Config.class,
initializers = ConfigFileApplicationContextInitializer.class)
EnvironmentTestUtils
EnvironmentTestUtils allows you to quickly add properties to a ConfigurableEnvironment or
ConfigurableApplicationContext. Simply call it with key=value strings:
OutputCapture
OutputCapture is a JUnit Rule that you can use to capture System.out and System.err output.
Simply declare the capture as a @Rule then use toString() for assertions:
import org.junit.Rule;
import org.junit.Test;
import org.springframework.boot.test.OutputCapture;
@Rule
public OutputCapture capture = new OutputCapture();
@Test
public void testName() throws Exception {
System.out.println("Hello World!");
assertThat(capture.toString(), containsString("World"));
}
TestRestTemplate
@Test
public void testRequest() throws Exception {
HttpHeaders headers = template.getForEntity("http://myhost.com", String.class).getHeaders();
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
}
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
Spring Boot includes a number of @Conditional annotations that you can reuse in your own code by
annotating @Configuration classes or individual @Bean methods.
Class conditions
The @ConditionalOnClass and @ConditionalOnMissingClass annotations allows
configuration to be skipped based on the presence or absence of specific classes. Due to the fact that
annotation meta-data is parsed using ASM you can actually use the value attribute to refer to the real
class, even though that class might not actually appear on the running application classpath. You can
also use the name attribute if you prefer to specify the class name using a String value.
Bean conditions
The @ConditionalOnBean and @ConditionalOnMissingBean annotations allow configurations
to be skipped based on the presence or absence of specific beans. You can use the value attribute to
specify beans by type, or name to specify beans by name. The search attribute allows you to limit the
ApplicationContext hierarchy that should be considered when searching for beans.
Note
@Conditional annotations are processed when @Configuration classes are parsed. Auto-
configure @Configuration is always parsed last (after any user defined beans), however, if
you are using these annotations on regular @Configuration classes, care must be taken not
to refer to bean definitions that have not yet been created.
Resource conditions
If you are comfortable with Spring Boot’s core features, you can carry 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")
}
35. Endpoints
Actuator endpoints allow you to monitor and interact with your application. Spring Boot includes a
number of built-in endpoints and you can also add your own. For example the health endpoint provides
basic application health information.
The way that endpoints are exposed will depend on the type of technology that you choose. Most
applications choose HTTP monitoring, where the ID of the endpoint is mapped to a URL. For example,
by default, the health endpoint will be mapped to /health.
ID Description Sensitive
beans Displays a complete list of all the Spring Beans in your true
application.
trace Displays trace information (by default the last few HTTP true
requests).
Note
Depending on how an endpoint is exposed, the sensitive parameter may be used as a security
hint. For example, sensitive endpoints will require a username/password when they are accessed
over HTTP (or simply disabled if web security is not enabled).
For example, here is an application.properties that changes the sensitivity and id of the beans
endpoint and also enables shutdown.
endpoints.beans.id=springbeans
endpoints.beans.sensitive=false
endpoints.shutdown.enabled=true
Note
The prefix "endpoints + . + name" is used to uniquely identify the endpoint that is being
configured.
To provide custom health information you can register a Spring bean that implements the
HealthIndicator interface.
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.stereotype.Component;
@Component
public class MyHealth implements HealthIndicator {
@Override
public Health health() {
// perform some specific health check
return ...
}
Besides implementing custom a HealthIndicator type and using out-of-box Status types, it is also
possible to introduce custom Status types for different or more complex system states. In that case
a custom implementation of the HealthAggregator interface needs to be provided or the default
implementation has to be configured using the health.status.order configuration property.
Assuming a new Status with code FATAL is being used in one of your HealthIndicator
implementations. To configure the severity or order add the following to your application properties:
health.status.order: FATAL, DOWN, UNKNOWN, UP.
info.app.name=MyService
info.app.description=My awesome service
info.app.version=1.0.0
If you are using Maven, you can automatically expand info properties from the Maven project using
resource filtering. In your pom.xml you have (inside the <build/> element):
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
You can then refer to your Maven “project properties” via placeholders, e.g.
project.artifactId=myproject
project.name=Demo
project.version=X.X.X.X
project.description=Demo project for info endpoint
info.build.artifact=${project.artifactId}
info.build.name=${project.name}
info.build.description=${project.description}
info.build.version=${project.version}
Note
In the above example we used project.* to set some values to be used as fallbacks if the
Maven resource filtering has not been switched on for some reason.
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 git.properties file is contained in your
jar the git.branch and git.commit properties will be loaded.
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
</plugins>
</build>
A similar gradle-git plugin is also available for Gradle users, although a little more work is required
to generate the properties file.
Tip
Generated passwords are logged as the application starts. Search for “Using default security
password”.
You can use Spring properties to change the username and password and to change the
security role required to access the endpoints. For example, you might set the following in your
application.properties:
security.user.name=admin
security.user.password=secret
management.security.role=SUPERUSER
management.context-path=/manage
The application.properties example above will change the endpoint from /{id} to /manage/
{id} (e.g. /manage/info).
management.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 will have Spring Security on the classpath, and you can disable management security like this:
management.security.enabled=false
(If you don’t have Spring Security on the classpath then there is no need to explicitly disable the
management security in this way, and it might even break the application.)
Note
You can only listen on a different address if the port is different to the main server port.
Here is an example application.properties that will not allow remote management connections:
management.port=8081
management.address=127.0.0.1
management.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 endpoints.jmx.uniqueNames property to true so that
MBean names are always unique.
You can also customize the JMX domain under which endpoints are exposed. Here is an example
application.properties:
endpoints.jmx.domain=myapp
endpoints.jmx.uniqueNames=true
spring.jmx.enabled=false
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-core</artifactId>
</dependency>
Jolokia can then be accessed using /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, simply prefix the parameter with
jolokia.config.:
jolokia.config.debug=true
Disabling Jolokia
If you are using Jolokia but you don’t want Spring Boot to configure it, simply set the
endpoints.jolokia.enabled property to false:
endpoints.jolokia.enabled=false
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-remote-shell</artifactId>
</dependency>
Tip
If you want to also enable telnet access your will additionally need a dependency on
org.crsh:crsh.shell.telnet.
Linux and OSX users can use ssh to connect to the remote shell, Windows users can download and
install PuTTY.
user@localhost's password:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.1.4.RELEASE) on myhost
Type help for a list of commands. Spring boot provides metrics, beans, autoconfig and endpoint
commands.
You can write additional shell commands using Groovy or Java (see the CRaSH documentation for
details). By default Spring Boot will search for commands in the following locations:
• classpath*:/commands/**
• classpath*:/crash/commands/**
Tip
Here is a simple “hello world” command that could be loaded from src/main/resources/commands/
hello.groovy
package commands
import org.crsh.cli.Usage
import org.crsh.cli.Command
class hello {
@Usage("Say Hello")
@Command
def main(InvocationContext context) {
return "Hello"
}
Spring Boot adds some additional attributes to InvocationContext that you can access from your
command:
In addition to new commands, it is also possible to extend other CRaSH shell features. All Spring Beans
that extends org.crsh.plugin.CRaSHPlugin will be automatically registered with the shell.
39. Metrics
Spring Boot Actuator includes a metrics service with “gauge” and “counter” support. A “gauge” records a
single value; and a “counter” records a delta (an increment or decrement). Metrics for all HTTP requests
are automatically recorded, so if you hit the metrics endpoint should should see a response similar
to this:
{
"counter.status.200.root": 20,
"counter.status.200.metrics": 3,
"counter.status.401.root": 4,
"gauge.response.root": 2,
"gauge.response.metrics": 3,
"classes": 5808,
"classes.loaded": 5808,
"classes.unloaded": 0,
"heap": 3728384,
"heap.committed": 986624,
"heap.init": 262144,
"heap.used": 52765,
"mem": 986624,
"mem.free": 933858,
"processors": 8,
"threads": 15,
"threads.daemon": 11,
"threads.peak": 15,
"uptime": 494836
}
Here we can see basic memory, heap, class loading, processor and thread pool information
along with some HTTP metrics. In this instance the root (“/”) and /metrics URLs have returned HTTP
200 responses 20 and 3 times respectively. It also appears that the root URL returned HTTP 401
(unauthorized) 4 times.
The gauge shows the last response time for a request. So the last request to root took 2ms to respond
and the last to /metrics took 3ms.
Note
In this example we are actually accessing the endpoint over HTTP using the /metrics URL, this
explains why metrics appears in the response.
Here is a simple example that counts the number of times that a method is invoked:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.metrics.CounterService;
import org.springframework.stereotype.Service;
@Service
public class MyService {
@Autowired
Tip
You can use any string as a metric name but you should follow guidelines of your chosen store/
graphing technology. Some good guidelines for Graphite are available on Matt Aimonetti’s Blog.
There’s nothing to stop you hooking a MetricRepository with back-end storage directly into your
app, but we recommend using the default InMemoryMetricRepository (possibly with a custom Map
instance if you are worried about heap usage) and populating a back-end repository through a scheduled
export job. In that way you get some buffering in memory of the metric values and you can reduce the
network chatter by exporting less frequently or in batches. Spring Boot provides an Exporter interface
and a few basic implementations for you to get started with that.
Users can create Coda Hale metrics by prefixing their metric names with the appropriate type (e.g.
histogram.*, meter.*).
40. Auditing
Spring Boot Actuator has a flexible audit framework that will publish events once Spring Security is in
play (“authentication success”, “failure” and “access denied” exceptions by default). This can be very
useful for reporting, and also to implement a lock-out policy based on authentication failures.
You can also choose to use the audit services for your own business events. To do that you can either
inject the existing AuditEventRepository into your own components and use that directly, or you
can simply publish AuditApplicationEvent via the Spring ApplicationEventPublisher (using
ApplicationEventPublisherAware).
41. Tracing
Tracing is automatically enabled for all HTTP requests. You can view the trace endpoint and obtain
basic information about the last few requests:
[{
"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,
...
}]
By default an InMemoryTraceRepository will be used that stores the last 100 events. You can define
your own instance of the InMemoryTraceRepository bean if you need to expand the capacity. You
can also create your own alternative TraceRepository implementation if needed.
org.springframework.context.ApplicationListener=\
org.springframework.boot.actuate.system.ApplicationPidListener
42.2 Programmatically
You can also activate this listener by invoking SpringApplication.addListeners(...) method
and passing ApplicationPidListener object. You can also customize file name and path through
constructor.
Otherwise, you can continue on, to read about “cloud deployment options” or jump ahead for some in
depth information about Spring Boot’s 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 webserver, 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
deployment 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’ll look at what it takes to get the simple application that we developed in the “Getting
Started” section up and running in the Cloud.
Spring Boot Reference Guide
Once you’ve built your application (using, for example, mvn clean package) and installed the cf
command line tool, simply deploy your application using the cf push command as follows, substituting
the path to your compiled .jar. Be sure to have logged in with your cf command line client before
pushing an application.
See the cf push documentation for more options. If there is a Cloud Foundry manifest.yml file
present in the same directory, it will be consulted.
Note
Here we are substituting acloudyspringtime for whatever value you give cf as the name of
your application.
Uploading acloudyspringtime... OK
Preparing to start acloudyspringtime... OK
-----> Downloaded app package (8.9M)
-----> Java Buildpack source: system
-----> Downloading Open JDK 1.7.0_51 from .../x86_64/openjdk-1.7.0_51.tar.gz (1.8s)
Expanding Open JDK to .java-buildpack/open_jdk (1.2s)
-----> Downloading Spring Auto Reconfiguration from 0.8.7 .../auto-reconfiguration-0.8.7.jar (0.1s)
-----> Uploading droplet (44M)
Checking status of app acloudyspringtime...
0 of 1 instances running (1 starting)
...
0 of 1 instances running (1 down)
...
0 of 1 instances running (1 starting)
...
1 of 1 instances running (1 running)
App started
$ cf apps
Getting applications in ...
OK
Once Cloud Foundry acknowledges that your application has been deployed, you should be able to hit
the application at the URI given, in this case http://acloudyspringtime.cfapps.io/.
Environment variables don’t always make for the easiest API so Spring Boot automatically extracts them
and flattens the data into properties that can be accessed through Spring’s Environment abstraction:
@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 VcapApplicationListener Javdoc for complete details.
Tip
The Spring Cloud project is a better fit for tasks such as configuring a DataSource; it also lets
you use Spring Cloud with Heroku.
45. 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. Here’s 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 or Jetty instance
which then uses it when it starts up. The $PORT environment variable is assigned to us by the Heroku
PaaS.
Heroku by default will use Java 1.6. This is fine as long as your Maven or Gradle build is set to use
the same version (Maven users can use the java.version property). If you want to use JDK 1.7,
create a new file adjacent to your pom.xml and Procfile, called system.properties. In this file
add the following:
java.runtime.version=1.7
This should be everything you need. The most common workflow for Heroku deployments is to git
push the code to production.
To [email protected]:agile-sierra-1405.git
* [new branch] master -> master
46. CloudBees
CloudBees provides cloud-based “continuous integration” and “continuous delivery” services as well as
Java PaaS hosting. Sean Gilligan has contributed an excellent Spring Boot sample application to the
CloudBees community GitHub repository. The project includes an extensive README that covers the
steps that you need to follow when deploying to CloudBees.
47. Openshift
Openshift is the RedHat public (and enterprise) PaaS solution. Like Heroku, it works by running scripts
triggered by git commits, so you can script the launching of a Spring Boot application in pretty much any
way you like as long as the Java runtime is available (which is a standard feature you can ask for at
Openshift). To do this you can use the DIY Cartridge and hooks in your repository under .openshift/
action_scripts:
1. Ensure Java and your build tool are installed remotely, e.g. using a pre_build hook (Java and
Maven are installed by default, Gradle is not)
2. Use a build hook to build your jar (using Maven or Gradle), e.g.
#!/bin/bash
cd $OPENSHIFT_REPO_DIR
mvn package -s .openshift/settings.xml -DskipTests=true
#!/bin/bash
cd $OPENSHIFT_REPO_DIR
nohup java -jar target/*.jar --server.port=${OPENSHIFT_DIY_PORT} --server.address=${OPENSHIFT_DIY_IP}
&
4. Use a stop hook (since the start is supposed to return cleanly), e.g.
#!/bin/bash
source $OPENSHIFT_CARTRIDGE_SDK_BASH
PID=$(ps -ef | grep java.*\.jar | grep -v grep | awk '{ print $2 }')
if [ -z "$PID" ]
then
client_result "Application is already stopped"
else
kill $PID
fi
5. Embed service bindings from environment variables provided by the platform in your
application.properties, e.g.
spring.datasource.url: jdbc:mysql://${OPENSHIFT_MYSQL_DB_HOST}:${OPENSHIFT_MYSQL_DB_PORT}/
${OPENSHIFT_APP_NAME}
spring.datasource.username: ${OPENSHIFT_MYSQL_DB_USERNAME}
spring.datasource.password: ${OPENSHIFT_MYSQL_DB_PASSWORD}
There’s a blog on running Gradle in Openshift on their website that will get you started with a gradle
build to run the app. A bug in Gradle currently prevents you from using Gradle newer than 1.6.
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 use help to get more details about any of the supported commands. For 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.
$ spring version
Spring CLI v1.1.4.RELEASE
@RestController
class WebApplication {
@RequestMapping("/")
String home() {
"Hello World!"
}
Standard Groovy includes a @Grab annotation which allows you to declare dependencies on a third-
party libraries. This useful technique allows Groovy to download jars in the same way as Maven or
Gradle would; but without requiring you to use a build tool.
Spring Boot extends this technique further, and will attempt to deduce which libraries to “grab”
based on your code. For example, since the WebApplication code above uses @RestController
annotations, “Tomcat” and “Spring MVC” will be grabbed.
Items Grabs
@Test JUnit.
@EnableRabbitMessaging RabbitMQ.
Tip
Spring Boot extends Groovy’s standard @Grab support by allowing you to specify a dependency
without a group or version, for example @Grab('freemarker'). This will consult Spring Boot’s default
dependency metadata to deduce the artifact’s group and version. Note that the default metadata is tied
to the version of the CLI that you’re using – it will only change 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.
Spring Boot provides a new annotation, @GrabMetadata that can be used to provide custom
dependency metadata that overrides Spring Boot’s defaults. This metadata is specified by using this
annotation to provide the coordinates of one or more properties files (deployed to a Maven repository
with a "type" identifier: "properties"). For example @GrabMetadata(['com.example:versions-
one:1.0.0', 'com.example.versions-two:1.0.0']) will pick up files in a Maven repository
in "com/example/versions-/1.0.0/versions--1.0.0.properties". The properties files are applied in the
order that they’re specified. In the example above, this means that properties in versions-
two will override properties in versions-one. Each entry in each properties file must be in
the form group:module=version. You can use @GrabMetadata anywhere that you can use
@Grab, however, to ensure consistent ordering of the metadata, you can only use @GrabMetadata
at most once in your application. A useful source of dependency metadata (a superset of
Spring Boot) is the Spring IO Platform, e.g. @GrabMetadata('io.spring.platform:platform-
versions:1.0.0.RELEASE').
Tip
Many Spring annotations will work without using import statements. Try running your application
to see what fails before adding imports.
In this example, tests.groovy contains JUnit @Test methods or Spock Specification classes.
All the common framework annotations and static methods should be available to you without having
to import them.
Here is the test.groovy file that we used above (with a JUnit test):
class ApplicationTests {
@Test
void homeSaysHello() {
assertEquals("Hello World", new WebApplication().home())
}
Tip
If you have more than one test source files, you might prefer to organize them into a test
directory.
This technique can also be useful if you want to segregate your “test” or “spec” code from the main
application code:
The resulting jar will contain the classes produced by compiling the application and all of the application’s
dependencies so that it can then be run using java -jar. The jar file will also contain entries from the
application’s classpath. You can add explicit paths to the jar using --include and --exclude (both
are comma separated, and both accept prefixes to the values “+” and “-” to signify that they should be
removed from the defaults). The default includes are
$ spring shell
Spring Boot (v1.1.4.RELEASE)
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 v1.1.4.RELEASE
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. Hitting ctrl-c will exit the embedded shell.
@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
you can put the beans DSL in a separate file if you prefer.
If you find that you reach the limit of the CLI tool, you will probably want to look at converting your
application to full Gradle or Maven built “groovy project”. The next section covers Spring Boot’s Build
tool plugins that you can use with Gradle or Maven.
Note
Refer to the Spring Boot Maven Plugin Site for complete plugin documentation.
This configuration will repackage 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 don’t include the <execution/> configuration as above, you can run the plugin on its own (but
only if the package goal is used as well). For example:
If you are using a milestone or snapshot release you will also need to add appropriate
pluginRepository elements:
<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 will be enhanced by Spring Boot during the package phase. The main class that
you want to launch can either be specified using a configuration option, or by adding a Main-Class
attribute to the manifest in the usual way. If you don’t specify a main class the plugin will search 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”, e.g:
Advanced configuration options and examples are available in the plugin info page.
buildscript {
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE")
}
}
apply plugin: 'spring-boot'
If you are using a milestone or snapshot release you will also need to add appropriate repositories
reference:
buildscript {
repositories {
maven.url "http://repo.spring.io/snapshot"
maven.url "http://repo.spring.io/milestone"
}
// ...
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
compile("org.thymeleaf:thymeleaf-spring4")
compile("nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect")
}
Note
The version of the spring-boot gradle plugin that you declare determines the actual versions of
the “blessed” dependencies (this ensures that builds are always repeatable). You should always
set the version of the spring-boot gradle plugin to the actual Spring Boot version that you wish
to use. Details of the versions that are provided can be found in the appendix.
The spring-boot plugin will only supply a version where one is not specified. To use a version of
an artifact that differs from the one that the plugin would provide, simply specify the version when you
declare the dependency as you usually would. For example:
dependencies {
compile("org.thymeleaf:thymeleaf-spring4:2.1.1.RELEASE")
}
If is possible to customize the versions used by the ResolutionStrategy if you need to deviate
from Spring Boot’s “blessed” dependencies. Alternative version meta-data is consulted using the
versionManagement configuration. For example:
dependencies {
versionManagement("com.mycorp:mycorp-versions:1.0.0.RELEASE@properties")
compile("org.springframework.data:spring-data-hadoop")
}
Version information needs to be published to a repository as a .properties file. For the above
example mycorp-versions.properties file might contain the following:
org.springframework.data\:spring-data-hadoop=2.0.0.RELEASE
The properties file takes precedence over Spring Boot’s defaults, and can be used to override version
numbers if necessary.
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>4.0.5.RELEASE</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.0.5.RELEASE</version>
</dependency>
</dependencies>
The commons-logging jar will not be excluded by Gradle because it is pulled in transitively via
spring-context (spring-context → spring-core → commons-logging) which does not have
an exclusion element.
To ensure that correct exclusions are actually applied, the Spring Boot Gradle plugin will automatically
add exclusion rules. All exclusions defined in the spring-boot-dependencies POM and implicit
rules for the “starter” POMs will be added.
If you don’t want exclusion rules automatically applied you can use the following configuration:
springBoot {
applyExcludeRules=false
}
The main class that you want to launch can either be specified using a configuration option, or by adding
a Main-Class attribute to the manifest. If you don’t specify a main class the plugin will search for a
class with a public static void main(String[] args) method.
To build and run a project artifact, you can type the following:
$ gradle build
$ java -jar build/libs/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 belonging to a configuration named “providedRuntime”, e.g:
...
apply plugin: 'war'
war {
baseName = 'myapp'
version = '0.5.0'
}
repositories {
mavenCentral()
maven { url "http://repo.spring.io/libs-snapshot" }
}
configurations {
providedRuntime
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
providedRuntime("org.springframework.boot:spring-boot-starter-tomcat")
...
}
$ gradle bootRun
Running this way makes your static classpath resources (i.e. in src/main/resources by default)
reloadable in the live application, which can be helpful at development time.
springBoot {
backupSource = false
}
bootRepackage {
mainClass = 'demo.Application'
}
Name Description
enabled Boolean flag to switch the repackager off (sometimes useful if you
want the other Boot features but not this one)
mainClass The main class that should be run. If not specified the
mainClassName project property will be used or, if the no
mainClassName id defined the archive will be searched for a
suitable class. "Suitable" means a unique class with a well-formed
main() method (if more than one is found the build will fail). You
should also be able to specify the main class name via the "run"
task (main property) and/or the "startScripts" (mainClassName
property) as an alternative to using the "springBoot" configuration.
classifier A file name segment (before the extension) to add to the archive,
so that the original is preserved in its original location. Defaults
to null in which case the archive is repackaged in place. The
default is convenient for many purposes, but if you want to use
the original jar as a dependency in another project, it’s best to use
an extension to define the executable archive.
withJarTask The name or value of the Jar task (defaults to all tasks of type
Jar) which is used to locate the archive to repackage.
Using a custom configuration will automatically disable dependency resolving from compile, runtime
and provided scopes. Custom configuration can be either defined globally (inside the springBoot
section) or per task.
In above example, we created a new clientJar Jar task to package a customized file set from your
compiled sources. Then we created a new clientBoot BootRepackage task and instructed it to work
with only clientJar task and mycustomconfiguration.
configurations {
mycustomconfiguration.exclude group: 'log4j'
}
dependencies {
mycustomconfiguration configurations.runtime
}
Configuration options
The following configuration options are available:
Name Description
mainClass The main class that should be run by the executable archive.
Due to the fact that bootRepackage finds all created jar artifacts, the order of Gradle task execution is
important. Most projects only create a single jar file, so usually this is not an issue; however, if you are
planning to create a more complex project setup, with custom Jar and BootRepackage tasks, there
are few tweaks to consider.
If you are just creating custom jar files from your project you can simply disable default jar and
bootRepackage tasks:
jar.enabled = false
bootRepackage.enabled = false
Another option is to instruct the default bootRepackage task to only work with a default jar task.
bootRepackage.withJarTask = jar
If you have a default project setup where the main jar file is created and repackaged, and you still
want to create additional custom jars, you can combine your custom repackage tasks together and use
dependsOn so that the bootJars task will run after the default bootRepackage task is executed:
task bootJars
bootJars.dependsOn = [clientBoot1,clientBoot2,clientBoot3]
build.dependsOn(bootJars)
All the above tweaks are usually used to avoid situations where an already created boot jar is repackaged
again. Repackaging an existing boot jar will not break anything, but you may find that it includes
unnecessary dependencies.
The Spring Boot Maven and Gradle plugins both make use of spring-boot-loader-tools to
actually generate jars. You are also free to use this library directly yourself if you need to.
If you have specific build-related questions you can check out the ‘how-to’ guides.
If you are having a specific problem that we don’t 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’re also more than happy to extend this section; If you want to add a “how-to” you can send us a
pull request.
Spring Boot Reference Guide
Many more questions can be answered by looking at the source code and the javadoc. Some rules
of thumb:
• Look for classes called *AutoConfiguration and read their sources, in particular 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 autoconfiguration
decisions that were made in your app. In a running Actuator app look at the autoconfig endpoint
(‘/autoconfig’ or the JMX equivalent) for the same information.
• Look for classes that are @ConfigurationProperties (e.g. ServerProperties) and read
from there the available external configuration options. The @ConfigurationProperties has
a name attribute which acts as a prefix to external properties, thus ServerProperties has
prefix="server" and its configuration properties are server.port, server.address etc. In a
running Actuator app look at the configprops endpoint.
• Look for use of RelaxedEnvironment to pull configuration values explicitly out of the
Environment. It often is used with a prefix.
• Look for @Value annotations that bind directly to the Environment. This is less flexible than
the RelaxedEnvironment approach, but does allow some relaxed binding, specifically for OS
environment variables (so CAPITALS_AND_UNDERSCORES are synonyms for period.separated).
• Look for @ConditionalOnExpression annotations that switch features on and off in response to
SpEL expressions, normally evaluated with place-holders resolved from the Environment.
The SpringApplication sends some special ApplicationEvents to the listeners (even some
before the context is created), and then registers the listeners for events published by the
ApplicationContext as well. See Section 20.4, “Application events and listeners” in the “Spring
Boot features” section for a complete list.
spring.main.web_environment=false
spring.main.show_banner=false
and then the Spring Boot banner will not be printed on startup, and the application will not be a web
application.
Note
The example above also demonstrates how flexible binding allows the use of underscores (_) as
well as dashes (-) in property names.
A nice way to augment and modify this 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, and 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 precedence over any added using
the default locations, but have lower priority than system properties, environment variables or the
command line.
You can also provide System properties (or environment variables) to change the behavior:
No matter what you set in the environment, Spring Boot will always load application.properties
as described above. If YAML is used then files with the “.yml” extension are also added to the list by
default.
server.port=${port:8080}
Tip
If you are inheriting from the spring-boot-starter-parent POM, or if have enabled maven
filtering for the application.properties directly, you may want to change the default
filter token from ${*} since it conflicts with those placeholders. You can either use @*@ (i.e.
@maven.token@ instead of ${maven.token}) or you can configure the maven-resources-
plugin to use other delimiters.
Note
In this specific case the port binding will work in a PaaS environment like Heroku and Cloud
Foundry, since 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 stick it in the root of your classpath, and also 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 1-level deep and has period-separated
keys, a lot like 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 21.5, “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, e.g.
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 22, Profiles in the “Spring Boot features” section for more information.
If a YAML document contains a spring.profiles key, then the profiles value (comma-separated list
of profiles) is fed into the Spring Environment.acceptsProfiles() and if any of those profiles is
active that document is included in the final merge (otherwise not).
Example:
server:
port: 9000
---
spring:
profiles: development
server:
port: 9001
---
spring:
profiles: production
server:
port: 0
In this example the default port is 9000, but if the Spring profile “development” is active then the port
is 9001, and if “production” is active then it is 0.
The YAML documents are merged in the order 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
RelaxedEnvironment.
In the case of Filters and Servlets you can also add mappings and init parameters by adding a
FilterRegistrationBean or ServletRegistrationBean instead of or as well as the underlying
component.
To switch off the HTTP endpoints completely, but still create a WebApplicationContext, use
server.port=-1 (this is sometimes useful for testing).
For more details look at the section called “Customizing embedded servlet containers” in the “Spring
Boot features” section, or the ServerProperties source code.
A really useful thing to do in is to use @IntegrationTest to set server.port=0 and then inject the
actual (“local”) port as a @Value. For example:
@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = SampleDataJpaApplication.class)
@WebAppConfiguration
@IntegrationTest("server.port:0")
public class CityRepositoryIntegrationTests {
@Autowired
EmbeddedWebApplicationContext server;
@Value("${local.server.port}")
int port;
// ...
@Bean
public EmbeddedServletContainerCustomizer containerCustomizer(){
return new MyCustomizer();
}
// ...
@Override
public void customize(ConfigurableEmbeddedServletContainer factory) {
if(factory instanceof TomcatEmbeddedServletContainerFactory) {
customizeTomcat((TomcatEmbeddedServletContainerFactory) factory));
}
}
@Bean
public EmbeddedServletContainerFactory servletContainer() {
TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory();
tomcat.addAdditionalTomcatConnectors(createSslConnector());
return tomcat;
}
You can switch on the valve by adding some entries to application.properties, e.g.
server.tomcat.remote_ip_header=x-forwarded-for
server.tomcat.protocol_header=x-forwarded-proto
Example in Maven:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
Example in Gradle:
configurations {
compile.exclude module: "spring-boot-starter-tomcat"
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.1.4.RELEASE")
compile("org.springframework.boot:spring-boot-starter-jetty:1.1.4.RELEASE")
// ...
}
<properties>
<tomcat.version>8.0.8</tomcat.version>
</properties>
<dependencies>
...
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
...
</dependencies>
If you are using the starter poms and parent you can just add the Jetty starter and change the version
properties, e.g. for a simple webapp or service:
<properties>
<java.version>1.7</java.version>
<jetty.version>9.1.0.v20131115</jetty.version>
<servlet-api.version>3.1.0</servlet-api.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
</dependencies>
@RestController
public class MyController {
@RequestMapping("/thing")
public MyThing thing() {
return new MyThing();
}
As long as MyThing can be serialized by Jackson2 (e.g. a normal POJO or Groovy object) then
http://localhost:8080/thing will serve a JSON representation of it by default. Sometimes in a
browser you might see XML responses (but by default only if MyThing was a JAXB object) because
browsers tend to send accept headers that prefer XML.
@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 smallest change that might work is to just add beans of type
com.fasterxml.jackson.databind.Module to your context. They will be registered with the
default ObjectMapper and then injected into the default message converter. To replace the default
ObjectMapper completely, define a @Bean of that type and mark it as @Primary.
In addition, if your context contains any beans of type ObjectMapper then all of the Module beans will
be registered with all of the mappers. So there is a global mechanism for contributing custom modules
when you add new features to your application.
See also the Section 60.4, “Customize the @ResponseBody rendering” section and the
WebMvcAutoConfiguration source code for more details.
As in normal MVC usage, any WebMvcConfigurerAdapter beans that you provide can also
contribute converters by overriding the configureMessageConverters method, but 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, then you
can take control completely and do everything manually 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 will also
have a Groovy TemplateViewResolver with id “groovyTemplateViewResolver”. 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, defaults
“classpath:/templates/” and “.tpl” respectively). It can be overriden by providing a bean of the same
name.
• If you use Velocity you will also have a VelocityViewResolver with id “velocityViewResolver”. It
looks for resources in a loader path (externalized to spring.velocity.resourceLoaderPath,
default “classpath:/templates/”) by surrounding the view name with a prefix and suffix (externalized
to spring.velocity.prefix and spring.velocity.suffix, with empty and “.vm” defaults
respectively). It can be overridden by providing a bean of the same name.
61. Logging
Spring Boot has no mandatory logging dependence, except for the commons-logging API, of which
there are many implementations to choose from. To use Logback you need to include it, and some
bindings for commons-logging on the classpath. The simplest way to do that is through the starter
poms which all depend on spring-boot-starter-logging. For a web application you only need
spring-boot-starter-web since it depends transitively on the logging starter. For example, using
Maven:
<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 then you can do
that in application.properties using the "logging.level" prefix, e.g.
logging.level.org.springframework.web: DEBUG
logging.level.org.hibernate: ERROR
You can also set the location of a file to log to (in addition to the console) 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 (e.g. classpath:/logback.xml for Logback),
but you can set the location of the config file using the "logging.config" property.
If you look at the default logback.xml in the spring-boot jar you will see that it uses some useful
System properties which the LoggingSystem takes care of creating for you. These are:
• ${LOG_PATH} if logging.path was set (representing a directory for log files to live in).
Spring Boot also provides some nice ANSI colour terminal output on a console (but not in a log file)
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
(it will be given preference if present).
The simplest path to using Log4j is probably through the starter poms, even though it requires some
jiggling with excludes, e.g. 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-log4j</artifactId>
</dependency>
Note
The use of the log4j starter gathers together the dependencies for common logging requirements
(e.g. including having Tomcat use java.util.logging but configure the output using Log4j).
See the Actuator Log4j Sample for more detail and to see it in action.
@Bean
@ConfigurationProperties(prefix="datasource.mine")
public DataSource dataSource() {
return new FancyDataSource();
}
datasource.mine.jdbcUrl=jdbc:h2:mem:mydb
datasource.mine.user=sa
datasource.mine.poolSize=30
See Section 26.1, “Configure a DataSource” in the “Spring Boot features” section and the
DataSourceAutoConfiguration class for more details.
@Bean
@Primary
@ConfigurationProperties(prefix="datasource.primary")
public DataSource primaryDataSource() {
return DataSourceBuilder.create().build();
}
@Bean
@ConfigurationProperties(prefix="datasource.secondary")
public DataSource secondaryDataSource() {
return DataSourceBuilder.create().build();
}
For many applications all you will 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), create some repository interfaces to handle your @Entity objects. Examples
are in the JPA sample or 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 {
//...
spring.jpa.hibernate.ddl-auto: create-drop
spring.jpa.hibernate.naming_strategy: org.hibernate.cfg.ImprovedNamingStrategy
spring.jpa.database: H2
spring.jpa.show-sql: true
(Because of relaxed data binding hyphens or underscores should work equally well as property
keys.) The ddl-auto setting is a special case in that it has different defaults depending on whether
you are using an embedded database (create-drop) or not (none). In addition all properties in
spring.jpa.properties.* are passed through as normal JPA properties (with the prefix stripped)
when the local EntityManagerFactory is created.
Example:
@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. Or you might be able to use a JTA transaction manager
spanning both.
There are also flags spring.data.*.repositories.enabled that you can use to switch the auto-
configured repositories on and off in external configuration. This is useful for instance in case you want
to switch off the Mongo repositories and still use the auto-configured MongoTemplate.
The same obstacle and the same features exist for other auto-configured Spring Data repository types
(Elasticsearch, Solr). Just change the names of the annotations and flags respectively.
• spring.jpa.generate-ddl (boolean) switches the feature on and off and is vendor independent.
In addition, a file named import.sql in the root of the classpath will be executed on startup. This can
be useful for demos and for testing if you are careful, but probably not something you want to be on the
classpath in production. It is a Hibernate feature (nothing to do with Spring).
If you want to use the schema.sql initialization in a JPA app (with Hibernate) then ddl-
auto=create-drop will lead to errors if Hibernate tries to create the same tables. To avoid those
errors set ddl-auto explicitly to "" (preferable) or "none". Whether or not you use ddl-auto=create-
drop you can always use data.sql to initialize new data.
The migrations are scripts in the form V<VERSION>__<NAME>.sql (with <VERSION> an underscore-
separated version, e.g. “1” or “2_1”). By default they live in a folder classpath:db/migration but
you can modify that using flyway.locations (a list). See the Flyway class from flyway-core for
details of available settings like schemas etc. 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.
By default Flyway will autowire the (@Primary) DataSource in your context and use that for
migrations. If you like to use a different DataSource you can create one and mark its @Bean as
@FlywayDataSource - if you do that remember to create another one and mark it as @Primary
if you want 2 data sources. Or you can use Flyway’s native DataSource by setting flyway.
[url,user,password] in external properties.
There is a Flyway sample so you can see how to set things up.
There is a Liquibase sample so you can see how to set things up.
If the application context includes a JobRegistry then 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.
65. Actuator
65.1 Change the HTTP port or address of the actuator
endpoints
In a standalone application the Actuator HTTP port defaults to the same as the main HTTP port. To
make the application listen on a different port set the external property management.port. To listen
on a completely different network address (e.g. if you have an internal network for management and
an external one for user applications) you can also set management.address to a valid IP address
that the server is able to bind to.
For more detail look at the ManagementServerProperties source code and Section 36.3,
“Customizing the management server port” in the “Production-ready features” section.
66. Security
66.1 Switch off the Spring Boot security configuration
If you define a @Configuration with @EnableWebSecurity anywhere in your application it will
switch off the default webapp security settings in Spring Boot. To tweak the defaults try setting properties
in security.* (see SecurityProperties for details of available settings) and 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 will get the best results if you put this in a nested class, or a standalone class (i.e. 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.
server.tomcat.remote_ip_header=x-forwarded-for
server.tomcat.protocol_header=x-forwarded-proto
(The presence of either of those properties will switch on the valve. Or you can add the RemoteIpValve
yourself by adding a TomcatEmbeddedServletContainerFactory 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 you just need to set security.require_https to true
in application.properties.
Spring Loaded goes a little further in that it can reload class definitions with changes in the method
signatures. With some customization it can force an ApplicationContext to refresh itself (but there
is no general mechanism to ensure that would be safe for a running application anyway, so it would
only ever be a development time trick probably).
You need to jump though a few hoops if you want to use Spring Loaded in combination with Gradle
and IntelliJ. By default, IntelliJ will compile classes into a different location than Gradle, causing Spring
Loaded monitoring to fail.
To configure IntelliJ correctly you can use the idea Gradle plugin:
buildscript {
repositories { mavenCentral() }
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.1.4.RELEASE"
classpath 'org.springframework:springloaded:1.2.0.RELEASE'
}
}
idea {
module {
inheritOutputDirs = false
outputDir = file("$buildDir/classes/main/")
}
}
// ...
Note
Intellij must be configured to use the same Java version as the command line Gradle task and
springloaded must be included as a buildscript dependency.
You can also additionally enable “Make Project Automatically” inside Intellij to automatically compile
your code whenever a file is saved.
68. Build
68.1 Customize dependency versions with Maven
If you use a Maven build that inherits directly or indirectly from spring-boot-dependencies (for
instance spring-boot-starter-parent) but you want to override a specific third-party dependency
you can add appropriate <properties> elements. Browse the spring-boot-dependencies POM
for a complete list of properties. For example, to pick a different slf4j version you would add the
following:
<properties>
<slf4j.version>1.7.5<slf4j.version>
</properties>
Note
this 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 are not using the parent POM you can still use the plugin, however, you must additionally add
an <executions> section:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.1.4.RELEASE</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
For Maven the normal JAR plugin and the Spring Boot plugin both have a “classifier” configuration that
you can add to create an additional JAR. Example (using the Spring Boot Starter Parent to manage the
plugin versions and other configuration defaults):
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>exec</classifier>
</configuration>
</plugin>
</plugins>
</build>
Two jars are produced, the default one, and an executable one using the Boot plugin with classifier
“exec”.
bootRepackage {
classifier = 'exec'
}
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 unpack 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>
springBoot {
requiresUnpack = ['org.jruby:jruby-complete']
}
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>exec</classifier>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<id>exec</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<classifier>exec</classifier>
</configuration>
</execution>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- Need this to ensure application.yml is excluded -->
<forceCreation>true</forceCreation>
<excludes>
<exclude>application.yml</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
In Gradle you can create a new JAR archive with standard task DSL features, and then have the
bootRepackage task depend on that one using its withJarTask property:
jar {
baseName = 'spring-boot-sample-profile'
version = '0.0.0'
excludes = ['**/application.yml']
}
bootRepackage {
withJarTask = tasks['execJar']
}
build.gradle:
applicationDefaultJvmArgs = [
"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"
]
Command line:
1. Use the appropriate launcher as a Main-Class, e.g. JarLauncher for a jar file, and specify the
other properties it needs as manifest entries, principally a Start-Class.
2. Add the runtime dependencies in a nested “lib” directory (for a jar) and the provided (embedded
container) dependencies in a nested lib-provided directory. Remember not to compress the
entries in the archive.
3. Add the spring-boot-loader classes at the root of the archive (so the Main-Class is available).
Example:
The Actuator Sample has a build.xml that should work if you run it with
The war file can also be executable if you use the Spring Boot build tools. In that case the embedded
container classes (to launch Tomcat for instance) have to be added to the war in a lib-provided
directory. The tools will take care of that as long as the dependencies are marked as “provided” in Maven
or Gradle. Here’s a Maven example in the Boot Samples.
@Configuration
@EnableAutoConfiguration
@ComponentScan
public class Application extends SpringBootServletInitializer {
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(Application.class);
}
Remember that whatever you put in the sources is just a Spring ApplicationContext and 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 first.
Vanilla usage of Spring DispatcherServlet and Spring Security should require no further changes. If
you have other features in your application, using other servlets or filters for instance, then you may need
to add some configuration to your Application context, replacing those elements from the web.xml
as follows:
Once the war is working we make it executable by adding a main method to our Application, e.g.
All of these should be amenable to translation, but each might require slightly different tricks.
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 (e.g. if it uses AbstractDispatcherServletInitializer) then you
might be able to squash all your context sources into a single SpringApplication. The main
complication you might encounter is if that doesn’t 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 will usually need 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 a Spring Boot application,
and the guidance above might help, but your mileage may vary.
Note
Property contributions can come from additional jar files on your classpath so you should not
consider this an exhaustive list. It is also perfectly legit to define your own properties.
Warning
This sample file is meant as a guide only. Do not copy/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
# ----------------------------------------
# PROFILES
spring.profiles= # comma list of active profiles
# LOGGING
logging.path=/var/logs
logging.file=myapp.log
logging.config= # location of config file (default classpath:/logback.xml for logback)
logging.level.*= # levels for loggers, e.g. "logging.level.org.springframework=DEBUG" (TRACE, DEBUG,
INFO, WARN, ERROR, FATAL, OFF)
# IDENTITY (ContextIdApplicationContextInitializer)
spring.application.name=
spring.application.index=
server.tomcat.remote-ip-header=x-forwarded-for
server.tomcat.basedir=/tmp # base dir (usually not needed, defaults to tmp)
server.tomcat.background-processor-delay=30; # in seconds
server.tomcat.max-threads = 0 # number of threads in protocol handler
server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding
# THYMELEAF (ThymeleafAutoConfiguration)
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.content-type=text/html # ;charset=<encoding> is added
spring.thymeleaf.cache=true # set to false for hot refresh
# FREEMARKER (FreeMarkerAutoConfiguration)
spring.freemarker.allowRequestOverride=false
spring.freemarker.allowSessionOverride=false
spring.freemarker.cache=true
spring.freemarker.checkTemplateLocation=true
spring.freemarker.contentType=text/html
spring.freemarker.exposeRequestAttributes=false
spring.freemarker.exposeSessionAttributes=false
spring.freemarker.exposeSpringMacroHelpers=false
spring.freemarker.prefix=
spring.freemarker.requestContextAttribute=
spring.freemarker.settings.*=
spring.freemarker.suffix=.ftl
spring.freemarker.templateEncoding=UTF-8
spring.freemarker.templateLoaderPath=classpath:/templates/
spring.freemarker.viewNames= # whitelist of view names that can be resolved
# INTERNATIONALIZATION (MessageSourceAutoConfiguration)
spring.messages.basename=messages
spring.messages.cacheSeconds=-1
spring.messages.encoding=UTF-8
# SECURITY (SecurityProperties)
security.user.name=user # login username
security.user.password= # login password
security.user.role=USER # role assigned to the user
security.require-ssl=false # advanced settings ...
security.enable-csrf=false
security.basic.enabled=true
security.basic.realm=Spring
security.basic.path= # /**
security.headers.xss=false
security.headers.cache=false
security.headers.frame=false
security.headers.contentType=false
security.headers.hsts=all # none / domain / all
security.sessions=stateless # always / never / if_required / stateless
security.ignored=false
# MONGODB (MongoProperties)
spring.data.mongodb.host= # the db host
spring.data.mongodb.port=27017 # the connection port (defaults to 27107)
spring.data.mongodb.uri=mongodb://localhost/test # connection URL
spring.data.mongo.repositories.enabled=true # if spring data repository support is enabled
# SOLR (SolrProperties})
spring.data.solr.host=http://127.0.0.1:8983/solr
spring.data.solr.zkHost=
spring.data.solr.repositories.enabled=true # if spring data repository support is enabled
# ELASTICSEARCH (ElasticsearchProperties})
spring.data.elasticsearch.cluster-name= # The cluster name (defaults to elasticsearch)
spring.data.elasticsearch.cluster-nodes= # The address(es) of the server node (comma-separated; if not
specified starts a client node)
spring.data.elasticsearch.local=true # if local mode should be used with client nodes
spring.data.elasticsearch.repositories.enabled=true # if spring data repository support is enabled
# FLYWAY (FlywayProperties)
flyway.locations=classpath:db/migrations # locations of migrations scripts
flyway.schemas= # schemas to update
flyway.initVersion= 1 # version to start migration
flyway.prefix=V
flyway.suffix=.sql
flyway.enabled=true
flyway.url= # JDBC url if you want Flyway to create its own DataSource
flyway.user= # JDBC username if you want Flyway to create its own DataSource
flyway.password= # JDBC password if you want Flyway to create its own DataSource
# LIQUIBASE (LiquibaseProperties)
liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
liquibase.contexts= # runtime contexts to use
liquibase.default-schema= # default database schema to use
liquibase.drop-first=false
liquibase.enabled=true
# JMX
spring.jmx.enabled=true # Expose MBeans from Spring
# RABBIT (RabbitProperties)
spring.rabbitmq.host= # connection host
spring.rabbitmq.port= # connection port
spring.rabbitmq.addresses= # connection addresses (e.g. myhost:9999,otherhost:1111)
spring.rabbitmq.username= # login user
spring.rabbitmq.password= # login password
spring.rabbitmq.virtualhost=
spring.rabbitmq.dynamic=
# REDIS (RedisProperties)
spring.redis.host=localhost # server host
spring.redis.password= # server password
spring.redis.port=6379 # connection port
spring.redis.pool.max-idle=8 # pool settings ...
spring.redis.pool.min-idle=0
spring.redis.pool.max-active=8
spring.redis.pool.max-wait=-1
# ACTIVEMQ (ActiveMQProperties)
spring.activemq.broker-url=tcp://localhost:61616 # connection URL
spring.activemq.user=
spring.activemq.password=
spring.activemq.in-memory=true # broker kind to create if no broker-url is specified
spring.activemq.pooled=false
# HornetQ (HornetQProperties)
spring.hornetq.mode= # connection mode (native, embedded)
spring.hornetq.host=localhost # hornetQ host (native mode)
spring.hornetq.port=5445 # hornetQ port (native mode)
spring.hornetq.embedded.enabled=true # if the embedded server is enabled (needs hornetq-jms-server.jar)
spring.hornetq.embedded.serverId= # auto-generated id of the embedded server (integer)
spring.hornetq.embedded.persistent=false # message persistence
spring.hornetq.embedded.data-directory= # location of data content (when persistence is enabled)
spring.hornetq.embedded.queues= # comma separate queues to create on startup
spring.hornetq.embedded.topics= # comma separate topics to create on startup
spring.hornetq.embedded.cluster-password= # customer password (randomly generated by default)
# JMS (JmsProperties)
spring.jms.pub-sub-domain= # false for queue (default), true for topic
spring.batch.job.names=job1,job2
spring.batch.job.enabled=true
spring.batch.initializer.enabled=true
spring.batch.schema= # batch schema to load
# AOP
spring.aop.auto=
spring.aop.proxy-target-class=
# ----------------------------------------
# ACTUATOR PROPERTIES
# ----------------------------------------
endpoints.info.enabled=true
endpoints.metrics.id=metrics
endpoints.metrics.sensitive=true
endpoints.metrics.enabled=true
endpoints.shutdown.id=shutdown
endpoints.shutdown.sensitive=true
endpoints.shutdown.enabled=false
endpoints.trace.id=trace
endpoints.trace.sensitive=true
endpoints.trace.enabled=true
# JOLOKIA (JolokiaProperties)
jolokia.config.*= # See Jolokia manual
# REMOTE SHELL
shell.auth=simple # jaas, key, simple, spring
shell.command-refresh-interval=-1
shell.command-path-pattern= # classpath*:/commands/**, classpath*:/crash/commands/**
shell.config-path-patterns= # classpath*:/crash/*
shell.disabled-plugins=false # don't expose plugins
shell.ssh.enabled= # ssh settings ...
shell.ssh.keyPath=
shell.ssh.port=
shell.telnet.enabled= # telnet settings ...
shell.telnet.port=
shell.auth.jaas.domain= # authentication settings ...
shell.auth.key.path=
shell.auth.simple.user.name=
shell.auth.simple.user.password=
shell.auth.spring.roles=
# GIT INFO
spring.git.properties= # resource ref to generated git info properties file
Appendix B. 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 autoconfig report in your application for more details of
which features are switched on. (start the app with --debug or -Ddebug, or in an Actuator application
use the autoconfig endpoint).
ActiveMQAutoConfiguration javadoc
AopAutoConfiguration javadoc
BatchAutoConfiguration javadoc
DataSourceAutoConfiguration javadoc
DataSourceTransactionManagerAutoConfiguration javadoc
DeviceDelegatingViewResolverAutoConfiguration javadoc
DeviceResolverAutoConfiguration javadoc
DispatcherServletAutoConfiguration javadoc
ElasticsearchAutoConfiguration javadoc
ElasticsearchDataAutoConfiguration javadoc
ElasticsearchRepositoriesAutoConfiguration javadoc
EmbeddedServletContainerAutoConfiguration javadoc
ErrorMvcAutoConfiguration javadoc
FacebookAutoConfiguration javadoc
FallbackWebSecurityAutoConfiguration javadoc
FlywayAutoConfiguration javadoc
FreeMarkerAutoConfiguration javadoc
GroovyTemplateAutoConfiguration javadoc
HibernateJpaAutoConfiguration javadoc
HornetQAutoConfiguration javadoc
HttpMessageConvertersAutoConfiguration javadoc
HypermediaAutoConfiguration javadoc
IntegrationAutoConfiguration javadoc
JmsAutoConfiguration javadoc
JmxAutoConfiguration javadoc
JpaRepositoriesAutoConfiguration javadoc
LinkedInAutoConfiguration javadoc
LiquibaseAutoConfiguration javadoc
MessageSourceAutoConfiguration javadoc
MongoAutoConfiguration javadoc
MongoDataAutoConfiguration javadoc
MongoRepositoriesAutoConfiguration javadoc
MultipartAutoConfiguration javadoc
PropertyPlaceholderAutoConfiguration javadoc
RabbitAutoConfiguration javadoc
ReactorAutoConfiguration javadoc
RedisAutoConfiguration javadoc
RepositoryRestMvcAutoConfiguration javadoc
SecurityAutoConfiguration javadoc
ServerPropertiesAutoConfiguration javadoc
SitePreferenceAutoConfiguration javadoc
SocialWebAutoConfiguration javadoc
SolrAutoConfiguration javadoc
SolrRepositoriesAutoConfiguration javadoc
ThymeleafAutoConfiguration javadoc
TwitterAutoConfiguration javadoc
VelocityAutoConfiguration javadoc
WebMvcAutoConfiguration javadoc
WebSocketAutoConfiguration javadoc
AuditAutoConfiguration javadoc
CrshAutoConfiguration javadoc
EndpointAutoConfiguration javadoc
EndpointMBeanExportAutoConfiguration javadoc
EndpointWebMvcAutoConfiguration javadoc
HealthIndicatorAutoConfiguration javadoc
JolokiaAutoConfiguration javadoc
ManagementSecurityAutoConfiguration javadoc
ManagementServerPropertiesAutoConfiguration javadoc
MetricFilterAutoConfiguration javadoc
MetricRepositoryAutoConfiguration javadoc
TraceRepositoryAutoConfiguration javadoc
TraceWebFilterAutoConfiguration javadoc
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 simply 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 you are actually using in your application. It can also be problematic if the 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.
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>
+-com
| +-mycompany
| + project
| +-YouClasses.class
+-lib
+-dependency1.jar
+-dependency2.jar
Spring Boot Loader compatible war files should be structured in the following way:
example.jar
|
+-META-INF
| +-MANIFEST.MF
+-org
| +-springframework
| +-boot
| +-loader
| +-<spring boot loader classes>
+-WEB-INF
+-classes
| +-com
| +-mycompany
| +-project
| +-YouClasses.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
+---------+---------------------+
| | /lib/mylib.jar |
| A.class |+---------+---------+|
| || B.class | B.class ||
| |+---------+---------+|
+---------+---------------------+
^ ^ ^
0063 3452 3980
The example above shows how A.class can be found in myapp.jar position 0063. B.class from
the nested jar can actually be found in myapp.jar position 3452 and B.class is at position 3980.
Armed with this information, we can load specific nested entries by simply seeking to appropriate part if
the outer jar. We don’t need to unpack the archive and we don’t need to read all entry data into memory.
are fixed (lib/*.jar and lib-provided/*.jar for the war case) so you just add extra jars in
those locations if you want more. The PropertiesLauncher looks in lib/ by default, but you
can add additional locations by setting an environment variable LOADER_PATH or loader.path in
application.properties (comma-separated list of directories or archives).
Launcher manifest
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 do not need to specify Class-Path entries in your manifest file, the classpath will be deduced
from the nested jars.
Exploded archives
Certain PaaS implementations may choose to unpack archives before they run. For example, Cloud
Foundry operates in this way. You can run an unpacked archive by simply starting the appropriate
launcher:
$ unzip -q myapp.jar
$ java org.springframework.boot.loader.JarLauncher
Key Purpose
Key Purpose
Manifest entry keys are formed by capitalizing initial letters of words and changing the separator to "-"
from "." (e.g. Loader-Path). The exception is loader.main which is looked up as Start-Class
in the manifest for compatibility with JarLauncher).
• loader.home is the directory location of an additional properties file (overriding the default) as long
as loader.config.location is not specified.
• loader.path can contain directories (scanned recursively for jar and zip files), archive paths, or
wildcard patterns (for the default JVM behavior).
• Placeholder replacement is done from System and environment variables plus the properties file itself
on all values before use.
The ZipEntry for a nested jar must be saved 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.
System ClassLoader
• JarClassLoader
• OneJar
com.fasterxml.jackson.core
jackson-annotations 2.3.3
com.fasterxml.jackson.core
jackson-core 2.3.3
com.fasterxml.jackson.core
jackson-databind 2.3.3
com.fasterxml.jackson.datatype
jackson-datatype-joda 2.3.3
com.fasterxml.jackson.datatype
jackson-datatype-jsr310 2.3.3
com.h2database h2 1.3.176
org.apache.httpcomponentshttpasyncclient 4.0.1
org.apache.httpcomponentshttpclient 4.3.4
org.apache.httpcomponentshttpmime 4.3.4
org.hibernate.javax.persistence
hibernate-jpa-2.0-api 1.0.1.Final
org.projectreactor.springreactor-spring-context 1.1.2.RELEASE
org.projectreactor.springreactor-spring-core 1.1.2.RELEASE
org.projectreactor.springreactor-spring- 1.1.2.RELEASE
messaging
org.projectreactor.springreactor-spring-webmvc 1.1.2.RELEASE
org.springframework.batchspring-batch-core 3.0.1.RELEASE
org.springframework.batchspring-batch- 3.0.1.RELEASE
infrastructure
org.springframework.batchspring-batch- 3.0.1.RELEASE
integration
org.springframework.batchspring-batch-test 3.0.1.RELEASE
org.springframework.hateoas
spring-hateoas 0.14.0.RELEASE
org.springframework.integration
spring-integration-amqp 4.0.2.RELEASE
org.springframework.integration
spring-integration-core 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
event
org.springframework.integration
spring-integration-feed 4.0.2.RELEASE
org.springframework.integration
spring-integration-file 4.0.2.RELEASE
org.springframework.integration
spring-integration-ftp 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
gemfire
org.springframework.integration
spring-integration- 4.0.2.RELEASE
groovy
org.springframework.integration
spring-integration-http 4.0.2.RELEASE
org.springframework.integration
spring-integration-ip 4.0.2.RELEASE
org.springframework.integration
spring-integration-jdbc 4.0.2.RELEASE
org.springframework.integration
spring-integration-jms 4.0.2.RELEASE
org.springframework.integration
spring-integration-jmx 4.0.2.RELEASE
org.springframework.integration
spring-integration-jpa 4.0.2.RELEASE
org.springframework.integration
spring-integration-mail 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
mongodb
org.springframework.integration
spring-integration-mqtt 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
redis
org.springframework.integration
spring-integration-rmi 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
scripting
org.springframework.integration
spring-integration- 4.0.2.RELEASE
security
org.springframework.integration
spring-integration-sftp 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
stream
org.springframework.integration
spring-integration- 4.0.2.RELEASE
syslog
org.springframework.integration
spring-integration-test 4.0.2.RELEASE
org.springframework.integration
spring-integration- 4.0.2.RELEASE
twitter
org.springframework.integration
spring-integration-ws 4.0.2.RELEASE
org.springframework.integration
spring-integration-xml 4.0.2.RELEASE
org.springframework.integration
spring-integration-xmpp 4.0.2.RELEASE
org.springframework.mobile
spring-mobile-device 1.1.2.RELEASE
org.springframework.security
spring-security-acl 3.2.4.RELEASE
org.springframework.security
spring-security-aspects 3.2.4.RELEASE
org.springframework.security
spring-security-cas 3.2.4.RELEASE
org.springframework.security
spring-security-config 3.2.4.RELEASE
org.springframework.security
spring-security-core 3.2.4.RELEASE
org.springframework.security
spring-security-crypto 3.2.4.RELEASE
org.springframework.security
spring-security-jwt 1.0.2.RELEASE
org.springframework.security
spring-security-ldap 3.2.4.RELEASE
org.springframework.security
spring-security-openid 3.2.4.RELEASE
org.springframework.security
spring-security- 3.2.4.RELEASE
remoting
org.springframework.security
spring-security-taglibs 3.2.4.RELEASE
org.springframework.security
spring-security-web 3.2.4.RELEASE
org.springframework.social
spring-social-config 1.1.0.RELEASE
org.springframework.social
spring-social-core 1.1.0.RELEASE
org.springframework.social
spring-social-facebook 1.1.1.RELEASE
org.springframework.social
spring-social-facebook- 1.1.1.RELEASE
web
org.springframework.social
spring-social-linkedin 1.0.1.RELEASE
org.springframework.social
spring-social-security 1.1.0.RELEASE
org.springframework.social
spring-social-twitter 1.1.0.RELEASE
org.springframework.social
spring-social-web 1.1.0.RELEASE