Spring Boot Reference PDF
Spring Boot Reference PDF
Spring Boot Reference PDF
1.2.2.BUILD-SNAPSHOT
Phillip Webb , Dave Syer , Josh Long , Stphane Nicoll , Rob Winch ,
Andy Wilkinson , Marcel Overdijk , Christian Dupuis , Sbastien Deleuze
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.
Table of Contents
I. Spring Boot Documentation ...................................................................................................... 1
1. About the documentation ................................................................................................ 2
2. Getting help .................................................................................................................... 3
3. First steps ...................................................................................................................... 4
4. Working with Spring Boot ................................................................................................ 5
5. Learning about Spring Boot features ................................................................................ 6
6. Moving to production ....................................................................................................... 7
7. Advanced topics ............................................................................................................. 8
II. Getting started ........................................................................................................................ 9
8. Introducing Spring Boot ................................................................................................. 10
9. System Requirements ................................................................................................... 11
9.1. Servlet containers ............................................................................................... 11
10. Installing Spring Boot .................................................................................................. 12
10.1. Installation instructions for the Java developer ................................................... 12
Maven installation ............................................................................................. 12
Gradle installation ............................................................................................. 13
10.2. Installing the Spring Boot CLI ........................................................................... 14
Manual installation ............................................................................................ 14
Installation with GVM ........................................................................................ 15
OSX Homebrew installation ............................................................................... 15
MacPorts installation ......................................................................................... 15
Command-line completion ................................................................................. 16
Quick start Spring CLI example ......................................................................... 16
10.3. Upgrading from an earlier version of Spring Boot ............................................... 16
11. Developing your first Spring Boot application ................................................................ 17
11.1. Creating the POM ............................................................................................ 17
11.2. Adding classpath dependencies ........................................................................ 18
11.3. Writing the code ............................................................................................... 18
The @RestController and @RequestMapping annotations .................................. 19
The @EnableAutoConfiguration annotation ........................................................ 19
The main method ........................................................................................... 19
11.4. Running the example ........................................................................................ 20
11.5. Creating an executable jar ................................................................................ 20
12. What to read next ....................................................................................................... 22
III. Using Spring Boot ................................................................................................................ 23
13. Build systems ............................................................................................................. 24
13.1. Maven .............................................................................................................. 24
Inheriting the starter parent ............................................................................... 24
Using Spring Boot without the parent POM ........................................................ 24
Changing the Java version ................................................................................ 25
Using the Spring Boot Maven plugin .................................................................. 25
13.2. Gradle .............................................................................................................. 25
13.3. Ant ................................................................................................................... 26
13.4. Starter POMs ................................................................................................... 26
14. Structuring your code .................................................................................................. 29
14.1. Using the default package .............................................................................. 29
14.2. Locating the main application class ................................................................... 29
1.2.2.BUILD-SNAPSHOT
Spring Boot
ii
1.2.2.BUILD-SNAPSHOT
Spring Boot
iii
1.2.2.BUILD-SNAPSHOT
Spring Boot
iv
1.2.2.BUILD-SNAPSHOT
Spring Boot
1.2.2.BUILD-SNAPSHOT
Spring Boot
vi
1.2.2.BUILD-SNAPSHOT
Spring Boot
vii
65.
66.
67.
68.
69.
70.
1.2.2.BUILD-SNAPSHOT
Spring Boot
viii
70.1. Change the HTTP port or address of the actuator endpoints ............................. 166
70.2. Customize the whitelabel error page .............................................................. 166
71. Security ..................................................................................................................... 167
71.1. Switch off the Spring Boot security configuration .............................................. 167
71.2. Change the AuthenticationManager and add user accounts .............................. 167
71.3. Enable HTTPS when running behind a proxy server ......................................... 167
72. Hot swapping ............................................................................................................ 169
72.1. Reload static content ...................................................................................... 169
72.2. Reload Thymeleaf templates without restarting the container ............................. 169
72.3. Reload FreeMarker templates without restarting the container ........................... 169
72.4. Reload Groovy templates without restarting the container ................................. 169
72.5. Reload Velocity templates without restarting the container ................................ 169
72.6. Reload Java classes without restarting the container ........................................ 169
Configuring Spring Loaded for use with Maven ................................................. 169
Configuring Spring Loaded for use with Gradle and IntelliJ ................................ 170
73. Build ......................................................................................................................... 171
73.1. Customize dependency versions with Maven ................................................... 171
73.2. Create an executable JAR with Maven ............................................................ 171
73.3. Create an additional executable JAR ............................................................... 172
73.4. Extract specific libraries when an executable jar runs ....................................... 172
73.5. Create a non-executable JAR with exclusions .................................................. 173
73.6. Remote debug a Spring Boot application started with Maven ............................. 174
73.7. Remote debug a Spring Boot application started with Gradle ............................. 174
73.8. Build an executable archive with Ant ............................................................... 174
73.9. How to use Java 6 ......................................................................................... 175
Embedded servlet container compatibility ......................................................... 175
JTA API compatibility ...................................................................................... 175
74. Traditional deployment ............................................................................................... 176
74.1. Create a deployable war file ........................................................................... 176
74.2. Create a deployable war file for older servlet containers .................................... 177
74.3. Convert an existing application to Spring Boot .................................................. 177
74.4. Deploying a WAR to Weblogic ........................................................................ 178
74.5. Deploying a WAR in an Old (Servlet 2.5) Container .......................................... 179
X. Appendices ......................................................................................................................... 181
A. Common application properties ................................................................................... 182
B. Configuration meta-data .............................................................................................. 192
B.1. Meta-data format .............................................................................................. 192
Group Attributes .............................................................................................. 192
Property Attributes ........................................................................................... 193
Repeated meta-data items ............................................................................... 194
B.2. Generating your own meta-data using the annotation processor .......................... 194
Nested properties ............................................................................................ 194
Adding additional meta-data ............................................................................ 195
C. Auto-configuration classes ........................................................................................... 196
C.1. From the spring-boot-autoconfigure module .................................................... 196
C.2. From the spring-boot-actuator module ............................................................ 198
D. The executable jar format ........................................................................................... 199
D.1. Nested JARs ................................................................................................... 199
The executable jar file structure ....................................................................... 199
The executable war file structure ..................................................................... 199
1.2.2.BUILD-SNAPSHOT
Spring Boot
ix
1.2.2.BUILD-SNAPSHOT
Spring Boot
200
200
200
201
201
201
202
202
202
202
203
The Spring Boot reference guide is available as html, pdf and epub documents. The latest copy is
available at docs.spring.io/spring-boot/docs/current/reference.
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
1.2.2.BUILD-SNAPSHOT
Spring Boot
If youre just getting started with Spring Boot, or 'Spring' in general, this is the place to start!
From scratch: Overview | Requirements | Installation
Tutorial: Part 1 | Part 2
Running your example: Part 1 | Part 2
1.2.2.BUILD-SNAPSHOT
Spring Boot
Ready to actually start using Spring Boot? Weve got you covered.
Build systems: Maven | Gradle | Ant | Starter POMs
Best practices: Code Structure | @Configuration | @EnableAutoConfiguration | Beans and
Dependency Injection
Running your code IDE | Packaged | Maven | Gradle
Packaging your app: Production jars
Spring Boot CLI: Using the CLI
1.2.2.BUILD-SNAPSHOT
Spring Boot
Need more details about Spring Boots core features? This is for you!
Core Features: SpringApplication | External Configuration | Profiles | Logging
Web Applications: MVC | Embedded Containers
Working with data: SQL | NO-SQL
Messaging: Overview | JMS
Testing: Overview | Boot Applications | Utils
Extending: Auto-configuration | @Conditions
1.2.2.BUILD-SNAPSHOT
Spring Boot
When youre ready to push your Spring Boot application to production, weve got some tricks that you
might like!
Management endpoints: Overview | Customization
Connection options: HTTP | JMX | SSH
Monitoring: Metrics | Auditing | Tracing | Process
1.2.2.BUILD-SNAPSHOT
Spring Boot
1.2.2.BUILD-SNAPSHOT
Spring Boot
Spring Boot makes it easy to create stand-alone, production-grade Spring based Applications that you
can just run. We take an opinionated view of the Spring platform and third-party libraries so you can
get started with minimum fuss. Most Spring Boot applications need very little Spring configuration.
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.
Our primary goals are:
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).
Absolutely no code generation and no requirement for XML configuration.
1.2.2.BUILD-SNAPSHOT
Spring Boot
10
By default, Spring Boot 1.2.2.BUILD-SNAPSHOT requires Java 7 and Spring Framework 4.1.3 or above.
You can use Spring Boot with Java 6 with some additional configuration. See Section 73.9, How to use
Java 6 for more details. Explicit build support is provided for Maven (3.2+) and Gradle (1.12+).
Tip
Although you can use Spring Boot with Java 6 or 7, we generally recommend Java 8 if at all
possible.
Servlet Version
Java Version
Tomcat 8
3.1
Java 7+
Tomcat 7
3.0
Java 6+
Jetty 9
3.1
Java 7+
Jetty 8
3.0
Java 6+
Undertow 1.1
3.1
Java 7+
You can also deploy Spring Boot applications to any Servlet 3.0+ compatible container.
1.2.2.BUILD-SNAPSHOT
Spring Boot
11
Spring Boot can be used with classic Java development tools or installed as a command line tool.
Regardless, you will need Java SDK v1.6 or higher. You should check your current Java installation
before you begin:
$ 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.
Maven installation
Spring Boot is compatible with Apache Maven 3.2 or above. If you dont already have Maven installed
you can follow the instructions at maven.apache.org.
Tip
On many operating systems Maven can be installed via a package manager. If youre 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.
Here is a typical pom.xml file:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
1.2.2.BUILD-SNAPSHOT
Spring Boot
12
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.2.BUILD-SNAPSHOT</version>
</parent>
<!-- Add typical dependencies for a web application -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<!-- Package as an executable jar -->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<!-- Add Spring repositories -->
<!-- (you don't need this if you are using a .RELEASE version) -->
<repositories>
<repository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/snapshot</url>
<snapshots><enabled>true</enabled></snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/snapshot</url>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
</project>
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.12 or above. If you dont already have Gradle installed you can
follow the instructions at 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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
13
Gradle Wrapper
The Gradle Wrapper provides a nice way of obtaining Gradle when you need to build a project.
Its a small script and library that you commit alongside your code to bootstrap the build process.
See www.gradle.org/docs/current/userguide/gradle_wrapper.html for details.
Here is a typical build.gradle file:
buildscript {
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.2.BUILD-SNAPSHOT")
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
jar {
baseName = 'myproject'
version = '0.0.1-SNAPSHOT'
}
repositories {
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
Manual installation
You can download the Spring CLI distribution from the Spring software repository:
spring-boot-cli-1.2.2.BUILD-SNAPSHOT-bin.zip
spring-boot-cli-1.2.2.BUILD-SNAPSHOT-bin.tar.gz
Cutting edge snapshot distributions are also available.
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).
1.2.2.BUILD-SNAPSHOT
Spring Boot
14
If you are developing features for the CLI and want easy access to the version you just built, follow
these extra instructions.
$ gvm install springboot dev /path/to/spring-boot/spring-boot-cli/target/spring-boot-cli-1.2.2.BUILDSNAPSHOT-bin/spring-1.2.2.BUILD-SNAPSHOT/
$ gvm use springboot dev
$ spring --version
Spring CLI v1.2.2.BUILD-SNAPSHOT
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.
You can see it by doing this:
$ gvm ls springboot
================================================================================
Available Springboot Versions
================================================================================
> + dev
* 1.2.2.BUILD-SNAPSHOT
================================================================================
+ - local version
* - installed
> - currently in use
================================================================================
MacPorts installation
If you are on a Mac and using MacPorts, all you need to do to install the Spring Boot CLI is:
$ sudo port install spring-boot-cli
1.2.2.BUILD-SNAPSHOT
Spring Boot
15
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 or MacPorts, the command-line completion scripts
are automatically registered with your shell.
Note
It will take some time when you first run the application as dependencies are downloaded.
Subsequent runs will be much quicker.
Open localhost:8080 in your favorite web browser and you should see the following output:
Hello World!
1.2.2.BUILD-SNAPSHOT
Spring Boot
16
Lets develop a simple Hello World! web application in Java that highlights some of Spring Boots key
features. Well use Maven to build this project since most IDEs support it.
Tip
The spring.io web site contains many Getting Started guides that use Spring Boot. If youre
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.2.3 (33f8c3e1027c3ddde99d3cdebad2656a31e8fdf4; 2014-08-11T13:58:10-07:00)
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
17
<id>spring-snapshots</id>
<url>http://repo.spring.io/snapshot</url>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<url>http://repo.spring.io/milestone</url>
</pluginRepository>
</pluginRepositories>
</project>
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 IDEs include built-in
support for Maven). For simplicity, we will continue to use a plain text editor for this example.
The mvn dependency:tree command prints a tree representation of your project dependencies.
You can see that spring-boot-starter-parent provides no dependencies by itself. Lets 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.
org.springframework.boot.*;
org.springframework.boot.autoconfigure.*;
org.springframework.stereotype.*;
org.springframework.web.bind.annotation.*;
1.2.2.BUILD-SNAPSHOT
Spring Boot
18
@RestController
@EnableAutoConfiguration
public class Example {
@RequestMapping("/")
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(Example.class, args);
}
}
Although there isnt much code here, quite a lot is going on. Lets step through the important parts.
1.2.2.BUILD-SNAPSHOT
Spring Boot
19
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.
If you open a web browser to localhost:8080 you should see the following output:
Hello World!
1.2.2.BUILD-SNAPSHOT
Spring Boot
20
Note
The spring-boot-starter-parent POM includes <executions> configuration to bind the
repackage goal. If you are not using the parent POM you will need to declare this configuration
yourself. See the plugin documentation for details.
Save your pom.xml and run mvn package from the command line:
$ mvn package
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[INFO]
[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:
$ jar tvf target/myproject-0.0.1-SNAPSHOT.jar
1.2.2.BUILD-SNAPSHOT
Spring Boot
21
Hopefully this section has provided you with some of the Spring Boot basics, and got you on your way
to writing your own applications. If youre a task-oriented type of developer you might want to jump over
to spring.io and check out some of the getting started guides that solve specific How do I do that with
Spring problems; we also have Spring Boot-specific How-to reference documentation.
Otherwise, the next logical step is to read Part III, Using Spring Boot. If youre really impatient, you
could also jump ahead and read about Spring Boot features.
1.2.2.BUILD-SNAPSHOT
Spring Boot
22
It is strongly recommended that you choose a build system that supports dependency management,
and one that can consume artifacts published to the Maven Central repository. We would recommend
that you choose Maven or Gradle. It is possible to get Spring Boot to work with other build systems (Ant
for example), but they will not be particularly well supported.
13.1 Maven
Maven users can inherit from the spring-boot-starter-parent project to obtain sensible defaults.
The parent project provides the following features:
Java 1.6 as the default compiler level.
UTF-8 source encoding.
A Dependency Management section, allowing you to omit <version> tags for common
dependencies, inherited from the spring-boot-dependencies POM.
Sensible resource filtering.
Sensible plugin configuration (exec plugin, surefire, Git commit ID, shade).
Sensible resource filtering for application.properties and application.yml
On the last point: since the default config files files accept Spring style placeholders (${}) the
Maven filtering is changed to use @..@ placeholders (you can override that with a Maven property
resource.delimiter).
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
24
<version>1.2.2.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
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.
13.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.
apply plugin: 'java'
repositories { jcenter() }
dependencies {
compile("org.springframework.boot:spring-boot-starter-web:1.2.2.BUILD-SNAPSHOT")
}
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 { jcenter() }
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.2.BUILD-SNAPSHOT")
}
}
apply plugin: 'java'
apply plugin: 'spring-boot'
repositories { jcenter() }
1.2.2.BUILD-SNAPSHOT
Spring Boot
25
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
13.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 73.8, Build an executable archive with Ant How-to for more complete instructions.
are
provided
by
Spring
Boot
under
the
Description
spring-boot-starter
The core Spring Boot starter, including autoconfiguration support, logging and YAML.
spring-boot-starter-actuator
spring-boot-starter-amqp
spring-boot-starter-aop
spring-boot-starter-batch
1.2.2.BUILD-SNAPSHOT
Spring Boot
26
Name
Description
spring-boot-starter-dataelasticsearch
spring-boot-starter-data-gemfire
spring-boot-starter-data-jpa
spring-boot-starter-data-mongodb
spring-boot-starter-data-rest
spring-boot-starter-data-solr
spring-boot-starter-freemarker
spring-boot-starter-hornetq
spring-boot-starter-integration
spring-boot-starter-jdbc
spring-boot-starter-jersey
spring-boot-starter-jta-atomikos
spring-boot-starter-jta-bitronix
spring-boot-starter-mail
spring-boot-starter-mobile
spring-boot-starter-redis
spring-boot-starter-security
spring-boot-starter-social-facebook
spring-boot-starter-social-linkedin
1.2.2.BUILD-SNAPSHOT
Spring Boot
27
Name
Description
spring-boot-starter-social-twitter
spring-boot-starter-test
spring-boot-starter-thymeleaf
spring-boot-starter-velocity
spring-boot-starter-web
spring-boot-starter-websocket
spring-boot-starter-ws
In addition to the application starters, the following starters can be used to add production ready features.
Table 13.2. Spring Boot production ready starters
Name
Description
spring-boot-starter-actuator
spring-boot-starter-remote-shell
Finally, Spring Boot includes some starters that can be used if you want to exclude or swap specific
technical facets.
Table 13.3. Spring Boot technical starters
Name
Description
spring-boot-starter-jetty
spring-boot-starter-log4j
spring-boot-starter-logging
spring-boot-starter-tomcat
spring-boot-starter-undertow
Tip
For a list of additional community contributed starter POMs, see the README file in the springboot-starters module on GitHub.
1.2.2.BUILD-SNAPSHOT
Spring Boot
28
Spring Boot does not require any specific code layout to work, however, there are some best practices
that help.
The Application.java file would declare the main method, along with the basic @Configuration.
package com.example.myproject;
import
import
import
import
org.springframework.boot.SpringApplication;
org.springframework.boot.autoconfigure.EnableAutoConfiguration;
org.springframework.context.annotation.ComponentScan;
org.springframework.context.annotation.Configuration;
@Configuration
@EnableAutoConfiguration
@ComponentScan
public class Application {
1.2.2.BUILD-SNAPSHOT
Spring Boot
29
1.2.2.BUILD-SNAPSHOT
Spring Boot
30
Spring
Boot
favors
Java-based
configuration.
Although
it
is
possible
to
call
SpringApplication.run() with an XML source, we generally recommend that your primary source
is a @Configuration class. Usually the class that defines the main method is also a good candidate
as the primary @Configuration.
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
31
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.
You need to opt-in to auto-configuration by adding the @EnableAutoConfiguration or
@SpringBootApplication annotations to one of your @Configuration classes.
Tip
You should only ever add one @EnableAutoConfiguration annotation. We generally
recommend that you add it to your primary @Configuration class.
1.2.2.BUILD-SNAPSHOT
Spring Boot
32
You are free to use any of the standard Spring Framework techniques to define your beans and their
injected dependencies. For simplicity, we often find that using @ComponentScan to find your beans, in
combination with @Autowired constructor injection works well.
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 {
private final RiskAssessor riskAssessor;
@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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
33
Many Spring Boot developers always have their main class annotated with @Configuration,
@EnableAutoConfiguration and @ComponentScan. Since these annotations are so frequently
used together (especially if you follow the best practices above), Spring Boot provides a convenient
@SpringBootApplication alternative.
The @SpringBootApplication annotation is equivalent to using @Configuration,
@EnableAutoConfiguration and @ComponentScan with their default attributes:
package com.example.myproject;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication // same as @Configuration @EnableAutoConfiguration @ComponentScan
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
34
One of the biggest advantages of packaging your application as jar and using an embedded HTTP
server is that you can run your application as you would any other. Debugging Spring Boot applications
is also easy; you dont need any special IDE plugins or extensions.
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.
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:
$ java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n \
-jar target/myproject-0.0.1-SNAPSHOT.jar
You might also want to use the useful operating system environment variable:
$ export MAVEN_OPTS=-Xmx1024m -XX:MaxPermSize=128M -Djava.security.egd=file:/dev/./urandom
(The egd setting is to speed up Tomcat startup by giving it a faster source of entropy for session keys.)
1.2.2.BUILD-SNAPSHOT
Spring Boot
35
You might also want to use this useful operating system environment variable:
$ export JAVA_OPTS=-Xmx1024m -XX:MaxPermSize=128M -Djava.security.egd=file:/dev/./urandom
1.2.2.BUILD-SNAPSHOT
Spring Boot
36
Executable jars can be used for production deployment. As they are self-contained, they are also ideally
suited for cloud-based deployment.
For additional production ready features, such as health, auditing and metric REST or JMX endpoints; consider adding spring-boot-actuator. See Part V, Spring Boot Actuator: Productionready features for details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
37
You should now have good understanding of how you can use Spring Boot along with some best
practices that you should follow. You can now go on to learn about specific Spring Boot features in
depth, or you could skip ahead and read about the production ready aspects of Spring Boot.
1.2.2.BUILD-SNAPSHOT
Spring Boot
38
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:
public static void main(String[] args) {
SpringApplication.run(MySpringConfiguration.class, args);
}
When your application starts you should see something similar to the following:
.
____
_
__ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot ::
v1.2.2.BUILD-SNAPSHOT
2013-07-31 00:08:16.117 INFO 56603 --- [
main] o.s.b.s.app.SampleApplication
Starting SampleApplication v0.1.0 on mycomputer with PID 56603 (/apps/myapp.jar started by pwebb)
2013-07-31 00:08:16.166 INFO 56603 --- [
main] ationConfigEmbeddedWebApplicationContext
Refreshing
org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@6e5a8246:
startup date [Wed Jul 31 00:08:16 PDT 2013]; root of context hierarchy
2014-03-04 13:09:54.912 INFO 41370 --- [
main] .t.TomcatEmbeddedServletContainerFactory
Server initialized with port: 8080
2014-03-04 13:09:56.501 INFO 41370 --- [
main] o.s.b.s.app.SampleApplication
Started SampleApplication in 2.992 seconds (JVM running for 3.658)
:
:
:
:
By default INFO logging messages will be shown, including some relevant startup details such as the
user that launched the application.
Description
${application.version}
${application.formatted-version}
${spring-boot.version}
${spring-boot.formatted-version}
1.2.2.BUILD-SNAPSHOT
Spring Boot
40
Tip
The SpringBootApplication.setBanner() method can be used if you want to generate
a banner programmatically. Use the org.springframework.boot.Banner interface and
implement your own printBanner() method.
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.
It is also possible to configure the SpringApplication using an application.properties file.
See Chapter 23, Externalized Configuration for details.
For a complete list of the configuration options, see the SpringApplication Javadoc.
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
41
of
ways,
the
most
common
being
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.
2. An ApplicationEnvironmentPreparedEvent is sent when the Environment to be used in the
context is known, but before the context is created.
3. An ApplicationPreparedEvent is sent just before the refresh is started, but after bean definitions
have been loaded.
4. An ApplicationFailedEvent is sent if there is an exception on startup.
Tip
You often wont 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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
42
import org.springframework.boot.*
import org.springframework.stereotype.*
@Component
public class MyBean implements CommandLineRunner {
public void run(String... args) {
// Do something...
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
43
Spring Boot allows you to externalize your configuration so you can work with the same application
code in different environments. You can use properties files, YAML files, environment variables and
command-line arguments to externalize configuration. Property values can be injected directly into your
beans using the @Value annotation, accessed via Springs Environment abstraction or bound to
structured objects.
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:
1. Command line arguments.
2. JNDI attributes from java:comp/env.
3. Java System properties (System.getProperties()).
4. OS environment variables.
5. A RandomValuePropertySource that only has properties in random.*.
6. Profile-specific application properties outside
{profile}.properties and YAML variants)
of
7. Profile-specific
application
properties
packaged
{profile}.properties and YAML variants)
your
packaged
inside
your
jar
jar
(application-
(application-
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").
1.2.2.BUILD-SNAPSHOT
Spring Boot
44
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).
or
$ java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/
override.properties
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
45
Note
If you use environment variables rather than 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.
Tip
You can also use this technique to create short variants of existing Spring Boot properties. See
the Section 63.3, Use short command line arguments how-to for details.
Loading YAML
Spring Framework 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.
For example, the following YAML document:
1.2.2.BUILD-SNAPSHOT
Spring Boot
46
environments:
dev:
url: http://dev.bar.com
name: Developer Setup
prod:
url: http://foo.bar.com
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
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>();
public List<String> getServers() {
return this.servers;
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
47
server:
address: 192.168.1.120
In the example above, the server.address property will be 127.0.0.1 if the development profile
is active. If the development and production profiles are not enabled, then the value for the property
will be 192.168.1.100
YAML shortcomings
YAML files cant 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.
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);
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
48
Tip
Using @ConfigurationProperties also allows you to generate meta-data files that can be
used by IDEs. See the Appendix B, Configuration meta-data appendix for details.
Third-party configuration
As well as using @ConfigurationProperties to annotate a class, you can also use it on @Bean
methods. This can be particularly useful when you want to bind properties to third-party components
that are outside of your control.
To configure a bean from the Environment properties, add @ConfigurationProperties to its
bean registration:
@ConfigurationProperties(prefix = "foo")
@Bean
public FooComponent fooComponent() {
...
}
Any property defined with the foo prefix will be mapped onto that FooComponent bean in a similar
manner as the ConnectionSettings example above.
Relaxed binding
Spring Boot uses some relaxed rules for binding Environment properties to
@ConfigurationProperties beans, so there doesnt need to be an exact match between the
Environment property name and the bean property name. Common examples where this is useful
include dashed separated (e.g. context-path binds to contextPath), and capitalized (e.g. PORT
binds to port) environment properties.
For example, given the following @ConfigurationProperties class:
@Component
@ConfigurationProperties(prefix="person")
public class ConnectionSettings {
private String firstName;
}
Note
person.firstName
Standard camel case syntax.
1.2.2.BUILD-SNAPSHOT
Spring Boot
49
Property
Note
person.firstname
PERSON_FIRST_NAME
Upper case format. Recommended when using a system environment
variables.
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;
// ... getters and setters
}
You can also add a custom Spring Validator by creating a bean definition called
configurationPropertiesValidator.
Tip
The spring-boot-actuator module includes an endpoint that exposes all
@ConfigurationProperties beans. Simply point your web browser to /configprops or use
the equivalent JMX endpoint. See the Production ready features. section for details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
50
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
Note
Remember that the spring.profiles property can be defined in a YAML document to
determine when this particular document is included in the configuration. See Section 63.6,
Change configuration depending on the environment for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
51
1.2.2.BUILD-SNAPSHOT
Spring Boot
52
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, Log4J2 and Logback. In each
case loggers are pre-configured to use console output with optional file output also available.
By default, If you use the 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. Dont worry if the above list seems
confusing. Generally you wont need to change your logging dependencies and the Spring Boot
defaults will work just fine.
:
:
:
:
:
If your terminal supports ANSI, color output will be used to aid readability. You can set
spring.output.ansi.enabled to a supported value to override the auto detection.
1.2.2.BUILD-SNAPSHOT
Spring Boot
53
Description
(none)
(none)
Specific file
(none)
my.log
(none)
Specific
folder
/var/log
Log files will rotate when they reach 10 Mb and as with console output, ERROR, WARN and INFO level
messages are logged by default.
Customization
Logback
logback.xml
Log4j
log4j.properties or log4j.xml
Log4j2
log4j2.xml
logging.properties
To help with the customization some other properties are transferred from the Spring Environment
to System properties:
1.2.2.BUILD-SNAPSHOT
Spring Boot
54
Spring Environment
System Property
Comments
logging.file
LOG_FILE
logging.path
LOG_PATH
PID
PID
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
55
Spring Boot is well suited for web application development. You can easily create a self-contained HTTP
server using embedded Tomcat, Jetty, or Undertow. Most web applications will use the spring-bootstarter-web module to get up and running quickly.
If you havent yet developed a Spring Boot web application you can follow the "Hello World!" example
in the Getting started section.
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 spring.io/guides that cover Spring MVC.
1.2.2.BUILD-SNAPSHOT
Spring Boot
56
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 the Jackson XML extension if available, else using
JAXB). Strings are encoded using UTF-8 by default.
If you need to add or customize converters you can use Spring Boots HttpMessageConverters
class:
import org.springframework.boot.autoconfigure.web.HttpMessageConverters;
import org.springframework.context.annotation.*;
import org.springframework.http.converter.*;
@Configuration
public class MyConfiguration {
@Bean
public HttpMessageConverters customConverters() {
HttpMessageConverter<?> additional = ...
HttpMessageConverter<?> another = ...
return new HttpMessageConverters(additional, another);
}
}
Any HttpMessageConverter bean that is present in the context will be added to the list of converters.
You can also override default converters that way.
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.messagecodes-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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
57
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
Tip
JSPs should be avoided if possible, there are several known limitations when using them with
embedded servlet containers.
When youre using one of these templating engines with the default configuration, your templates will
be picked up automatically from src/main/resources/templates.
Tip
IntelliJ IDEA orders the classpath differently depending on how you run your application. Running
your application in the IDE via its main method will result in a different ordering to when you
run your application using Maven or Gradle or from its pacakaged jar. This can cause Spring
Boot to fail to find the templates on the classpath. If youre affected by this problem you can
reorder the classpath in the IDE to place the modules classes and resources first. Alternatively,
you can configure the template prefix to search every templates directory on the classpath:
classpath*:/templates/.
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
1.2.2.BUILD-SNAPSHOT
Spring Boot
58
You can also use regular Spring MVC features like @ExceptionHandler methods and
@ControllerAdvice. The ErrorController will then pick up any unhandled exceptions.
N.B. if you register an ErrorPage with a path that will end up being handled by a Filter (e.g. as is
common with some non-Spring web frameworks, like Jersey and Wicket), then the Filter has to be
explicitly registered as an ERROR dispatcher, e.g.
@Bean
public FilterRegistrationBean myFilter() {
FilterRegistrationBean registration = new FilterRegistrationBean();
registration.setFilter(new MyFilter());
...
registration.setDispatcherTypes(EnumSet.allOf(DispatcherType.class));
return registration;
}
(the default FilterRegistrationBean does not include the ERROR dispatcher type).
Error Handling on WebSphere Application Server
When deployed to a servlet container, a Spring Boot uses its error page filter to forward a request with an
error status to the appropriate error page. The request can only be forwarded to the correct error page if
the response has not already been committed. By default, WebSphere Application Server 8.0 and later
commits the response upon successful completion of a servlets service method. You should disable
this behaviour by setting com.ibm.ws.webcontainer.invokeFlushAfterService to false
Spring HATEOAS
If youre developing a RESTful API that makes use of hypermedia, Spring Boot provides autoconfiguration for Spring HATEOAS that works well with most applications. The auto-configuration
replaces the need to use @EnableHypermediaSupport and registers a number of beans to
ease building hypermedia-based applications including a LinkDiscoverer and an ObjectMapper
configured to correctly marshal responses into the desired representation. The ObjectMapper will be
customized based on the spring.jackson.* properties or a Jackson2ObjectMapperBuilder
bean if one exists.
You can take control of Spring HATEOASs configuration by using @EnableHypermediaSupport.
Note that this will disable the ObjectMapper customization described above.
1.2.2.BUILD-SNAPSHOT
Spring Boot
59
some native Spring support so we also provide auto-configuration support for it in Spring Boot together
with a starter.
To get started with Jersey 2.x just include the spring-boot-starter-jersey as a dependency and
then you need one @Bean of type ResourceConfig in which you register all the endpoints:
@Component
public class JerseyConfig extends ResourceConfig {
public JerseyConfig() {
register(Endpoint.class);
}
}
All the registered endpoints should be @Components with HTTP resource annotations (@GET etc.), e.g.
@Component
@Path("/hello")
public class Endpoint {
@GET
public String message() {
return "Hello";
}
}
Since the Endpoint is a Spring @Component its lifecycle is managed by Spring and you can
@Autowired dependencies and inject external configuration with @Value. The Jersey servlet will be
registered and mapped to /* by default. You can change the mapping by adding @ApplicationPath
to your ResourceConfig.
By default Jersey will be set up as a Servlet in a @Bean of type ServletRegistrationBean
named jerseyServletRegistration. You can disable or override that bean by creating
one of your own with the same name. You can also use a Filter instead of a Servlet
by setting spring.jersey.type=filter (in which case the @Bean to replace or override
is jerseyFilterRegistration). The servlet has an @Order which you can set with
spring.jersey.filter.order. Both the Servlet and the Filter registrations can be given init
parameters using spring.jersey.init.* to specify a map of properties.
There is a Jersey sample so you can see how to set things up. There is also a Jersey 1.x sample.
Note that in the Jersey 1.x sample that the spring-boot maven plugin has been configured to unpack
some Jersey jars so they can be scanned by the JAX-RS implementation (because the sample asks
for them to be scanned in its Filter registration). You may need to do the same if any of your JAXRS resources are packages as nested jars.
1.2.2.BUILD-SNAPSHOT
Spring Boot
60
By default, if the context contains only a single Servlet it will be mapped to /. In the case of multiple
Servlet 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, JettyEmbeddedServletContainerFactory,
or UndertowEmbeddedServletContainerFactory will have been auto-configured.
Note
You usually wont need to be aware of these implementation classes. Most
applications will be auto-configured and the appropriate ApplicationContext and
EmbeddedServletContainerFactory will be created on your behalf.
1.2.2.BUILD-SNAPSHOT
Spring Boot
61
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.
Jetty does not currently work as an embedded container with JSPs.
Undertow does not support JSPs.
There is a JSP sample so you can see how to set things up.
1.2.2.BUILD-SNAPSHOT
Spring Boot
62
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)
Using default security password: 78fa095d-3f4c-48b1-ad50-e24c31d5cf35
Note
If
you
fine
tune
your
logging
configuration,
ensure
that
the
org.springframework.boot.autoconfigure.security category is set to log INFO
messages, otherwise the default password will not be printed.
You can change the password by providing a security.user.password. This and other useful
properties are externalized via SecurityProperties (properties prefix "security").
The default security configuration is implemented in SecurityAutoConfiguration and in the
classes imported from there (SpringBootWebSecurityConfiguration for web security and
AuthenticationManagerConfiguration for authentication configuration which is also relevant in
non-web applications). To switch off the Boot default configuration completely in a web application you
can add a bean with @EnableWebSecurity. To customize it you normally use external properties and
beans of type WebSecurityConfigurerAdapter (e.g. to add form-based login). There are several
secure applications in the Spring Boot samples to get you started with common use cases.
The basic features you get out of the box in a web application are:
An AuthenticationManager bean with in-memory store
SecurityProperties.User for the properties of the user).
and
single
user
(see
Ignored (unsecure) paths for common static resource locations (/css/**, /js/**, /images/**
and **/favicon.ico).
HTTP Basic security for all other endpoints.
Security events published to Springs ApplicationEventPublisher
unsuccessful authentication and access denied).
(successful
and
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 WebSecurityConfigurerAdapter with
@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER).
If the Actuator is also in use, you will find:
The management endpoints are secure even if the application endpoints are unsecure.
Security events are transformed into AuditEvents and published to the AuditService.
1.2.2.BUILD-SNAPSHOT
Spring Boot
63
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 WebSecurityConfigurerAdapter and
use @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER) if you dont want to override the
actuator access rules, or @Order(ManagementServerProperties.ACCESS_OVERRIDE_ORDER)
if you do want to override the actuator access rules.
1.2.2.BUILD-SNAPSHOT
Spring Boot
64
The Spring Framework provides extensive support for working with SQL databases. From direct JDBC
access using JdbcTemplate to complete object relational mapping technologies such as Hibernate.
Spring Data provides an additional level of functionality, creating Repository implementations directly
from interfaces and using conventions to generate queries from your method names.
Note
You need a dependency on spring-jdbc for an embedded database to be auto-configured. In
this example its pulled in transitively via spring-boot-starter-data-jpa.
1.2.2.BUILD-SNAPSHOT
Spring Boot
65
See DataSourceProperties for more of the supported options. Note also that you can configure
any of the DataSource implementation specific properties via spring.datasource.*: refer to the
documentation of the connection pool implementation you are using for more details.
Tip
You often wont need to specify the driver-class-name since Spring boot can deduce it for
most databases from the url.
Note
For a pooling DataSource to be created we need to be able to verify that a valid
Driver class is available, so we check for that before doing anything. I.e. if you set
spring.datasource.driverClassName=com.mysql.jdbc.Driver then that class has to
be loadable.
1.2.2.BUILD-SNAPSHOT
Spring Boot
66
import org.springframework.stereotype.Component;
@Component
public class MyBean {
private final JdbcTemplate jdbcTemplate;
@Autowired
public MyBean(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
// ...
}
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 or
@SpringBootApplication) will be searched.
Any classes annotated with @Entity, @Embeddable or @MappedSuperclass will be considered. A
typical entity class would look something like this:
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;
1.2.2.BUILD-SNAPSHOT
Spring Boot
67
Tip
You can customize entity scanning locations using the @EntityScan annotation. See the
Section 67.4, Separate @Entity definitions from Spring configuration how-to.
Tip
We have barely scratched the surface of Spring Data JPA. For complete details check their
reference documentation.
1.2.2.BUILD-SNAPSHOT
Spring Boot
68
Note
Hibernates own internal property name for this (if you happen to remember it better) is
hibernate.hbm2ddl.auto. You can set it, along with other Hibernate native properties, using
spring.jpa.properties.* (the prefix is stripped before adding them to the entity manager).
Example:
spring.jpa.properties.hibernate.globally_quoted_identifiers=true
1.2.2.BUILD-SNAPSHOT
Spring Boot
69
Spring Data provides additional projects that help you access a variety of NoSQL technologies
including MongoDB, Neo4J, Elasticsearch, Solr, Redis, Gemfire, Couchbase and Cassandra. Spring
Boot provides auto-configuration for Redis, MongoDB, Elasticsearch, Solr and Gemfire; you can make
use of the other projects, but you will need to configure them yourself. Refer to the appropriate reference
documentation at projects.spring.io/spring-data.
29.1 Redis
Redis is a cache, message broker and richly-featured key-value store. Spring Boot offers basic autoconfiguration 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
You can inject an auto-configured RedisConnectionFactory, StringRedisTemplate or vanilla
RedisTemplate instance as you would any other Spring Bean. By default the instance will attempt to
connect to a Redis server using localhost:6379:
@Component
public class MyBean {
private StringRedisTemplate template;
@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.
29.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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
70
@Autowired
public MyBean(MongoDbFactory mongo) {
this.mongo = mongo;
}
// ...
public void example() {
DB db = mongo.getDb();
// ...
}
}
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.
Tip
If you arent using Spring Data Mongo you can inject com.mongodb.Mongo beans instead of
using MongoDbFactory.
You can also declare your own MongoDbFactory or Mongo @Beans if you want to take complete
control of establishing the MongoDB connection.
MongoTemplate
Spring Data Mongo provides a MongoTemplate class that is very similar in its design to Springs
JdbcTemplate. As with JdbcTemplate Spring Boot auto-configures a bean for you to 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 {
private final MongoTemplate mongoTemplate;
@Autowired
public MyBean(MongoTemplate mongoTemplate) {
this.mongoTemplate = mongoTemplate;
}
// ...
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
71
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.*;
public interface CityRepository extends Repository<City, Long> {
Page<City> findAll(Pageable pageable);
City findByNameAndCountryAllIgnoringCase(String name, String country);
}
Tip
For complete details of Spring Data MongoDB, including its rich object mapping technologies,
refer to their reference documentation.
29.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.
29.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-datasolr 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 localhost:8983/solr:
@Component
public class MyBean {
private SolrServer solr;
@Autowired
public MyBean(SolrServer solr) {
this.solr = solr;
}
// ...
}
If you add a @Bean of your own of type SolrServer it will replace the default.
1.2.2.BUILD-SNAPSHOT
Spring Boot
72
29.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
You can inject an auto-configured ElasticsearchTemplate or Elasticsearch Client instance as
you would any other Spring Bean. By default the instance will attempt to connect to a local inmemory server (a NodeClient in Elasticsearch terms), but you can switch to a remote server (i.e.
a TransportClient) by setting spring.data.elasticsearch.clusterNodes to a commaseparated host:port list.
@Component
public class MyBean {
private ElasticsearchTemplate template;
@Autowired
public MyBean(ElasticsearchTemplate template) {
this.template = template;
}
// ...
}
If you add a @Bean of your own of type ElasticsearchTemplate it will replace the default.
1.2.2.BUILD-SNAPSHOT
Spring Boot
73
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.
30.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 wont 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). Spring Boot also auto configures the necessary infrastructure to
send and receive messages.
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
If you are using spring-boot-starter-hornetq the necessary dependencies to connect to
an existing HornetQ instance are provided, as well as the Spring infrastructure to integrate with
JMS. Adding org.hornetq:hornetq-jms-server to your application allows you to use the
embedded mode.
HornetQ configuration is controlled by external configuration properties in spring.hornetq.*. For
example, you might declare the following section in application.properties:
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.
See HornetQProperties for more of the supported options.
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
74
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).
ActiveMQ configuration is controlled by external configuration properties in spring.activemq.*. For
example, you might declare the following section in application.properties:
spring.activemq.broker-url=tcp://192.168.1.210:9876
spring.activemq.user=admin
spring.activemq.password=secret
Sending a message
Springs 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 {
private final JmsTemplate jmsTemplate;
@Autowired
public MyBean(JmsTemplate jmsTemplate) {
this.jmsTemplate = jmsTemplate;
}
// ...
}
Note
JmsMessagingTemplate (new in Spring 4.1) can be injected in a similar manner.
Receiving a message
When the JMS infrastructure is present, any bean can be annotated with @JmsListener to create
a listener endpoint. If no JmsListenerContainerFactory has been defined, a default one is
configured automatically.
1.2.2.BUILD-SNAPSHOT
Spring Boot
75
1.2.2.BUILD-SNAPSHOT
Spring Boot
76
The Spring Framework provides an easy abstraction for sending email using the JavaMailSender
interface and Spring Boot provides auto-configuration for it as well as a starter module.
Tip
Check the reference documentation for a detailed explanation of how you can use
JavaMailSender.
If spring.mail.host and the relevant libraries (as defined by spring-boot-starter-mail) are
available, a default JavaMailSender is created if none exists. The sender can be further customized
by configuration items from the spring.mail namespace, see the MailProperties for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
77
Spring Boot supports distributed JTA transactions across multiple XA resources using either an Atomkos
or Bitronix embedded transaction manager. JTA transactions are also supported when deploying to a
suitable Java EE Application Server.
When a JTA environment is detected, Springs JtaTransactionManager will be used to manage
transactions. Auto-configured JMS, DataSource and JPA beans will be upgraded to support XA
transactions. You can use standard Spring idioms such as @Transactional to participate in a
distributed transaction. If you are within a JTA environment and still want to use local transactions you
can set the spring.jta.enabled property to false to disable the JTA auto-configuration.
1.2.2.BUILD-SNAPSHOT
Spring Boot
78
1.2.2.BUILD-SNAPSHOT
Spring Boot
79
Spring Integration provides abstractions over messaging and also other transports such
as HTTP, TCP etc. If Spring Integration is available on your classpath it will be
initialized through the @EnableIntegration annotation. Message processing statistics will
be published over JMX if 'spring-integration-jmx' is also on the classpath. See the
IntegrationAutoConfiguration class for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
80
Java Management Extensions (JMX) provide a standard mechanism to monitor and manage
applications. By default Spring Boot will create an MBeanServer with bean id mbeanServer and
expose any of your beans that are annotated with Spring JMX annotations (@ManagedResource,
@ManagedAttribute, @ManagedOperation).
See the JmxAutoConfiguration class for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
81
Spring Boot provides a number of useful tools for testing your application. The spring-bootstarter-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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
82
@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 @WebIntegrationTest or @WebAppConfiguration
annotations. (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
@WebIntegrationTest. 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)
@WebIntegrationTest
public class CityRepositoryIntegrationTests {
@Autowired
CityRepository repository;
RestTemplate restTemplate = new TestRestTemplate();
// ... interact with the running server
}
Note
Springs 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 @WebIntegrationTest as colonor equals-separated name-value pairs, e.g. @WebIntegrationTest("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)
@WebIntegrationTest({"server.port=0", "management.port=0"})
public class SomeIntegrationTests {
// ...
}
See Section 64.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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
83
Note
The annotations described above can be used with Spock, i.e. you can annotate your
Specification with @WebIntegrationTest to suit the needs of your tests.
ConfigFileApplicationContextInitializer
ConfigFileApplicationContextInitializer is an ApplicationContextInitializer that
can apply to your tests to load Spring Boot application.properties files. You can use this when
you dont 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:
EnvironmentTestUtils.addEnvironment(env, "org=Spring", "name=Boot");
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;
import static org.hamcrest.Matchers.*;
import static org.junit.Assert.*;
1.2.2.BUILD-SNAPSHOT
Spring Boot
84
TestRestTemplate
TestRestTemplate is a convenience subclass of Springs RestTemplate that is useful in integration
tests. You can get a vanilla template or one that sends Basic HTTP authentication (with a username
and password). In either case the template will behave in a test-friendly way: not following redirects (so
you can assert the response location), ignoring cookies (so the template is stateless), and not throwing
exceptions on server-side errors. It is recommended, but not mandatory, to use Apache HTTP Client
(version 4.3.2 or better), and if you have that on your classpath the TestRestTemplate will respond
by configuring the client appropriately.
public class MyTest {
RestTemplate template = new TestRestTemplate();
@Test
public void testRequest() throws Exception {
HttpHeaders headers = template.getForEntity("http://myhost.com", String.class).getHeaders();
assertThat(headers.getLocation().toString(), containsString("myotherhost"));
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
85
If you work in a company that develops shared libraries, or if you work on an open-source or commercial
library, you might want to develop your own auto-configuration. Auto-configuration classes can be
bundled in external jars and still be picked-up by Spring Boot.
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 metadata 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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
86
Note
@Conditional annotations are processed when @Configuration classes are parsed. Autoconfigure @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.
Property conditions
The @ConditionalOnProperty annotation allows configuration to be included based on a Spring
Environment property. Use the prefix and name attributes to specify the property that should be
checked. By default any property that exists and is not equal to false will be matched. You can also
create more advanced checks using the havingValue and matchIfMissing attributes.
Resource conditions
The @ConditionalOnResource annotation allows configuration to be included only when a specific
resource is present. Resources can be specified using the usual Spring conventions, for example,
file:/home/user/test.dat.
1.2.2.BUILD-SNAPSHOT
Spring Boot
87
Spring Boot provides WebSockets auto-configuration for embedded Tomcat (8 and 7), Jetty 9 and
Undertow. If youre deploying a war file to a standalone container, Spring Boot assumes that the
container will be responsible for the configuration of its WebSocket support.
Spring Framework provides rich WebSocket support that can be easily accessed via the springboot-starter-websocket module.
1.2.2.BUILD-SNAPSHOT
Spring Boot
88
If you want to learn more about any of the classes discussed in this section you can check out the Spring
Boot API documentation or you can browse the source code directly. If you have specific questions,
take a look at the how-to section.
If you are comfortable with Spring Boots core features, you can carry on and read about productionready features.
1.2.2.BUILD-SNAPSHOT
Spring Boot
89
The spring-boot-actuator module provides all of Spring Boots production-ready features. The
simplest way to enable the features is to add a dependency to the spring-boot-starter-actuator
Starter POM.
Definition of Actuator
An actuator is a manufacturing term, referring to a mechanical device for moving or controlling
something. Actuators can generate a large amount of motion from a small change.
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>
1.2.2.BUILD-SNAPSHOT
Spring Boot
91
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.
The following endpoints are available:
ID
Description
Sensitive
autoconfig
Displays an auto-configuration report showing all autoconfiguration candidates and the reason why they were or
were not applied.
true
beans
true
configprops
true
dump
true
env
true
health
info
false
metrics
true
mappings
true
shutdown
true
trace
true
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).
1.2.2.BUILD-SNAPSHOT
Spring Boot
92
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.
By default, all endpoints except for shutdown are enabled. If you prefer to specifically opt-in endpoint
enablement you can use the endpoints.enabled property. For example, the following will disable
all endpoints except for info:
endpoints.enabled=false
endpoints.info.enabled=true
Auto-configured HealthIndicators
The following HealthIndicators are auto-configured by Spring Boot when appropriate:
Name
Description
DiskSpaceHealthIndicator
Checks for low disk space.
DataSourceHealthIndicator
Checks that a connection to DataSource can be obtained.
MongoHealthIndicator
Checks that a Mongo database is up.
RabbitHealthIndicator
Checks that a Rabbit server is up.
RedisHealthIndicator
Checks that a Redis server is up.
1.2.2.BUILD-SNAPSHOT
Spring Boot
93
Name
Description
SolrHealthIndicator
Checks that a Solr server is up.
In addition to Spring Boots predefined Status types, it is also possible for Health to return a
custom Status that represents a new system state. In such cases a custom implementation of the
HealthAggregator interface also needs to be provided, or the default implementation has to be
configured using the management.health.status.order configuration property.
For example, assuming a new Status with code FATAL is being used in one of your
HealthIndicator implementations. To configure the severity order add the following to your
application properties:
management.health.status.order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP
You might also want to register custom status mappings with the HealthMvcEndpoint
if you access the health endpoint over HTTP. For example you could map FATAL to
HttpStatus.SERVICE_UNAVAILABLE.
1.2.2.BUILD-SNAPSHOT
Spring Boot
94
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.
Note
If you dont use the starter parent, in your pom.xml you need (inside the <build/> element):
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
You can then refer to your Gradle projects properties via placeholders, e.g.
info.build.name=${name}
info.build.description=${description}
info.build.version=${version}
1.2.2.BUILD-SNAPSHOT
Spring Boot
95
A similar gradle-git plugin is also available for Gradle users, although a little more work is required
to generate the properties file.
1.2.2.BUILD-SNAPSHOT
Spring Boot
96
If you are developing a Spring MVC application, Spring Boot Actuator will auto-configure all enabled
endpoints to be exposed over HTTP. The default convention is to use the id of the endpoint as the URL
path. For example, health is exposed as /health.
Tip
If you dont use Spring Security and your HTTP endpoints are exposed publicly, you should
carefully consider which endpoints you enable. See Section 40.1, Customizing endpoints for
details of how you can set endpoints.enabled to false then opt-in only specific endpoints.
The application.properties example above will change the endpoint from /{id} to /manage/
{id} (e.g. /manage/info).
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:
1.2.2.BUILD-SNAPSHOT
Spring Boot
97
management.security.enabled=false
(If you dont 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.)
1.2.2.BUILD-SNAPSHOT
Spring Boot
98
Java Management Extensions (JMX) provide a standard mechanism to monitor and manage
applications. By default Spring Boot will expose management endpoints as JMX MBeans under the
org.springframework.boot domain.
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 dont want Spring Boot to configure it, simply set the
endpoints.jolokia.enabled property to false:
endpoints.jolokia.enabled=false
1.2.2.BUILD-SNAPSHOT
Spring Boot
99
Spring Boot supports an integrated Java shell called CRaSH. You can use CRaSH to ssh or telnet
into your running application. To enable remote shell support add a dependency to spring-bootstarter-remote-shell:
<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.
$ ssh -p 2000 user@localhost
user@localhost's password:
.
____
_
__ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.2.2.BUILD-SNAPSHOT) on myhost
Type help for a list of commands. Spring boot provides metrics, beans, autoconfig and endpoint
commands.
1.2.2.BUILD-SNAPSHOT
Spring Boot
100
classpath*:/commands/**
classpath*:/crash/commands/**
Tip
You can change the search path by settings a shell.commandPathPatterns property.
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:
Attribute Name
Description
spring.boot.version
spring.version
spring.beanfactory
spring.environment
1.2.2.BUILD-SNAPSHOT
Spring Boot
101
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). Spring Boot Actuator also
provides a PublicMetrics interface that you can implement to expose metrics that you cannot record
via one of those two mechanisms. Look at SystemPublicMetrics for an example.
Metrics for all HTTP requests are automatically recorded, so if you hit the metrics endpoint you should
see a response similar to this:
{
"counter.status.200.root": 20,
"counter.status.200.metrics": 3,
"counter.status.200.star-star": 5,
"counter.status.401.root": 4,
"gauge.response.star-star": 6,
"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,
"instance.uptime": 489782,
"datasource.primary.active": 5,
"datasource.primary.usage": 0.25
}
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 double asterix (star-star) comes from a request matched by Spring
MVC as /** (normally a static resource).
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
102
1.2.2.BUILD-SNAPSHOT
Spring Boot
103
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.actuate.metrics.CounterService;
import org.springframework.stereotype.Service;
@Service
public class MyService {
private final CounterService counterService;
@Autowired
public MyService(CounterService counterService) {
this.counterService = counterService;
}
public void exampleMethod() {
this.counterService.increment("services.system.myservice.invoked");
}
}
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 Aimonettis Blog.
1.2.2.BUILD-SNAPSHOT
Spring Boot
104
Users can create Dropwizard metrics by prefixing their metric names with the appropriate type (e.g.
histogram.*, meter.*).
1.2.2.BUILD-SNAPSHOT
Spring Boot
105
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).
1.2.2.BUILD-SNAPSHOT
Spring Boot
106
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,
...
}]
1.2.2.BUILD-SNAPSHOT
Spring Boot
107
In Spring Boot Actuator you can find a couple of classes to create files that are useful for process
monitoring:
ApplicationPidFileWriter creates a file containing the application PID (by default in the
application directory with the file name application.pid).
EmbeddedServerPortFileWriter creates a file (or files) containing the ports of the embedded
server (by default in the application directory with the file name application.port).
These writers are not activated by default, but you can enable them in one of the ways described below.
47.2 Programmatically
You can also activate a listener by invoking the SpringApplication.addListeners() method
and passing the appropriate Writer object. This method also allows you to customize the file name
and path via the Writer constructor.
1.2.2.BUILD-SNAPSHOT
Spring Boot
108
If you want to explore some of the concepts discussed in this chapter, you can take a look at the actuator
sample applications. You also might want to read about graphing tools such as Graphite.
Otherwise, you can continue on, to read about cloud deployment options or jump ahead for some indepth information about Spring Boots build tool plugins.
1.2.2.BUILD-SNAPSHOT
Spring Boot
109
Cloud Foundry provides default buildpacks that come into play if no other buildpack is specified. The
Cloud Foundry Java buildpack has excellent support for Spring applications, including Spring Boot. You
can deploy stand-alone executable jar applications, as well as traditional .war packaged applications.
Once youve 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.
$ cf push acloudyspringtime -p target/demo-0.0.1-SNAPSHOT.jar
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.
At this point cf will start uploading 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
requested state
instances
memory
disk
urls
started
1/1
512M
1G
acloudyspringtime.cfapps.io
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 acloudyspringtime.cfapps.io/.
1.2.2.BUILD-SNAPSHOT
Spring Boot
111
is due to Cloud Foundrys polyglot (any language and platform can be supported as a buildpack) nature;
process-scoped environment variables are language agnostic.
Environment variables dont always make for the easiest API so Spring Boot automatically extracts them
and flattens the data into properties that can be accessed through Springs Environment abstraction:
@Component
class MyBean implements EnvironmentAware {
private String instanceId;
@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 Connectors project is a better fit for tasks such as configuring a DataSource.
Spring Boot includes auto-configuration support and a spring-boot-starter-cloudconnectors starter POM.
1.2.2.BUILD-SNAPSHOT
Spring Boot
112
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. Heres the Procfile for our starter
REST application:
web: java -Dserver.port=$PORT -jar target/demo-0.0.1-SNAPSHOT.jar
Spring Boot makes -D arguments available as properties accessible from a Spring Environment
instance. The server.port configuration property is fed to the embedded Tomcat, Jetty or Undertow
instance which then uses 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.
$ git push heroku master
Initializing repository, done.
Counting objects: 95, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (78/78), done.
Writing objects: 100% (95/95), 8.66 MiB | 606.00 KiB/s, done.
Total 95 (delta 31), reused 0 (delta 0)
----->
----->
----->
----->
----->
1.2.2.BUILD-SNAPSHOT
Spring Boot
113
To [email protected]:agile-sierra-1405.git
* [new branch]
master -> master
1.2.2.BUILD-SNAPSHOT
Spring Boot
114
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:
The basic model is to:
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
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}
Theres 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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
115
Google App Engine is tied to the Servlet 2.5 API, so you cant deploy a Spring Application there without
some modifications. See the Servlet 2.5 section of this guide.
1.2.2.BUILD-SNAPSHOT
Spring Boot
116
Check out the Cloud Foundry, Heroku and Openshift web sites for more information about the kinds of
features that a PaaS can offer. These are just three of the most popular Java PaaS providers, since
Spring Boot is so amenable to cloud-based deployment youre free to consider other providers as well.
The next section goes on to cover the Spring Boot CLI; or you can jump ahead to read about build
tool plugins.
1.2.2.BUILD-SNAPSHOT
Spring Boot
117
The Spring Boot CLI can be installed manually; using GVM (the Groovy Environment Manually) or using
Homebrew or MacPorts if you are an OSX user. See Section 10.2, Installing the Spring Boot CLI in
the Getting started section for comprehensive installation instructions.
1.2.2.BUILD-SNAPSHOT
Spring Boot
119
Once you have installed the CLI you can run it by typing spring. If you run spring without any
arguments, a simple help screen is displayed:
$ spring
usage: spring [--help] [--version]
<command> [<args>]
Available commands are:
run [options] <files> [--] [args]
Run a spring groovy script
... more command help is shown here
You can use help to get more details about any of the supported commands. For example:
$ spring help run
spring run - Run a spring groovy script
usage: spring run [options] <files> [--] [args]
Option
-------autoconfigure [Boolean]
--classpath, -cp
-e, --edit
--no-guess-dependencies
--no-guess-imports
-q, --quiet
-v, --verbose
--watch
Description
----------Add autoconfigure compiler
transformations (default: true)
Additional classpath entries
Open the file with the default system
editor
Do not attempt to guess dependencies
Do not attempt to guess imports
Quiet logging
Verbose logging of dependency
resolution
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.2.2.BUILD-SNAPSHOT
1.2.2.BUILD-SNAPSHOT
Spring Boot
120
To pass command line arguments to the application, you need to use a -- to separate them from the
spring command arguments, e.g.
$ spring run hello.groovy -- --server.port=9000
To set JVM command line arguments you can use the JAVA_OPTS environment variable, e.g.
$ JAVA_OPTS=-Xmx1024m spring run hello.groovy
Grabs
JdbcTemplate,
NamedParameterJdbcTemplate,
DataSource
JDBC Application.
@EnableJms
JMS Application.
@EnableCaching
Caching abstraction.
@Test
JUnit.
@EnableRabbit
RabbitMQ.
@EnableReactor
Project Reactor.
extends Specification
Spock test.
@EnableBatchProcessing
Spring Batch.
@MessageEndpoint
@EnableIntegrationPatterns
Spring Integration.
@EnableDeviceResolver
Spring Mobile.
@Controller @RestController
@EnableWebMvc
@EnableWebSecurity
Spring Security.
@EnableTransactionManagement
Tip
See subclasses of CompilerAutoConfiguration in the Spring Boot CLI source code to
understand exactly how customizations are applied.
1.2.2.BUILD-SNAPSHOT
Spring Boot
121
1.2.2.BUILD-SNAPSHOT
Spring Boot
122
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 tests.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:
$ spring test app/*.groovy test/*.groovy
The resulting jar will contain the classes produced by compiling the application and all of the applications
dependencies so that it can then be run using java -jar. The jar file will also contain entries from the
applications 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
public/**, resources/**, static/**, templates/**, META-INF/**, *
1.2.2.BUILD-SNAPSHOT
Spring Boot
123
This creates a my-project directory with a Maven-based project using spring-boot-starterweb and spring-boot-starter-data-jpa. You can list the capabilities of the service using the -list flag
$ spring init --list
=======================================
Capabilities of https://start.spring.io
=======================================
Available dependencies:
----------------------actuator - Actuator: Production ready features to help you monitor and manage your application
...
web - Web: Support for full-stack web development, including Tomcat and spring-webmvc
websocket - Websocket: Support for WebSocket development
ws - WS: Support for Spring Web Services
Available project types:
-----------------------gradle-build - Gradle Config [format:build, build:gradle]
gradle-project - Gradle Project [format:project, build:gradle]
maven-build - Maven POM [format:build, build:maven]
maven-project - Maven Project [format:project, build:maven] (default)
...
The init command supports many options, check the help output for more details. For instance, the
following command creates a gradle project using Java 8 and war packaging:
$ spring init --build=gradle --java-version=1.8 --dependencies=websocket --packaging=war sample-app.zip
Using service at https://start.spring.io
Content saved to 'sample-app.zip'
From inside the embedded shell you can run other commands directly:
$ version
Spring CLI v1.2.2.BUILD-SNAPSHOT
1.2.2.BUILD-SNAPSHOT
Spring Boot
124
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.
In addition to installing the artifacts identified by the coordinates you supply, all of the artifacts'
dependencies will also be installed.
To uninstall a dependency use the uninstall command. As with the install command, it takes one
or more sets of artifact coordinates in the format group:artifact:version. For example:
$ spring uninstall com.example:spring-boot-cli-extension:1.0.0.RELEASE
It will uninstall the artifacts identified by the coordinates you supply and their dependencies.
To uninstall all additional dependencies you can use the --all option. For example:
$ spring uninstall --all
1.2.2.BUILD-SNAPSHOT
Spring Boot
125
Spring Framework 4.0 has native support for a beans{} DSL (borrowed from Grails), and you can
embed bean definitions in your Groovy application scripts using the same format. This is sometimes a
good way to include external features like middleware declarations. For example:
@Configuration
class Application implements CommandLineRunner {
@Autowired
SharedService service
@Override
void run(String... args) {
println service.message
}
}
import my.company.SharedService
beans {
service(SharedService) {
message = "Hello World"
}
}
You can mix class declarations with beans{} in the same file as long as they stay at the top level, or
you can put the beans DSL in a separate file if you prefer.
1.2.2.BUILD-SNAPSHOT
Spring Boot
126
There are some sample groovy scripts available from the GitHub repository that you can use to try out
the Spring Boot CLI. There is also extensive javadoc throughout the source code.
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 Boots Build
tool plugins that you can use with Gradle or Maven.
1.2.2.BUILD-SNAPSHOT
Spring Boot
127
The Spring Boot Maven Plugin provides Spring Boot support in Maven, allowing you to package
executable jar or war archives and run an application in-place. To use it you must be using Maven
3.2 (or better).
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 dont 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:
$ mvn package spring-boot:repackage
$ ls target/*.jar
target/myproject-1.0.0.jar target/myproject-1.0.0.jar.original
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>
1.2.2.BUILD-SNAPSHOT
Spring Boot
129
<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 dont 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:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- ... -->
<packaging>war</packaging>
<!-- ... -->
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<!-- ... -->
</dependencies>
</project>
Tip
See the Section 74.1, Create a deployable war file section for more details on how to create
a deployable war file.
Advanced configuration options and examples are available in the plugin info page.
1.2.2.BUILD-SNAPSHOT
Spring Boot
130
The Spring Boot Gradle Plugin provides Spring Boot support in Gradle, allowing you to package
executable jar or war archives, run Spring Boot applications and omit version information from your
build.gradle file for blessed dependencies.
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"
}
// ...
}
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")
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
131
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 Boots defaults, and can be used to override version
numbers if necessary.
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 dont want exclusion rules automatically applied you can use the following configuration:
springBoot {
applyExcludeRules=false
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
132
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 {
jcenter()
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")
...
}
Tip
See the Section 74.1, Create a deployable war file section for more details on how to create
a deployable war file.
By default, 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. Making
static classpath resources reloadable means that bootRun does not use the output of the
processResources task, i.e., when invoked using bootRun, your application will use the resources
in their unprocessed form.
1.2.2.BUILD-SNAPSHOT
Spring Boot
133
You can disable the direct use of your static classpath resources. This will mean that the resources
are no longer reloadable but the output of the processResources task will be used. To do so, set
addResources on the bootRun task to false:
bootRun {
addResources = false
}
Description
enabled
mainClass
classifier
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.
customConfiguration
1.2.2.BUILD-SNAPSHOT
Spring Boot
134
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
providedConfiguration
backupSource
customConfiguration
layout
1.2.2.BUILD-SNAPSHOT
Spring Boot
135
Name
Description
requiresUnpack
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
136
uploadArchives {
repositories {
mavenDeployer {
pom {
project {
parent {
groupId "org.springframework.boot"
artifactId "spring-boot-starter-parent"
version "1.2.2.BUILD-SNAPSHOT"
}
}
}
}
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
137
If you want to use a build tool other than Maven or Gradle, you will likely need to develop your own
plugin. Executable jars need to follow a specific format and certain entries need to be written in an
uncompressed form (see the executable jar format section in the appendix for details).
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
138
If youre interested in how the build tool plugins work you can look at the spring-boot-tools module
on GitHub. More technical details of the executable jar format are covered in the appendix.
If you have specific build-related questions you can check out the how-to guides.
1.2.2.BUILD-SNAPSHOT
Spring Boot
139
by
setting
context.initializer.classes
or
1.2.2.BUILD-SNAPSHOT
Spring Boot
141
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 22.4, Application events and listeners in the Spring Boot
features section for a complete list.
1.2.2.BUILD-SNAPSHOT
Spring Boot
142
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
143
server.port=${port:8080}
Tip
If you are inheriting from the spring-boot-starter-parent POM, the default filter token
of the maven-resources-plugins has been changed from ${*} to @ (i.e. @maven.token@
instead of ${maven.token}) to prevent conflicts with Spring-style placeholders. If you have
enabled maven filtering for the application.properties directly, you may want to also
change the default filter token to use other delimiters.
Note
In this specific case the port binding 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.
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.
The example YAML above corresponds to an application.properties file
spring.application.name=cruncher
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost/test
server.port=9000
See Section 23.6, Using YAML instead of Properties in the Spring Boot features section for more
information about YAML.
In Spring Boot you can also set the active profile in application.properties, e.g.
1.2.2.BUILD-SNAPSHOT
Spring Boot
144
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 24, Profiles in the Spring Boot features section for more information.
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
145
1.2.2.BUILD-SNAPSHOT
Spring Boot
146
1.2.2.BUILD-SNAPSHOT
Spring Boot
147
protocol.setKeystoreFile(keystore.getAbsolutePath());
protocol.setKeystorePass("changeit");
protocol.setTruststoreFile(truststore.getAbsolutePath());
protocol.setTruststorePass("changeit");
protocol.setKeyAlias("apitester");
return connector;
}
catch (IOException ex) {
throw new IllegalStateException("can't access keystore: [" + "keystore"
+ "] or truststore: [" + "keystore" + "]", ex);
}
}
If your proxy uses different headers you can customize the valves configuration by adding some entries
to application.properties, e.g.
server.tomcat.remote_ip_header=x-your-remote-ip-header
server.tomcat.protocol_header=x-your-protocol-header
The valve is also configured with a default regular expression that matches internal proxies that are to
be trusted. By default, IP addresses in 10/8, 192.168/16, 169.254/16 and 127/8 are trusted. You can
customize the valves configuration by adding an entry to application.properties, e.g.
server.tomcat.internal_proxies=192\\.168\\.\\d{1,3}\\.\\d{1,3}
Note
The double backslashes are only required when youre using a properties file for configuration.
If you are using YAML, single backslashes are sufficient and a value thats equivalent to the one
shown above would be 192\.168\.\d{1,3}\.\d{1,3}.
Alternatively, you can take complete control of the configuration of the RemoteIpValve by configuring
and adding it in a TomcatEmbeddedServletContainerFactory bean.
1.2.2.BUILD-SNAPSHOT
Spring Boot
148
<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.2.2.BUILD-SNAPSHOT")
compile("org.springframework.boot:spring-boot-starter-jetty:1.2.2.BUILD-SNAPSHOT")
// ...
}
Example in Gradle:
configurations {
compile.exclude module: "spring-boot-starter-tomcat"
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web:1.2.2.BUILD-SNAPSHOT")
compile 'org.springframework.boot:spring-boot-starter-undertow:1.2.2.BUILD-SNAPSHOT")
1.2.2.BUILD-SNAPSHOT
Spring Boot
149
// ...
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
150
configurations.all {
resolutionStrategy {
eachDependency {
if (it.requested.group == 'org.apache.tomcat.embed') {
it.useVersion '7.0.57'
}
}
}
}
dependencies {
compile 'org.springframework.boot:spring-boot-starter-web'
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
151
}
}
dependencies {
compile ('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
compile ('org.springframework.boot:spring-boot-starter-jetty') {
exclude group: 'org.eclipse.jetty.websocket'
}
}
This bean will register any @ServerEndpoint annotated beans with the underlying WebSocket
container. When deployed to a standalone servlet container this role is performed by a servlet container
initializer and the ServerEndpointExporter bean is not required.
When set to on Tomcat will compress responses with a length that is at least 2048 bytes. This limit can
be configured by specifying an integer value rather than on, e.g.:
server.tomcat.compression: 4096
By default Tomcat will only compress responses with certain MIME types (text/html, text/xml,
and text/plain). You can customize this using the server.tomcat.compressableMimeTypes
property, e.g.:
server.tomcat.compressableMimeTypes=application/json,application/xml
1.2.2.BUILD-SNAPSHOT
the
Spring Boot
spring.http.gzip.*
properties.
See
152
As long as MyThing can be serialized by Jackson2 (e.g. a normal POJO or Groovy object) then
localhost:8080/thing will serve a JSON representation of it by default. Sometimes in a browser
you might see XML responses because browsers tend to send accept headers that prefer XML.
You may also want to add a dependency on Woodstox. Its faster than the default Stax implementation
provided by the JDK and also adds pretty print support and improved namespace handling:
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
</dependency>
If Jacksons XML extension is not available, JAXB (provided by default in the JDK) will be used, with
the additional requirement to have MyThing annotated as @XmlRootElement:
@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).
1.2.2.BUILD-SNAPSHOT
Spring Boot
153
MapperFeature.DEFAULT_VIEW_INCLUSION is disabled
DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES is disabled
Spring Boot has also some features to make it easier to customize this behavior.
You can configure the ObjectMapper and XmlMapper instances using the environment. Jackson
provides an extensive suite of simple on/off features that can be used to configure various aspects of
its processing. These features are described in five enums in Jackson which map onto properties in
the environment:
Jackson enum
Environment property
com.fasterxml.jackson.databind.DeserializationFeature
spring.jackson.deserialization.<feature_name>=tru
false
com.fasterxml.jackson.core.JsonGenerator.Feature
spring.jackson.generator.<feature_name>=true|
false
com.fasterxml.jackson.databind.MapperFeature
spring.jackson.mapper.<feature_name>=true|
false
com.fasterxml.jackson.core.JsonParser.Feature
spring.jackson.parser.<feature_name>=true|
false
com.fasterxml.jackson.databind.SerializationFeature
spring.jackson.serialization.<feature_name>=true|
false
For
example,
to
enable
pretty
print,
set
spring.jackson.serialization.indent_output=true. Note that, thanks to the use of relaxed
binding, the case of indent_output doesnt have to match the case of the corresponding enum
constant which is INDENT_OUTPUT.
If you want to replace the default ObjectMapper completely, define a @Bean of that type and mark
it as @Primary.
Defining a @Bean of type Jackson2ObjectMapperBuilder will allow you to customize both
default ObjectMapper and XmlMapper (used in MappingJackson2HttpMessageConverter and
MappingJackson2XmlHttpMessageConverter respectively).
Another
way
to
customize
Jackson
is
to
add
beans
of
type
com.fasterxml.jackson.databind.Module to your context. They will be registered with every
bean of type ObjectMapper, providing a global mechanism for contributing custom modules when you
add new features to your application.
Finally, if you provide any @Beans of type MappingJackson2HttpMessageConverter then they
will replace the default value in the MVC configuration. Also, a convenience bean is provided of type
HttpMessageConverters (always available if you use the default MVC configuration) which has
some useful methods to access the default and user-enhanced message converters.
See also the Section 65.4, Customize the @ResponseBody rendering section and the
WebMvcAutoConfiguration source code for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
154
1.2.2.BUILD-SNAPSHOT
Spring Boot
155
1.2.2.BUILD-SNAPSHOT
Spring Boot
156
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.
Check
out
WebMvcAutoConfiguration,
ThymeleafAutoConfiguration,
FreeMarkerAutoConfiguration,
GroovyTemplateAutoConfiguration
and
VelocityAutoConfiguration
1.2.2.BUILD-SNAPSHOT
Spring Boot
157
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:
${PID} the current process ID.
${LOG_FILE} if logging.file was set in Boots external configuration.
${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).
1.2.2.BUILD-SNAPSHOT
Spring Boot
158
1.2.2.BUILD-SNAPSHOT
Spring Boot
159
datasource.mine.jdbcUrl=jdbc:h2:mem:mydb
datasource.mine.user=sa
datasource.mine.poolSize=30
See Section 28.1, Configure a DataSource in the Spring Boot features section and the
DataSourceAutoConfiguration class for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
160
(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.
See HibernateJpaAutoConfiguration and JpaBaseConfiguration for more details.
1.2.2.BUILD-SNAPSHOT
Spring Boot
161
.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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
162
An SQL database can be initialized in different ways depending on what your stack is. Or of course you
can do it manually as long as the database is a separate process.
1.2.2.BUILD-SNAPSHOT
Spring Boot
163
and in this case will switch the fail fast setting to false (errors are logged but do not prevent the application
from starting). This is because the scripts are known to be reliable and generally do not contain bugs, so
errors are ignorable, and ignoring them makes the scripts idempotent. You can switch off the initialization
explicitly using spring.batch.initializer.enabled=false.
on
startup,
add
the
1.2.2.BUILD-SNAPSHOT
Spring Boot
164
1.2.2.BUILD-SNAPSHOT
Spring Boot
165
1.2.2.BUILD-SNAPSHOT
Spring Boot
166
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.
If you experience instantiation issues (e.g. using JDBC or JPA for the user detail
store) it might be worth extracting the AuthenticationManagerBuilder callback into a
GlobalAuthenticationConfigurerAdapter (in the init() method so it happens before the
authentication manager is needed elsewhere), e.g.
@Configuration
public class AuthenticationManagerConfiguration extends
GlobalAuthenticationConfigurerAdapter {
@Override
public void init(AuthenticationManagerBuilder auth) {
auth.inMemoryAuthentication() // ... etc.
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
167
server that handles the real SSL termination). The standard behavior is determined by the presence or
absence of certain request headers (x-forwarded-for and x-forwarded-proto), whose names
are conventional, so it should work with most front end proxies. You can switch on the valve by adding
some entries to application.properties, e.g.
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_ssl to true in
application.properties.
1.2.2.BUILD-SNAPSHOT
Spring Boot
168
to
false.
See
to
false.
See
to
false.
See
1.2.2.BUILD-SNAPSHOT
Spring Boot
169
<artifactId>springloaded</artifactId>
<version>1.2.0.RELEASE</version>
</dependency>
</dependencies>
</plugin>
This normally works pretty well with Eclipse and IntelliJ as long as they have their build configuration
aligned with the Maven defaults (Eclipse m2e does this out of the box).
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.
1.2.2.BUILD-SNAPSHOT
Spring Boot
170
Note
This only works if your Maven project inherits (directly or indirectly) from springboot-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.
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.2.2.BUILD-SNAPSHOT</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
1.2.2.BUILD-SNAPSHOT
Spring Boot
171
Two jars are produced, the default one, and an executable one using the Boot plugin with classifier
exec.
For Gradle users the steps are similar. Example:
bootRepackage {
classifier = 'exec'
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
172
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']
}
task('execJar', type:Jar, dependsOn: 'jar') {
baseName = 'spring-boot-sample-profile'
version = '0.0.0'
1.2.2.BUILD-SNAPSHOT
Spring Boot
173
classifier = 'exec'
from sourceSets.main.output
}
bootRepackage {
withJarTask = tasks['execJar']
}
Command line:
$ gradle run --debug-jvm
1.2.2.BUILD-SNAPSHOT
Spring Boot
174
The Actuator Sample has a build.xml that should work if you run it with
$ ant -lib <path_to>/ivy-2.2.jar
1.2.2.BUILD-SNAPSHOT
Spring Boot
175
The next step is to update your build configuration so that your project produces a war file rather than a
jar file. If youre using Maven and using spring-boot-starter-parent (which configures Mavens
war plugin for you) all you need to do is modify pom.xml to change the packaging to war:
<packaging>war</packaging>
If youre using Gradle, you need to modify build.gradle to apply the war plugin to the project:
apply plugin: 'war'
The final step in the process is to ensure that the embedded servlet container doesnt interfere with
the servlet container to which the war file will be deployed. To do so, you need to mark the embedded
servlet container dependency as provided.
If youre using Maven:
<dependencies>
<!-- -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
<!-- -->
</dependencies>
If youre using the Spring Boot build tools, marking the embedded servlet container dependency as
provided will produce an executable war file with the provided dependencies packaged in a libprovided directory. This means that, in addition to being deployable to a servlet container, you can
also run your application using java -jar on the command line.
1.2.2.BUILD-SNAPSHOT
Spring Boot
176
Tip
Take a look at Spring Boots sample applications for a Maven-based example of the abovedescribed configuration.
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.
Static resources can be moved to /public (or /static or /resources or /META-INF/resources)
in the classpath root. Same for messages.properties (Spring Boot detects this automatically in the
root of the classpath).
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:
A @Bean of type Servlet or ServletRegistrationBean installs that bean in the container as if
it was a <servlet/> and <servlet-mapping/> in web.xml.
A @Bean of type Filter or FilterRegistrationBean behaves similarly (like a <filter/> and
<filter-mapping/>.
1.2.2.BUILD-SNAPSHOT
Spring Boot
177
If you use logback, you will also need to tell Weblogic to prefer the packaged version rather than the
version that pre-installed with the server. You can do this by adding a WEB-INF/weblogic.xml file
with the following contents:
1.2.2.BUILD-SNAPSHOT
Spring Boot
178
1.2.2.BUILD-SNAPSHOT
Spring Boot
179
</web-app>
In this example we are using a single application context (the one created by the context listener)
and attaching it to the DispatcherServlet using an init parameter. This is normal in a Spring Boot
application (you normally only have one application context).
1.2.2.BUILD-SNAPSHOT
Spring Boot
180
Part X. Appendices
===================================================================
COMMON SPRING BOOT PROPERTIES
This sample file is provided as a guideline. Do NOT copy it in its
entirety to your own application.
^^^
===================================================================
1.2.2.BUILD-SNAPSHOT
Spring Boot
182
1.2.2.BUILD-SNAPSHOT
Spring Boot
183
1.2.2.BUILD-SNAPSHOT
Spring Boot
184
# INTERNATIONALIZATION (MessageSourceAutoConfiguration)
spring.messages.basename=messages
spring.messages.cache-seconds=-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.filter-order=0
security.headers.xss=false
security.headers.cache=false
security.headers.frame=false
security.headers.content-type=false
security.headers.hsts=all # none / domain / all
security.sessions=stateless # always / never / if_required / stateless
security.ignored=false
# DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
spring.datasource.name= # name of the data source
spring.datasource.initialize=true # populate using data.sql
spring.datasource.schema= # a schema (DDL) script resource reference
spring.datasource.data= # a data (DML) script resource reference
spring.datasource.sql-script-encoding= # a charset for reading SQL scripts
spring.datasource.platform= # the platform to use in the schema resource (schema-${platform}.sql)
spring.datasource.continue-on-error=false # continue even if can't be initialized
spring.datasource.separator=; # statement separator in SQL initialization scripts
spring.datasource.driver-class-name= # JDBC Settings...
spring.datasource.url=
spring.datasource.username=
spring.datasource.password=
spring.datasource.jndi-name= # For JNDI lookup (class, url, username & password are ignored when set)
spring.datasource.max-active=100 # Advanced configuration...
spring.datasource.max-idle=8
spring.datasource.min-idle=8
spring.datasource.initial-size=10
spring.datasource.validation-query=
spring.datasource.test-on-borrow=false
spring.datasource.test-on-return=false
spring.datasource.test-while-idle=
spring.datasource.time-between-eviction-runs-millis=
spring.datasource.min-evictable-idle-time-millis=
spring.datasource.max-wait=
spring.datasource.jmx-enabled=false # Export JMX MBeans (if supported)
# DATASOURCE (PersistenceExceptionTranslationAutoConfiguration
spring.dao.exceptiontranslation.enabled=true
# 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.mongodb.database=
spring.data.mongodb.authentication-database=
spring.data.mongodb.grid-fs-database=
spring.data.mongodb.username=
spring.data.mongodb.password=
spring.data.mongodb.repositories.enabled=true # if spring data repository support is enabled
# JPA (JpaBaseConfiguration, HibernateJpaAutoConfiguration)
spring.jpa.properties.*= # properties to set on the JPA connection
spring.jpa.open-in-view=true
spring.jpa.show-sql=true
spring.jpa.database-platform=
1.2.2.BUILD-SNAPSHOT
Spring Boot
185
spring.jpa.database=
spring.jpa.generate-ddl=false # ignored by Hibernate, might be useful for other vendors
spring.jpa.hibernate.naming-strategy= # naming classname
spring.jpa.hibernate.ddl-auto= # defaults to create-drop for embedded dbs
spring.data.jpa.repositories.enabled=true # if spring data repository support is enabled
# JTA (JtaAutoConfiguration)
spring.jta.log-dir= # transaction log dir
spring.jta.*= # technology specific configuration
# ATOMIKOS
spring.jta.atomikos.connectionfactory.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing
connections from the pool
spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag=true # Whether or not to ignore the
transacted flag when creating session
spring.jta.atomikos.connectionfactory.local-transaction-mode=false # Whether or not local transactions
are desired
spring.jta.atomikos.connectionfactory.maintenance-interval=60 # The time, in seconds, between runs of
the pool's maintenance thread
spring.jta.atomikos.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections
are cleaned up from the pool
spring.jta.atomikos.connectionfactory.max-lifetime=0 # The time, in seconds, that a connection can be
pooled for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.max-pool-size=1 # The maximum size of the pool
spring.jta.atomikos.connectionfactory.min-pool-size=1 # The minimum size of the pool
spring.jta.atomikos.connectionfactory.reap-timeout=0 # The reap timeout, in seconds, for borrowed
connections. 0 denotes no limit.
spring.jta.atomikos.connectionfactory.unique-resource-name=jmsConnectionFactory # The unique name used
to identify the resource during recovery
spring.jta.atomikos.datasource.borrow-connection-timeout=30 # Timeout, in seconds, for borrowing
connections from the pool
spring.jta.atomikos.datasource.default-isolation-level= # Default isolation level of connections
provided by the pool
spring.jta.atomikos.datasource.login-timeout= # Timeout, in seconds, for establishing a database
connection
spring.jta.atomikos.datasource.maintenance-interval=60 # The time, in seconds, between runs of the
pool's maintenance thread
spring.jta.atomikos.datasource.max-idle-time=60 # The time, in seconds, after which connections are
cleaned up from the pool
spring.jta.atomikos.datasource.max-lifetime=0 # The time, in seconds, that a connection can be pooled
for before being destroyed. 0 denotes no limit.
spring.jta.atomikos.datasource.max-pool-size=1 # The maximum size of the pool
spring.jta.atomikos.datasource.min-pool-size=1 # The minimum size of the pool
spring.jta.atomikos.datasource.reap-timeout=0 # The reap timeout, in seconds, for borrowed connections.
0 denotes no limit.
spring.jta.atomikos.datasource.test-query= # SQL query or statement used to validate a connection before
returning it
spring.jta.atomikos.datasource.unique-resource-name=dataSource # The unique name used to identify the
resource during recovery
# BITRONIX
spring.jta.bitronix.connectionfactory.acquire-increment=1 # Number of connections to create when growing
the pool
spring.jta.bitronix.connectionfactory.acquisition-interval=1 # Time, in seconds, to wait before trying
to acquire a connection again after an invalid connection was acquired
spring.jta.bitronix.connectionfactory.acquisition-timeout=30 # Timeout, in seconds, for acquiring
connections from the pool
spring.jta.bitronix.connectionfactory.allow-local-transactions=true # Whether or not the transaction
manager should allow mixing XA and non-XA transactions
spring.jta.bitronix.connectionfactory.apply-transaction-timeout=false # Whether or not the transaction
timeout should be set on the XAResource when it is enlisted
spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled=true # Whether or not resources should
be enlisted and delisted automatically
spring.jta.bitronix.connectionfactory.cache-producers-consumers=true # Whether or not produces and
consumers should be cached
spring.jta.bitronix.connectionfactory.defer-connection-release=true # Whether or not the provider can
run many transactions on the same connection and supports transaction interleaving
spring.jta.bitronix.connectionfactory.ignore-recovery-failures=false # Whether or not recovery failures
should be ignored
spring.jta.bitronix.connectionfactory.max-idle-time=60 # The time, in seconds, after which connections
are cleaned up from the pool
1.2.2.BUILD-SNAPSHOT
Spring Boot
186
1.2.2.BUILD-SNAPSHOT
Spring Boot
187
1.2.2.BUILD-SNAPSHOT
Spring Boot
188
1.2.2.BUILD-SNAPSHOT
Spring Boot
189
endpoints.configprops.id=configprops
endpoints.configprops.sensitive=true
endpoints.configprops.enabled=true
endpoints.configprops.keys-to-sanitize=password,secret,key # suffix or regex
endpoints.dump.id=dump
endpoints.dump.sensitive=true
endpoints.dump.enabled=true
endpoints.env.id=env
endpoints.env.sensitive=true
endpoints.env.enabled=true
endpoints.env.keys-to-sanitize=password,secret,key # suffix or regex
endpoints.health.id=health
endpoints.health.sensitive=true
endpoints.health.enabled=true
endpoints.health.mapping.*= # mapping of health statuses to HttpStatus codes
endpoints.health.time-to-live=1000
endpoints.info.id=info
endpoints.info.sensitive=false
endpoints.info.enabled=true
endpoints.mappings.enabled=true
endpoints.mappings.id=mappings
endpoints.mappings.sensitive=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
# HEALTH INDICATORS (previously health.*)
management.health.db.enabled=true
management.health.diskspace.enabled=true
management.health.mongo.enabled=true
management.health.rabbit.enabled=true
management.health.redis.enabled=true
management.health.solr.enabled=true
management.health.diskspace.path=.
management.health.diskspace.threshold=10485760
management.health.status.order=DOWN, OUT_OF_SERVICE, UNKNOWN, UP
# MVC ONLY ENDPOINTS
endpoints.jolokia.path=jolokia
endpoints.jolokia.sensitive=true
endpoints.jolokia.enabled=true # when using Jolokia
# JMX ENDPOINT (EndpointMBeanExportProperties)
endpoints.jmx.enabled=true
endpoints.jmx.domain= # the JMX domain, defaults to 'org.springboot'
endpoints.jmx.unique-names=false
endpoints.jmx.static-names=
# JOLOKIA (JolokiaProperties)
jolokia.config.*= # See Jolokia manual
# REMOTE SHELL
shell.auth=simple # jaas, key, simple, spring
shell.command-refresh-interval=-1
shell.command-path-patterns= # classpath*:/commands/**, classpath*:/crash/commands/**
shell.config-path-patterns= # classpath*:/crash/*
shell.disabled-commands=jpa*,jdbc*,jndi* # comma-separated list of commands to disable
shell.disabled-plugins=false # don't expose plugins
shell.ssh.enabled= # ssh settings ...
shell.ssh.key-path=
shell.ssh.port=
shell.telnet.enabled= # telnet settings ...
shell.telnet.port=
shell.auth.jaas.domain= # authentication settings ...
shell.auth.key.path=
1.2.2.BUILD-SNAPSHOT
Spring Boot
190
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
1.2.2.BUILD-SNAPSHOT
Spring Boot
191
Each property is a configuration item that the user specifies with a given value. For example
server.port and server.servlet-path might be specified in application.properties as
follows:
server.port=9090
server.servlet-path=/home
The groups are higher level items that dont themselves specify a value, but instead provide a
contextual grouping for properties. For example the server.port and server.servlet-path
properties are part of the server group.
Note
It is not required that every property has a group, some properties might just exist in their own
right.
Group Attributes
The JSON object contained in the groups array can contain the following attributes:
1.2.2.BUILD-SNAPSHOT
Spring Boot
192
Name
Type
Purpose
name
String
type
String
description String
sourceType
String
sourceMethod String
The class name of the source that contributed this group. For
example, if the group was based on a @Bean method annotated
with @ConfigurationProperties this attribute would contain
the fully qualified name of the @Configuration class containing
the method. The attribute may be omitted if the source type is not
known.
The full name of the method (include parenthesis and argument
types) that contributed this group. For example, the name of a
@ConfigurationProperties annotated @Bean method. May
be omitted if the source method is not known.
Property Attributes
The JSON object contained in the properties array can contain the following attributes:
Name
Type
Purpose
name
String
type
String
The class name of the data type of the property. For example,
java.lang.String. This attribute can be used to guide the user
as to the types of values that they can enter. For consistency, the
type of a primitive is specified using its wrapper counterpart, i.e.
boolean becomes java.lang.Boolean. Note that this class
may be a complex type that gets converted from a String as values
are bound. May be omitted if the type is not known.
description String
sourceType
String
1.2.2.BUILD-SNAPSHOT
Spring Boot
193
Name
Type
Purpose
@ConfigurationProperties this attribute would contain the
fully qualified name of that class. May be omitted if the source type
is not known.
defaultValue Object
deprecated
boolean
The default value which will be used if the property is not specified.
Can also be an array of value(s) if the type of the property is an
array. May be omitted if the default value is not known.
Specify if the property is deprecated. May be omitted if the field is
not deprecated or if that information is not known.
The annotation will pickup both classes and methods that are annotated with
@ConfigurationProperties. The Javadoc for field values within configuration classes will be used
to populate the description attribute.
Note
You should only use simple text with @ConfigurationProperties field Javadoc since they
are not processed before being added to the JSON.
Properties are discovered via the presence of standard getters and setters with special handling for
collection types (that will be detected even if only a getter is present). The annotation processor also
supports the use of the @Data, @Getter and @Setter lombok annotations.
Nested properties
The annotation processor will automatically consider inner classes as nested properties. For example,
the following class:
1.2.2.BUILD-SNAPSHOT
Spring Boot
194
@ConfigurationProperties(prefix="server")
public class ServerProperties {
private String name;
private Host host;
// ... getter and setters
private static class Host {
private String ip;
private int port;
// ... getter and setters
}
}
1.2.2.BUILD-SNAPSHOT
Spring Boot
195
Appendix C. Auto-configuration
classes
Here is a list of all auto configuration classes provided by Spring Boot with links to documentation and
source code. Remember to also look at the 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).
Links
ActiveMQAutoConfiguration
javadoc
AopAutoConfiguration
javadoc
BatchAutoConfiguration
javadoc
CloudAutoConfiguration
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
GsonAutoConfiguration
javadoc
GzipFilterAutoConfiguration
javadoc
HibernateJpaAutoConfiguration
javadoc
1.2.2.BUILD-SNAPSHOT
Spring Boot
196
Configuration Class
Links
HornetQAutoConfiguration
javadoc
HttpEncodingAutoConfiguration
javadoc
HttpMessageConvertersAutoConfiguration
javadoc
HypermediaAutoConfiguration
javadoc
IntegrationAutoConfiguration
javadoc
JacksonAutoConfiguration
javadoc
JerseyAutoConfiguration
javadoc
JmsAutoConfiguration
javadoc
JmxAutoConfiguration
javadoc
JndiConnectionFactoryAutoConfiguration
javadoc
JndiDataSourceAutoConfiguration
javadoc
JpaRepositoriesAutoConfiguration
javadoc
JtaAutoConfiguration
javadoc
LinkedInAutoConfiguration
javadoc
LiquibaseAutoConfiguration
javadoc
MailSenderAutoConfiguration
javadoc
MessageSourceAutoConfiguration
javadoc
MongoAutoConfiguration
javadoc
MongoDataAutoConfiguration
javadoc
MongoRepositoriesAutoConfiguration
javadoc
MultipartAutoConfiguration
javadoc
MustacheAutoConfiguration
javadoc
PersistenceExceptionTranslationAutoConfiguration
javadoc
PropertyPlaceholderAutoConfiguration
javadoc
RabbitAutoConfiguration
javadoc
ReactorAutoConfiguration
javadoc
RedisAutoConfiguration
javadoc
RepositoryRestMvcAutoConfiguration
javadoc
SecurityAutoConfiguration
javadoc
ServerPropertiesAutoConfiguration
javadoc
1.2.2.BUILD-SNAPSHOT
Spring Boot
197
Configuration Class
Links
SitePreferenceAutoConfiguration
javadoc
SocialWebAutoConfiguration
javadoc
SolrAutoConfiguration
javadoc
SolrRepositoriesAutoConfiguration
javadoc
SpringDataWebAutoConfiguration
javadoc
ThymeleafAutoConfiguration
javadoc
TwitterAutoConfiguration
javadoc
VelocityAutoConfiguration
javadoc
WebMvcAutoConfiguration
javadoc
WebSocketAutoConfiguration
javadoc
XADataSourceAutoConfiguration
javadoc
Links
AuditAutoConfiguration
javadoc
CrshAutoConfiguration
javadoc
EndpointAutoConfiguration
javadoc
EndpointMBeanExportAutoConfiguration
javadoc
EndpointWebMvcAutoConfiguration
javadoc
HealthIndicatorAutoConfiguration
javadoc
JolokiaAutoConfiguration
javadoc
ManagementSecurityAutoConfiguration
javadoc
ManagementServerPropertiesAutoConfiguration
javadoc
MetricFilterAutoConfiguration
javadoc
MetricRepositoryAutoConfiguration
javadoc
PublicMetricsAutoConfiguration
javadoc
TraceRepositoryAutoConfiguration
javadoc
TraceWebFilterAutoConfiguration
javadoc
1.2.2.BUILD-SNAPSHOT
Spring Boot
198
1.2.2.BUILD-SNAPSHOT
Spring Boot
199
|
+-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.
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 dont need to unpack the archive and we dont need to read all entry data into memory.
1.2.2.BUILD-SNAPSHOT
Spring Boot
200
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/ in your application archive
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
You need to specify an appropriate Launcher as the Main-Class attribute of META-INF/
MANIFEST.MF. The actual class that you want to launch (i.e. the class that you wrote that contains a
main method) should be specified in the Start-Class attribute.
For example, here is a typical MANIFEST.MF for an executable jar file:
Main-Class: org.springframework.boot.loader.JarLauncher
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
Purpose
loader.path
loader.home
loader.args
loader.main
loader.config.name
loader.config.location
1.2.2.BUILD-SNAPSHOT
Spring Boot
201
Key
Purpose
loader.system
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).
Environment variables can be capitalized with underscore separators instead of periods.
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.
System ClassLoader
Launched applications should use Thread.getContextClassLoader() when loading classes
(most libraries and frameworks will do this by default). Trying to load nested jar classes via
ClassLoader.getSystemClassLoader() will fail. Please be aware that java.util.Logging
always uses the system classloader, for this reason you should consider a different logging
implementation.
1.2.2.BUILD-SNAPSHOT
Spring Boot
202
Artifact ID
Version
ch.qos.logback
logback-classic
1.1.2
com.atomikos
transactions-jdbc
3.9.3
com.atomikos
transactions-jms
3.9.3
com.atomikos
transactions-jta
3.9.3
com.fasterxml.jackson.core
jackson-annotations
2.4.4
com.fasterxml.jackson.core
jackson-core
2.4.4
com.fasterxml.jackson.core
jackson-databind
2.4.4
com.fasterxml.jackson.dataformat
jackson-dataformat-xml
2.4.4
com.fasterxml.jackson.dataformat
jackson-dataformat-yaml
2.4.4
com.fasterxml.jackson.datatype
jackson-datatype-jdk8
2.4.4
com.fasterxml.jackson.datatype
jackson-datatype-joda
2.4.4
com.fasterxml.jackson.datatype
jackson-datatype-jsr310
2.4.4
com.gemstone.gemfire
7.0.2
gemfire
com.github.mxab.thymeleaf.extras
thymeleaf-extras-dataattribute
1.3
com.google.code.gson
gson
2.3.1
com.googlecode.jsonsimple
json-simple
1.1.1
com.h2database
h2
1.4.184
com.jayway.jsonpath
json-path
0.9.1
com.samskivert
jmustache
1.9
com.sun.mail
javax.mail
1.5.2
com.zaxxer
HikariCP
2.2.5
com.zaxxer
HikariCP-java6
2.2.5
commons-beanutils
commons-beanutils
1.9.2
commons-collections
commons-collections
3.2.1
commons-dbcp
commons-dbcp
1.4
1.2.2.BUILD-SNAPSHOT
Spring Boot
203
Group ID
Artifact ID
Version
commons-digester
commons-digester
2.1
commons-pool
commons-pool
1.6
io.dropwizard.metrics
metrics-core
3.1.0
io.dropwizard.metrics
metrics-ganglia
3.1.0
io.dropwizard.metrics
metrics-graphite
3.1.0
io.dropwizard.metrics
metrics-servlets
3.1.0
io.undertow
undertow-core
1.1.1.Final
io.undertow
undertow-servlet
1.1.1.Final
io.undertow
undertow-websockets-jsr
1.1.1.Final
javax.cache
cache-api
1.0.0
javax.jms
jms-api
1.1-rev-1
javax.mail
javax.mail-api
1.5.2
javax.servlet
javax.servlet-api
3.1.0
javax.servlet
jstl
1.2
javax.transaction
javax.transaction-api
1.2
jaxen
jaxen
1.1.6
joda-time
joda-time
2.5
junit
junit
4.12
log4j
log4j
1.2.17
mysql
mysql-connector-java
5.1.34
nz.net.ultraq.thymeleaf
thymeleaf-layoutdialect
1.2.7
org.apache.activemq
activemq-broker
5.10.0
org.apache.activemq
activemq-client
5.10.0
org.apache.activemq
activemq-jms-pool
5.10.0
org.apache.activemq
activemq-pool
5.10.0
org.apache.commons
commons-dbcp2
2.0.1
org.apache.commons
commons-pool2
2.2
org.apache.httpcomponentshttpasyncclient
4.0.2
org.apache.httpcomponentshttpclient
4.3.6
org.apache.httpcomponentshttpmime
4.3.6
1.2.2.BUILD-SNAPSHOT
Spring Boot
204
Group ID
Artifact ID
Version
org.apache.logging.log4j log4j-api
2.1
org.apache.logging.log4j log4j-core
2.1
org.apache.logging.log4j log4j-slf4j-impl
2.1
org.apache.solr
solr-solrj
4.7.2
org.apache.tomcat
tomcat-jdbc
8.0.18
org.apache.tomcat
tomcat-jsp-api
8.0.18
org.apache.tomcat.embed
tomcat-embed-core
8.0.18
org.apache.tomcat.embed
tomcat-embed-el
8.0.18
org.apache.tomcat.embed
tomcat-embed-jasper
8.0.18
org.apache.tomcat.embed
tomcat-embed-loggingjuli
8.0.18
org.apache.tomcat.embed
tomcat-embed-websocket
8.0.18
org.apache.velocity
velocity
1.7
org.apache.velocity
velocity-tools
2.0
org.aspectj
aspectjrt
1.8.4
org.aspectj
aspectjtools
1.8.4
org.aspectj
aspectjweaver
1.8.4
org.codehaus.btm
btm
2.1.4
org.codehaus.groovy
groovy
2.3.8
org.codehaus.groovy
groovy-all
2.3.8
org.codehaus.groovy
groovy-ant
2.3.8
org.codehaus.groovy
groovy-bsf
2.3.8
org.codehaus.groovy
groovy-console
2.3.8
org.codehaus.groovy
groovy-docgenerator
2.3.8
org.codehaus.groovy
groovy-groovydoc
2.3.8
org.codehaus.groovy
groovy-groovysh
2.3.8
org.codehaus.groovy
groovy-jmx
2.3.8
org.codehaus.groovy
groovy-json
2.3.8
org.codehaus.groovy
groovy-jsr223
2.3.8
org.codehaus.groovy
groovy-nio
2.3.8
org.codehaus.groovy
groovy-servlet
2.3.8
1.2.2.BUILD-SNAPSHOT
Spring Boot
205
Group ID
Artifact ID
Version
org.codehaus.groovy
groovy-sql
2.3.8
org.codehaus.groovy
groovy-swing
2.3.8
org.codehaus.groovy
groovy-templates
2.3.8
org.codehaus.groovy
groovy-test
2.3.8
org.codehaus.groovy
groovy-testng
2.3.8
org.codehaus.groovy
groovy-xml
2.3.8
org.codehaus.janino
janino
2.6.1
org.crashub
crash.cli
1.3.0
org.crashub
crash.connectors.ssh
1.3.0
org.crashub
crash.connectors.telnet
1.3.0
org.crashub
crash.embed.spring
1.3.0
org.crashub
crash.plugins.cron
1.3.0
org.crashub
crash.plugins.mail
1.3.0
org.crashub
crash.shell
1.3.0
org.eclipse.jetty
jetty-annotations
9.2.4.v20141103
org.eclipse.jetty
jetty-continuation
9.2.4.v20141103
org.eclipse.jetty
jetty-deploy
9.2.4.v20141103
org.eclipse.jetty
jetty-http
9.2.4.v20141103
org.eclipse.jetty
jetty-io
9.2.4.v20141103
org.eclipse.jetty
jetty-jmx
9.2.4.v20141103
org.eclipse.jetty
jetty-jsp
9.2.4.v20141103
org.eclipse.jetty
jetty-plus
9.2.4.v20141103
org.eclipse.jetty
jetty-security
9.2.4.v20141103
org.eclipse.jetty
jetty-server
9.2.4.v20141103
org.eclipse.jetty
jetty-servlet
9.2.4.v20141103
org.eclipse.jetty
jetty-servlets
9.2.4.v20141103
org.eclipse.jetty
jetty-util
9.2.4.v20141103
org.eclipse.jetty
jetty-webapp
9.2.4.v20141103
org.eclipse.jetty
jetty-xml
9.2.4.v20141103
org.eclipse.jetty.orbit
javax.servlet.jsp
2.2.0.v201112011158
1.2.2.BUILD-SNAPSHOT
Spring Boot
206
Group ID
Artifact ID
Version
org.eclipse.jetty.websocket
javax-websocket-serverimpl
9.2.4.v20141103
org.eclipse.jetty.websocket
websocket-server
9.2.4.v20141103
org.flywaydb
flyway-core
3.1
org.freemarker
freemarker
2.3.21
org.glassfish
javax.el
3.0.0
org.glassfish.jersey.containers
jersey-containerservlet
2.14
org.glassfish.jersey.containers
jersey-containerservlet-core
2.14
org.glassfish.jersey.corejersey-server
2.14
org.glassfish.jersey.ext jersey-bean-validation
2.14
org.glassfish.jersey.ext jersey-spring3
2.14
org.glassfish.jersey.media
jersey-media-jsonjackson
2.14
org.hamcrest
hamcrest-core
1.3
org.hamcrest
hamcrest-library
1.3
org.hibernate
hibernate-ehcache
4.3.8.Final
org.hibernate
hibernate-entitymanager
4.3.8.Final
org.hibernate
hibernate-envers
4.3.8.Final
org.hibernate
hibernate-jpamodelgen
4.3.8.Final
org.hibernate
hibernate-validator
5.1.3.Final
org.hornetq
hornetq-jms-client
2.4.5.Final
org.hornetq
hornetq-jms-server
2.4.5.Final
org.hsqldb
hsqldb
2.3.2
org.javassist
javassist
3.18.1-GA
org.jdom
jdom2
2.0.5
org.jolokia
jolokia-core
1.2.3
org.liquibase
liquibase-core
3.3.0
org.mockito
mockito-core
1.10.19
org.mongodb
mongo-java-driver
2.12.4
org.projectreactor
reactor-core
1.1.5.RELEASE
1.2.2.BUILD-SNAPSHOT
Spring Boot
207
Group ID
Artifact ID
Version
org.projectreactor
reactor-groovy
1.1.5.RELEASE
org.projectreactor
reactor-groovyextensions
1.1.5.RELEASE
org.projectreactor
reactor-logback
1.1.5.RELEASE
org.projectreactor
reactor-net
1.1.5.RELEASE
org.projectreactor.springreactor-spring-context
1.1.3.RELEASE
org.projectreactor.springreactor-spring-core
1.1.3.RELEASE
org.projectreactor.springreactor-springmessaging
1.1.3.RELEASE
org.projectreactor.springreactor-spring-webmvc
1.1.3.RELEASE
org.slf4j
jcl-over-slf4j
1.7.10
org.slf4j
jul-to-slf4j
1.7.10
org.slf4j
log4j-over-slf4j
1.7.10
org.slf4j
slf4j-api
1.7.10
org.slf4j
slf4j-jdk14
1.7.10
org.slf4j
slf4j-log4j12
1.7.10
org.spockframework
spock-core
0.7-groovy-2.0
org.spockframework
spock-spring
0.7-groovy-2.0
org.springframework
spring-aop
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-aspects
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-beans
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-context
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-context-support
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-core
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-expression
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-instrument
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-instrumenttomcat
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-jdbc
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-jms
4.1.5.BUILD-SNAPSHOT
org.springframework
springloaded
1.2.1.RELEASE
1.2.2.BUILD-SNAPSHOT
Spring Boot
208
Group ID
Artifact ID
Version
org.springframework
spring-messaging
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-orm
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-oxm
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-test
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-tx
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-web
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-webmvc
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-webmvc-portlet
4.1.5.BUILD-SNAPSHOT
org.springframework
spring-websocket
4.1.5.BUILD-SNAPSHOT
org.springframework.amqp spring-amqp
1.4.3.RELEASE
org.springframework.amqp spring-erlang
1.4.3.RELEASE
org.springframework.amqp spring-rabbit
1.4.3.RELEASE
org.springframework.batchspring-batch-core
3.0.2.RELEASE
org.springframework.batchspring-batchinfrastructure
3.0.2.RELEASE
org.springframework.batchspring-batchintegration
3.0.2.RELEASE
org.springframework.batchspring-batch-test
3.0.2.RELEASE
org.springframework.boot spring-boot
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-actuator
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-bootautoconfigure
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-bootconfiguration-processor
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-dependencytools
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-loader
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-loadertools
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starter
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starteractuator
1.2.2.BUILD-SNAPSHOT
1.2.2.BUILD-SNAPSHOT
Spring Boot
209
Group ID
Artifact ID
Version
org.springframework.boot spring-boot-starteramqp
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starter-aop
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterbatch
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startercloud-connectors
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterdata-elasticsearch
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterdata-gemfire
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterdata-jpa
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterdata-mongodb
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterdata-rest
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterdata-solr
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterfreemarker
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startergroovy-templates
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterhateoas
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterhornetq
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterintegration
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterjdbc
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterjersey
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterjetty
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterjta-atomikos
1.2.2.BUILD-SNAPSHOT
1.2.2.BUILD-SNAPSHOT
Spring Boot
210
Group ID
Artifact ID
Version
org.springframework.boot spring-boot-starterjta-bitronix
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterlog4j
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterlog4j2
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterlogging
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startermail
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startermobile
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startermustache
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterredis
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterremote-shell
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startersecurity
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startersocial-facebook
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startersocial-linkedin
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startersocial-twitter
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startertest
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterthymeleaf
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startertomcat
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starterundertow
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-startervelocity
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starter-web
1.2.2.BUILD-SNAPSHOT
1.2.2.BUILD-SNAPSHOT
Spring Boot
211
Group ID
Artifact ID
Version
org.springframework.boot spring-boot-starterwebsocket
1.2.2.BUILD-SNAPSHOT
org.springframework.boot spring-boot-starter-ws
1.2.2.BUILD-SNAPSHOT
org.springframework.cloudspring-cloudcloudfoundry-connector
1.1.1.RELEASE
org.springframework.cloudspring-cloud-core
1.1.1.RELEASE
org.springframework.cloudspring-cloud-herokuconnector
1.1.1.RELEASE
org.springframework.cloudspring-cloudlocalconfig-connector
1.1.1.RELEASE
org.springframework.cloudspring-cloud-springservice-connector
1.1.1.RELEASE
org.springframework.data spring-cql
1.1.2.RELEASE
org.springframework.data spring-data-cassandra
1.1.2.RELEASE
org.springframework.data spring-data-commons
1.9.2.RELEASE
org.springframework.data spring-data-couchbase
1.2.2.RELEASE
org.springframework.data spring-dataelasticsearch
1.1.2.RELEASE
org.springframework.data spring-data-gemfire
1.5.2.RELEASE
org.springframework.data spring-data-jpa
1.7.2.RELEASE
org.springframework.data spring-data-mongodb
1.6.2.RELEASE
org.springframework.data spring-data-mongodbcross-store
1.6.2.RELEASE
org.springframework.data spring-data-mongodblog4j
1.6.2.RELEASE
org.springframework.data spring-data-neo4j
3.2.2.RELEASE
org.springframework.data spring-data-redis
1.4.2.RELEASE
org.springframework.data spring-data-rest-core
2.2.2.RELEASE
org.springframework.data spring-data-rest-webmvc
2.2.2.RELEASE
org.springframework.data spring-data-solr
1.3.2.RELEASE
org.springframework.hateoas
spring-hateoas
0.16.0.RELEASE
org.springframework.integration
spring-integration-amqp
4.1.2.RELEASE
org.springframework.integration
spring-integration-core
4.1.2.RELEASE
1.2.2.BUILD-SNAPSHOT
Spring Boot
212
Group ID
Artifact ID
Version
org.springframework.integration
spring-integrationevent
4.1.2.RELEASE
org.springframework.integration
spring-integration-feed
4.1.2.RELEASE
org.springframework.integration
spring-integration-file
4.1.2.RELEASE
org.springframework.integration
spring-integration-ftp
4.1.2.RELEASE
org.springframework.integration
spring-integrationgemfire
4.1.2.RELEASE
org.springframework.integration
spring-integrationgroovy
4.1.2.RELEASE
org.springframework.integration
spring-integration-http
4.1.2.RELEASE
org.springframework.integration
spring-integration-ip
4.1.2.RELEASE
org.springframework.integration
spring-integration-jdbc
4.1.2.RELEASE
org.springframework.integration
spring-integration-jms
4.1.2.RELEASE
org.springframework.integration
spring-integration-jmx
4.1.2.RELEASE
org.springframework.integration
spring-integration-jpa
4.1.2.RELEASE
org.springframework.integration
spring-integration-mail
4.1.2.RELEASE
org.springframework.integration
spring-integrationmongodb
4.1.2.RELEASE
org.springframework.integration
spring-integration-mqtt
4.1.2.RELEASE
org.springframework.integration
spring-integrationredis
4.1.2.RELEASE
org.springframework.integration
spring-integration-rmi
4.1.2.RELEASE
org.springframework.integration
spring-integrationscripting
4.1.2.RELEASE
org.springframework.integration
spring-integrationsecurity
4.1.2.RELEASE
org.springframework.integration
spring-integration-sftp
4.1.2.RELEASE
org.springframework.integration
spring-integrationstream
4.1.2.RELEASE
org.springframework.integration
spring-integrationsyslog
4.1.2.RELEASE
org.springframework.integration
spring-integration-test
4.1.2.RELEASE
org.springframework.integration
spring-integrationtwitter
4.1.2.RELEASE
1.2.2.BUILD-SNAPSHOT
Spring Boot
213
Group ID
Artifact ID
Version
org.springframework.integration
spring-integrationwebsocket
4.1.2.RELEASE
org.springframework.integration
spring-integration-ws
4.1.2.RELEASE
org.springframework.integration
spring-integration-xml
4.1.2.RELEASE
org.springframework.integration
spring-integration-xmpp
4.1.2.RELEASE
org.springframework.mobile
spring-mobile-device
1.1.3.RELEASE
org.springframework.plugin
spring-plugin-core
1.1.0.RELEASE
org.springframework.security
spring-security-acl
3.2.5.RELEASE
org.springframework.security
spring-security-aspects
3.2.5.RELEASE
org.springframework.security
spring-security-cas
3.2.5.RELEASE
org.springframework.security
spring-security-config
3.2.5.RELEASE
org.springframework.security
spring-security-core
3.2.5.RELEASE
org.springframework.security
spring-security-crypto
3.2.5.RELEASE
org.springframework.security
spring-security-jwt
1.0.2.RELEASE
org.springframework.security
spring-security-ldap
3.2.5.RELEASE
org.springframework.security
spring-security-openid
3.2.5.RELEASE
org.springframework.security
spring-securityremoting
3.2.5.RELEASE
org.springframework.security
spring-security-taglibs
3.2.5.RELEASE
org.springframework.security
spring-security-web
3.2.5.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-facebookweb
1.1.1.RELEASE
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
org.springframework.ws
spring-ws-core
2.2.0.RELEASE
org.springframework.ws
spring-ws-security
2.2.0.RELEASE
1.2.2.BUILD-SNAPSHOT
Spring Boot
214
Group ID
Artifact ID
Version
org.springframework.ws
spring-ws-support
2.2.0.RELEASE
org.springframework.ws
spring-ws-test
2.2.0.RELEASE
org.thymeleaf
thymeleaf
2.1.4.RELEASE
org.thymeleaf
thymeleaf-spring4
2.1.4.RELEASE
org.thymeleaf.extras
thymeleaf-extrasconditionalcomments
2.1.1.RELEASE
org.thymeleaf.extras
thymeleaf-extrasspringsecurity3
2.1.1.RELEASE
org.yaml
snakeyaml
1.14
redis.clients
jedis
2.5.2
wsdl4j
wsdl4j
1.6.3
1.2.2.BUILD-SNAPSHOT
Spring Boot
215