Spring Boot Reference Guide
Authors
Phillip Webb, Dave Syer, Josh Long, Stéphane Nicoll, Rob Winch, Andy Wilkinson, Marcel Overdijk, Christian Dupuis, Sébastien Deleuze
1.3.7.RELEASE
Copyright © 2013-2016
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
5. Learning about Spring Boot features
10.1. Installation instructions for the Java developer
10.2. Installing the Spring Boot CLI
10.2.2. Installation with SDKMAN!
10.2.3. OSX Homebrew installation
10.2.5. Command-line completion
10.2.6. Quick start Spring CLI example
10.3. Upgrading from an earlier version of Spring Boot
11. Developing your first Spring Boot application
11.2. Adding classpath dependencies
11.3.1. The @RestController and @RequestMapping annotations
11.3.2. The @EnableAutoConfiguration annotation
13.2.2。在没有父POM的情况下使用Spring Boot
23.7。使用ApplicationRunner或CommandLineRunner
24.7.4。@ConfigurationProperties验证
27.1.3。MessageCodesResolver的信息
27.1.5。ConfigurableWebBindingInitializer
WebSphere Application Server上的错误处理
将Servlet,过滤器和侦听器注册为Spring bean
27.3.3。EmbeddedWebApplicationContext
直接自定义ConfigurableEmbeddedServletContainer
31.5.2。Spring Data Elasticsearch存储库
31.6.2。Spring Data Cassandra存储库
33.1.4。使用JNDI ConnectionFactory
40.3.1。使用Spock测试Spring Boot应用程序
40.4.1。ConfigFileApplicationContextInitializer
Automatic property expansion using Gradle
45.7.2. Git commit information
46. Monitoring and management over HTTP
46.1. Securing sensitive endpoints
46.2. Customizing the management endpoint paths
46.3. Customizing the management server port
46.4. Customizing the management server address
46.5. Disabling HTTP endpoints
46.6. HTTP health endpoint access restrictions
47. Monitoring and management over JMX
47.3. Using Jolokia for JMX over HTTP
48. Monitoring and management using a remote shell
48.1. Connecting to the remote shell
48.1.1. Remote shell credentials
48.2. Extending the remote shell
64.9.1。配置Gradle以生成继承依赖关系管理的pom
64.9.2。配置Gradle以生成导入依赖关系管理的pom
68.2。在启动之前自定义Environment或ApplicationContext
68.3。构建ApplicationContext层次结构(添加父或根上下文)
70.1.1。使用Spring bean添加Servlet,Filter或Listener
70.1.2。使用类路径扫描添加Servlet,过滤器和侦听器
70.17。使用@ServerEndpoint创建WebSocket端点
71.6。关闭Spring MVC DispatcherServlet
73.6。使用自定义EntityManagerFactory
73.9。使用Spring Data JPA和Mongo存储库
73.10。将Spring Data存储库公开为REST端点
77.2。更改AuthenticationManager并添加用户帐户
78.4.1。配置Spring Loaded以与Maven一起使用
78.4.2。配置Spring Loaded以与Gradle和IntelliJ IDEA一起使用
79.6。远程调试使用Maven启动的Spring Boot应用程序
79.7。远程调试使用Gradle启动的Spring Boot应用程序
79.8。不使用spring-boot-antlib从Ant构建可执行归档文件
C.1。来自“spring-boot-autoconfigure”模块
第一部分Spring Boot文档
本节简要概述了Spring Boot参考文档。将其视为文档其余部分的映射。您可以以线性方式阅读本参考指南,或者如果您不感兴趣,可以跳过章节。
1.关于文档
Spring Boot参考指南以html, pdf 和epub文档的形式提供。最新的副本可在docs.spring.io/spring-boot/docs/current/reference上找到。
本文档的副本可供您自己使用并分发给他人,前提是您不对此类副本收取任何费用,并且每份副本均包含本版权声明,无论是以印刷版还是电子版分发。
2.获得帮助
遇到Spring Boot问题,我们想帮忙!
- Try the How-to’s — they provide solutions to the most common questions.
- Learn the Spring basics — Spring Boot builds on many other Spring projects, check the spring.io web-site for a wealth of reference documentation. If you are just starting out with Spring, try one of the guides.
- Ask a question - we monitor stackoverflow.com for questions tagged with
spring-boot
. - Report bugs with Spring Boot at github.com/spring-projects/spring-boot/issues.
All of Spring Boot is open source, including the documentation! If you find problems with the docs; or if you just want to improve them, please get involved. |
3. First steps
If you’re just getting started with Spring Boot, or 'Spring' in general, this is the place to start!
- From scratch: Overview | Requirements | Installation
- Tutorial: Part 1 | Part 2
- Running your example: Part 1 | Part 2
4. Working with Spring Boot
Ready to actually start using Spring Boot? We’ve got you covered.
- Build systems: Maven | Gradle | Ant | Starter POMs
- Best practices: Code Structure | @Configuration | @EnableAutoConfiguration | Beans and Dependency Injection
- 运行代码 IDE | 打包 | Maven | 摇篮
- 打包您的应用程序: 生产罐
- Spring Boot CLI: 使用CLI
5.了解Spring Boot功能
需要有关Spring Boot核心功能的更多细节? 这是给你的!
- 核心功能: SpringApplication | 外部配置 | 个人资料 | 记录
- Web应用程序: MVC | 嵌入式容器
- 使用数据: SQL | NO-SQL
- 消息: 概述 | JMS
- 测试: 概述 | 启动应用程序 | utils的
- 扩展: 自动配置 | @条件
6.转向生产
当您准备好将Spring Boot应用程序推向生产时,我们有 一些您可能喜欢的技巧!
7.高级主题
最后,我们为更高级的用户提供了一些主题。
第二部分。入门
如果你刚刚开始使用Spring Boot,或者一般来说是“Spring”,那么这就是你的部分!在这里,我们回答基本的“什么?”,“如何?”和“为什么?”的问题。您将找到Spring Boot的简要介绍以及安装说明。然后我们将构建我们的第一个Spring Boot应用程序,讨论一些核心原则。
8.介绍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.
- 提供大型项目通用的一系列非功能性功能(例如,嵌入式服务器,安全性,指标,运行状况检查,外部化配置)。
- 绝对没有代码生成,也不需要XML配置。
9.系统要求
默认情况下,Spring Boot 1.3.7.RELEASE需要Java 7和Spring Framework 4.2.7.RELEASE或更高版本。您可以使用带有Java 6的Spring Boot和一些其他配置。有关更多详细信息,请参见第79.9节“如何使用Java 6”。为Maven(3.2+)和Gradle(1.12+)提供显式构建支持。
虽然您可以将Spring Boot与Java 6或7一起使用,但我们通常建议尽可能使用Java 8。 |
9.1 Servlet容器
开箱即用支持以下嵌入式servlet容器:
名称 | Servlet版本 | Java版本 |
---|---|---|
Tomcat 8 | 3.1 | Java 7+ |
雄猫7 | 3.0 | Java 6+ |
码头9 | 3.1 | Java 7+ |
码头8 | 3.0 | Java 6+ |
承诺1.1 | 3.1 | Java 7+ |
您还可以将Spring Boot应用程序部署到任何Servlet 3.0+兼容容器。
10.安装Spring Boot
Spring Boot可以与“经典”Java开发工具一起使用,也可以作为命令行工具安装。无论如何,您将需要Java SDK v1.6或更高版本。您应该在开始之前检查当前的Java安装:
<span style="color:#333333"><span style="color:#000000">$ java -version</span></span>
如果您不熟悉Java开发,或者您只是想尝试Spring Boot,则可能需要先尝试Spring Boot CLI,否则请继续阅读“经典”安装说明。
尽管Spring Boot与Java 1.6兼容,但如果可能,您应该考虑使用最新版本的Java。 |
10.1 Java开发人员的安装说明
您可以像使用任何标准Java库一样使用Spring Boot。只需spring-boot-*.jar
在类路径中包含相应的文件即可。Spring Boot不需要任何特殊工具集成,因此您可以使用任何IDE或文本编辑器; 并且Spring Boot应用程序没有什么特别之处,因此您可以像运行任何其他Java程序一样运行和调试。
虽然您可以复制Spring Boot jar,但我们通常建议您使用支持依赖关系管理的构建工具(例如Maven或Gradle)。
10.1.1 Maven安装
Spring Boot与Apache Maven 3.2或更高版本兼容。如果您还没有安装Maven,可以按照maven.apache.org上的说明进行操作。
在许多操作系统上,可以通过包管理器安装Maven。如果您是OSX Homebrew用户,请尝试 |
Spring Boot依赖项使用org.springframework.boot
groupId
。通常,您的Maven POM文件将从spring-boot-starter-parent
项目继承并声明对一个或多个“Starter POM”的依赖关系。Spring Boot还提供了一个可选的 Maven插件来创建可执行jar。
这是一个典型的pom.xml
文件:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version =“1.0”encoding =“UTF-8”?> </span>
<span style="color:#3f7f7f"><project </span> <span style="color:#7f007f">xmlns</span> = <span style="color:#2a00ff">“http://maven.apache.org/POM/4.0.0” </span> <span style="color:#7f007f">xmlns:xsi</span> = <span style="color:#2a00ff">“http://www.w3 .org / 2001 / XMLSchema-instance“ </span>
<span style="color:#7f007f">xsi:schemaLocation</span> = <span style="color:#2a00ff">”http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd“ </span><span style="color:#3f7f7f">> </span>
<span style="color:#3f7f7f"><modelVersion></span> 4.0.0 <span style="color:#3f7f7f"></ modelVersion></span>
<span style="color:#3f7f7f"><groupId></span> com.example <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> myproject <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"><version></span> 0.0.1-SNAPSHOT <span style="color:#3f7f7f"></ version></span>
<span style="color:#3f5f5f"><em><! - 继承默认值为Spring Boot - > </em></span>
<span style="color:#3f7f7f"><parent> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-starter-parent <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"><version></span> 1.3.7.RELEASE <span style="color:#3f7f7f">< / version> </span>
<span style="color:#3f7f7f"></ parent></span>
<span style="color:#3f5f5f"><em><! - 添加Web应用程序的典型依赖项 - > </em></span>
<span style="color:#3f7f7f"><dependencies> </span>
<span style="color:#3f7f7f"><dependency> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-starter-web <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"></ dependency> </span>
<span style="color:#3f7f7f"></依赖></span>
<span style="color:#3f5f5f"><em><! - 作为可执行jar的包 - > </em></span>
<span style="color:#3f7f7f"><build> </span>
<span style="color:#3f7f7f"><plugins> </span>
<span style="color:#3f7f7f"><plugin> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-maven-plugin <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"></ plugin > </span>
<span style="color:#3f7f7f"></ plugins> </span>
<span style="color:#3f7f7f"></ build></span>
<span style="color:#3f7f7f"></项目></span></span></span>
这 |
10.1.2 Gradle安装
Spring Boot与Gradle 1.12或更高版本兼容。如果您尚未安装Gradle,则可以按照www.gradle.org/上的说明进行操作。
Spring Boot依赖项可以使用org.springframework.boot
group
。通常,您的项目将声明对一个或多个“Starter POM”的依赖关系 。Spring Boot提供了一个有用的Gradle插件 ,可用于简化依赖声明和创建可执行jar。
Gradle Wrapper
当您需要构建项目时,Gradle Wrapper提供了一种“获取”Gradle的好方法。这是一个小脚本和库,您可以与代码一起提交以引导构建过程。有关 详细信息,请访问www.gradle.org/docs/current/userguide/gradle_wrapper.html。
这是一个典型的build.gradle
文件:
<span style="color:#333333"><span style="color:#000000">buildscript {
存储库{
jcenter()
maven {url <span style="color:#2a00ff">“http://repo.spring.io/snapshot”</span> }
maven {url <span style="color:#2a00ff">“http://repo.spring.io/milestone”</span> }
}
依赖{
classpath(<span style="color:#2a00ff">“org.springframework.boot:spring-boot-gradle-plugin:1.3.7.RELEASE”</span>)
}
}
apply plugin:<span style="color:#2a00ff">'java'apply</span>
plugin:<span style="color:#2a00ff">'spring-boot'</span>
jar {
baseName = <span style="color:#2a00ff">'myproject'version</span>
= <span style="color:#2a00ff">'0.0.1-SNAPSHOT'</span>
}
存储库{
jcenter()
maven {url <span style="color:#2a00ff">“http://repo.spring.io/snapshot”</span> }
maven {url <span style="color:#2a00ff">“http://repo.spring.io/milestone”</span> }
}
依赖{
编译(<span style="color:#2a00ff">“org.springframework.boot:spring-boot-starter-web”</span>)
testCompile(<span style="color:#2a00ff">“org.springframework.boot:spring-boot-starter-test”</span>)
}</span></span>
10.2安装Spring Boot CLI
Spring Boot CLI是一个命令行工具,如果您想快速使用Spring进行原型设计,可以使用它。它允许您运行Groovy脚本,这意味着您有一个熟悉的类似Java的语法,没有太多的样板代码。
您不需要使用CLI来使用Spring Boot,但它绝对是实现Spring应用程序的最快方法。
10.2.1手动安装
您可以从Spring软件库下载Spring CLI发行版:
还提供最先进的快照分发。
下载完成后,请按照 解压缩的存档中的INSTALL.txt说明进行操作。总结:文件中的目录中有一个spring
脚本(spring.bat
对于Windows),或者您也可以使用该文件(脚本可以帮助您确保正确设置类路径)。bin/
.zip
java -jar
.jar
10.2.2使用SDKMAN安装!
SDKMAN!(软件开发工具包管理器)可用于管理各种二进制SDK的多个版本,包括Groovy和Spring Boot CLI。获取SDKMAN!来自sdkman.io并安装Spring Boot
<span style="color:#333333"><span style="color:#000000">$ sdk install springboot
$ spring --version
Spring Boot v1.3.7.RELEASE</span></span>
如果您正在为CLI开发功能并希望轻松访问刚构建的版本,请按照这些额外说明进行操作。
<span style="color:#333333"><span style="color:#000000">$ sdk install springboot dev /path/to/spring-boot/spring-boot-cli/target/spring-boot-cli-1.3.7.RELEASE-bin/spring-1.3.7.RELEASE/
$ sdk默认springboot dev
$ spring --version
Spring CLI v1.3.7.RELEASE</span></span>
这将安装一个spring
名为dev
实例的本地实例。它指向您的目标构建位置,因此每次重建Spring Boot时,spring
都将是最新的。
你可以通过这样做看到它:
<span style="color:#333333"><span style="color:#000000">$ sdk是springboot
================================================== ==============================
可用的Springboot版本
================================================== ==============================
> + dev
* 1.3.7.RELEASE
================================================== ==============================
+ - 本地版本
* - 已安装
> - 目前正在使用中
================================================== ==============================</span></span>
10.2.3 OSX Homebrew安装
如果您使用的是Mac并使用Homebrew,那么安装Spring Boot CLI所需要做的就是:
<span style="color:#333333"><span style="color:#000000">$ brew tap pivotal / tap
$ brew install springboot</span></span>
Homebrew将安装spring
到/usr/local/bin
。
如果您没有看到公式,那么您的brew安装可能已过时。只需执行 |
10.2.4 MacPorts安装
如果您使用的是Mac并使用MacPorts,那么安装Spring Boot CLI所需要做的就是:
<span style="color:#333333"><span style="color:#000000">$ sudo port install spring-boot-cli</span></span>
10.2.5命令行完成
Spring Boot CLI附带了为BASH和 zsh shell 提供命令完成的脚本 。您可以在任何shell中source
使用脚本(也称为 spring
),或将其放在个人或系统范围的bash完成初始化中。在Debian系统上,系统范围的脚本都在,/shell-completion/bash
并且当新shell启动时,该目录中的所有脚本都会被执行。要手动运行脚本,例如,如果已使用SDKMAN安装!
<span style="color:#333333"><span style="color:#000000">$。〜/ .sdkman / springboot /电流/壳完成/庆典/弹簧
$ spring <HIT TAB HERE>
抓住帮助jar运行测试版</span></span>
如果使用Homebrew或MacPorts安装Spring Boot CLI,命令行完成脚本将自动注册到shell。 |
10.2.6快速启动Spring CLI示例
这是一个非常简单的Web应用程序,可用于测试您的安装。创建一个名为的文件app.groovy
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RestController</span></em>
<span style="color:#7f0055"><strong>类</strong></span> ThisWillActuallyRun {
<em><span style="color:gray">@RequestMapping( “/”)</span></em>
String home(){
<span style="color:#2a00ff">“你好,世界!”</span>
}
}</span></span>
然后只需从shell运行它:
<span style="color:#333333"><span style="color:#000000">$ spring run app.groovy</span></span>
首次运行应用程序时需要一些时间,因为下载了依赖项。后续运行会更快。 |
在您喜欢的Web浏览器中打开localhost:8080,您应该看到以下输出:
<span style="color:#333333"><span style="color:#000000">你好,世界!</span></span>
10.3从早期版本的Spring Boot升级
如果要从早期版本的Spring Boot升级,请检查项目Wiki上托管的“发行说明” 。您将找到升级说明以及每个版本的“新的和值得注意的”功能列表。
要升级现有CLI安装,请使用相应的软件包管理器命令(例如brew upgrade
),或者,如果手动安装CLI,请按照 标准说明记住更新PATH
环境变量以删除任何旧引用。
11.开发第一个Spring Boot应用程序
让我们用Java开发一个简单的“Hello World!”Web应用程序,它突出了一些Spring Boot的主要功能。我们将使用Maven来构建这个项目,因为大多数IDE都支持它。
该spring.io网站包含使用Spring的引导许多“入门”指南。如果你想解决一个特定的问题; 先检查那里。 您可以通过转到start.spring.io并 |
在开始之前,打开终端以检查您是否安装了有效的Java和Maven版本。
<span style="color:#333333"><span style="color:#000000">$ java -version
java版“1.7.0_51”
Java(TM)SE运行时环境(版本1.7.0_51-b13)
Java HotSpot(TM)64位服务器VM(内置24.51-b03,混合模式)</span></span>
<span style="color:#333333"><span style="color:#000000">$ 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版本:1.7.0_51,供应商:Oracle Corporation</span></span>
此示例需要在其自己的文件夹中创建。后续说明假定您已创建了一个合适的文件夹,并且它是您的“当前目录”。 |
11.1创建POM
我们需要从创建Maven pom.xml
文件开始。这pom.xml
是用于构建项目的配方。打开您喜欢的文本编辑器并添加以下内容:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version =“1.0”encoding =“UTF-8”?> </span>
<span style="color:#3f7f7f"><project </span> <span style="color:#7f007f">xmlns</span> = <span style="color:#2a00ff">“http://maven.apache.org/POM/4.0.0” </span> <span style="color:#7f007f">xmlns:xsi</span> = <span style="color:#2a00ff">“http://www.w3 .org / 2001 / XMLSchema-instance“ </span>
<span style="color:#7f007f">xsi:schemaLocation</span> = <span style="color:#2a00ff">”http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd“ </span><span style="color:#3f7f7f">> </span>
<span style="color:#3f7f7f"><modelVersion></span> 4.0.0 <span style="color:#3f7f7f"></ modelVersion></span>
<span style="color:#3f7f7f"><groupId></span> com.example <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> myproject <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"><version></span> 0.0.1-SNAPSHOT <span style="color:#3f7f7f"></ version></span>
<span style="color:#3f7f7f"><parent> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-starter-parent <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"><version></span> 1.3.7.RELEASE <span style="color:#3f7f7f"></ version> </span>
<span style="color:#3f7f7f"></ parent></span>
<span style="color:#3f5f5f"><em><! - 这里要添加的其他行...... - ></em></span>
<span style="color:#3f7f7f"></项目></span></span></span>
这应该给你一个工作的构建,你可以通过运行测试它mvn package
(你可以忽略“jar将是空的 - 没有内容被标记为包含!”警告现在)。
此时,您可以将项目导入IDE(大多数现代Java IDE包含对Maven的内置支持)。为简单起见,我们将继续为此示例使用纯文本编辑器。 |
11.2添加类路径依赖项
Spring Boot提供了许多“Starter POM”,可以轻松地将jar添加到类路径中。我们的示例应用程序已经spring-boot-starter-parent
在parent
POM部分中使用过 。这spring-boot-starter-parent
是一个特殊的启动器,提供有用的Maven默认值。它还提供了一个 dependency-management
部分,以便您可以省略version
“祝福”依赖项的标记。
其他“Starter POM”仅提供在开发特定类型的应用程序时可能需要的依赖项。由于我们正在开发一个Web应用程序,我们将添加一个spring-boot-starter-web
依赖项 - 但在此之前,让我们看一下我们目前拥有的内容。
<span style="color:#333333"><span style="color:#000000">$ mvn依赖:树
[INFO] com.example:myproject:jar:0.0.1-SNAPSHOT</span></span>
该mvn dependency:tree
命令打印项目依赖项的树表示。您可以看到它spring-boot-starter-parent
本身不提供依赖关系。让我们编辑我们pom.xml
并spring-boot-starter-web
在该parent
部分下面添加依赖项:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependencies> </span>
<span style="color:#3f7f7f"><dependency> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-starter-web <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"></ dependency> </span>
<span style="color:#3f7f7f"></ dependencies></span></span></span>
如果mvn dependency:tree
再次运行,您将看到现在有许多其他依赖项,包括Tomcat Web服务器和Spring Boot本身。
11.3编写代码
要完成我们的应用程序,我们需要创建一个Java文件。Maven将src/main/java
默认编译源代码,因此您需要创建该文件夹结构,然后添加一个名为的文件src/main/java/Example.java
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot。*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure。*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype。*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.web.bind.annotation。*;
<em><span style="color:gray">@RestController </span></em>
<em><span style="color:gray">@EnableAutoConfiguration</span></em>
<span style="color:#7f0055"><strong>公共</strong></span> <span style="color:#7f0055"><strong>类</strong></span>示例{
<em><span style="color:gray">@RequestMapping( “/”)</span></em>
String home(){
<span style="color:#7f0055"><strong>返回</strong></span> <span style="color:#2a00ff">“Hello World!” </span>;
}
<span style="color:#7f0055"><strong>public </strong></span> <span style="color:#7f0055"><strong>static </strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String [] args)<span style="color:#7f0055"><strong>throws</strong></span> Exception {
SpringApplication.run(例如<span style="color:#7f0055"><strong>.class</strong></span>,args);
}
}</span></span>
虽然这里的代码不多,但还是有很多代码。让我们逐步完成重要部分。
11.3.1 @RestController和@RequestMapping注释
我们Example
班上的第一个注释是@RestController
。这被称为 构造型注释。它为阅读代码的人提供了提示,对于Spring,该类扮演着特定的角色。在这种情况下,我们的类是一个Web,@Controller
因此Spring在处理传入的Web请求时会考虑它。
该@RequestMapping
注释提供“路由”的信息。它告诉Spring,任何带有路径“/”的HTTP请求都应该映射到该home
方法。该 @RestController
注解告诉Spring使得到的字符串直接返回给调用者。
在 |
11.3.2 @EnableAutoConfiguration注释
第二个类级注释是@EnableAutoConfiguration
。这个注释告诉Spring Boot根据你添加的jar依赖关系“猜测”你将如何配置Spring。自从spring-boot-starter-web
添加了Tomcat和Spring MVC 以来,自动配置将假设您正在开发Web应用程序并相应地设置Spring。
入门POM和自动配置
自动配置旨在与“Starter POM”配合使用,但这两个概念并不直接相关。您可以自由选择启动器POM之外的jar依赖项,Spring Boot仍将尽最大努力自动配置您的应用程序。
11.3.3“主要”方法
我们的应用程序的最后一部分是main
方法。这只是遵循应用程序入口点的Java约定的标准方法。我们的main方法SpringApplication
通过调用委托给Spring Boot的类run
。SpringApplication
将引导我们的应用程序,启动Spring,然后启动自动配置的Tomcat Web服务器。我们需要Example.class
作为参数传递给run
方法,以告诉SpringApplication
哪个是主要的Spring组件。该args
数组也被传递以公开任何命令行参数。
11.4运行示例
此时我们的应用程序应该可行。由于我们使用了 spring-boot-starter-parent
POM run
,因此我们可以使用一个有用的目标来启动应用程序。mvn spring-boot:run
从根项目目录中键入以启动应用程序:
<span style="color:#333333"><span style="color:#000000">$ mvn spring-boot:run
。____ _ __ _ _
/ \\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
(()\ ___ |'_ |'_ | |'_ \ / _` | \ \ \ \
\\ / ___)| | _)| | | | | || (_ | |))))
'| ____ | .__ | _ | | _ | _ | | _ \ __,| / / / / /
========= | _ | ============== | ___ / = / _ / _ / _ /
:: Spring Boot ::(v1.3.7.RELEASE)
....... 。。
....... 。。(此处输出日志)
....... 。。
........ 2.222秒启动示例(JVM运行6.514)</span></span>
如果您将Web浏览器打开到localhost:8080,您应该看到以下输出:
<span style="color:#333333"><span style="color:#000000">你好,世界!</span></span>
要优雅地退出应用程序命中ctrl-c
。
11.5创建可执行jar
让我们通过创建一个完全自包含的可执行jar文件来完成我们的示例,我们可以在生产中运行它。可执行jar(有时称为“fat jar”)是包含已编译类以及代码需要运行的所有jar依赖项的归档。
可执行的jar和Java
Java没有提供任何标准方法来加载嵌套的jar文件(即jar文件本身包含在jar中)。如果您要分发自包含的应用程序,这可能会有问题。
为了解决这个问题,许多开发人员使用“超级”罐子。优步罐只是将所有类中的所有类打包成一个存档。这种方法的问题在于,很难看到您在应用程序中实际使用的库。如果在多个罐子中使用相同的文件名(但具有不同的内容),也可能会有问题。
Spring Boot采用不同的方法,允许您直接嵌套jar。
要创建可执行jar,我们需要添加spring-boot-maven-plugin
到我们的 pom.xml
。在该dependencies
部分正下方插入以下行:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build> </span>
<span style="color:#3f7f7f"><plugins> </span>
<span style="color:#3f7f7f"><plugin> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-maven-plugin <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"></ plugin> </span>
<span style="color:#3f7f7f"></ plugins> </span>
<span style="color:#3f7f7f"></ build></span></span></span>
所述 |
pom.xml
从命令行保存并运行mvn package
:
<span style="color:#333333"><span style="color:#000000">$ mvn包
[INFO]扫描项目......
[信息]
[INFO] ----------------------------------------------- -------------------------
[INFO]构建myproject 0.0.1-SNAPSHOT
[INFO] ----------------------------------------------- -------------------------
[INFO] ....
[INFO] --- maven-jar-plugin:2.4:jar(default-jar)@ myproject ---
[INFO]构建jar:/Users/developer/example/spring-boot-example/target/myproject-0.0.1-SNAPSHOT.jar
[信息]
[INFO] --- spring-boot-maven-plugin:1.3.7.RELEASE:repackage(默认)@ myproject ---
[INFO] ----------------------------------------------- -------------------------
[信息]建立成功
[INFO] ----------------------------------------------- -------------------------</span></span>
如果你查看target
目录,你应该看到myproject-0.0.1-SNAPSHOT.jar
。该文件大小应为10 Mb左右。如果你想偷看内部,你可以使用jar tvf
:
<span style="color:#333333"><span style="color:#000000">$ jar tvf target / myproject-0.0.1-SNAPSHOT.jar</span></span>
您还应该看到目录中命名myproject-0.0.1-SNAPSHOT.jar.original
的文件小得多target
。这是Maven在Spring Boot重新打包之前创建的原始jar文件。
要运行该应用程序,请使用以下java -jar
命令:
<span style="color:#333333"><span style="color:#000000">$ java -jar target / myproject-0.0.1-SNAPSHOT.jar
。____ _ __ _ _
/ \\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
(()\ ___ |'_ |'_ | |'_ \ / _` | \ \ \ \
\\ / ___)| | _)| | | | | || (_ | |))))
'| ____ | .__ | _ | | _ | _ | | _ \ __,| / / / / /
========= | _ | ============== | ___ / = / _ / _ / _ /
:: Spring Boot ::(v1.3.7.RELEASE)
....... 。。
....... 。。(此处输出日志)
....... 。。
........ 2.536秒启动示例(JVM运行2.864)</span></span>
和以前一样,优雅地退出应用程序命中ctrl-c
。
12.接下来要读什么
希望本节为您提供了一些Spring Boot基础知识,并帮助您开始编写自己的应用程序。如果您是面向任务的开发人员类型,您可能需要跳转到spring.io并查看一些入门指南,这些指南解决了具体的“如何使用Spring执行此操作”问题; 我们还有Spring Boot特定 的操作方法参考文档。
在春季启动库也有 一堆样品可以运行。样本独立于其余代码(即您无需构建其余代码来运行或使用示例)。
否则,下一个逻辑步骤是阅读第III部分“使用Spring Boot”。如果你真的很不耐烦,你也可以跳过去阅读 Spring Boot功能。
第三部分。使用Spring Boot
本节详细介绍了如何使用Spring Boot。它涵盖了诸如构建系统,自动配置以及如何运行应用程序等主题。我们还介绍了一些Spring Boot最佳实践。虽然Spring Boot没有什么特别之处(它只是你可以使用的另一个库),但有一些建议,如果遵循这些建议,将使您的开发过程更容易一些。
如果您刚刚开始使用Spring Boot,那么在深入了解本节之前,您应该阅读“ 入门指南”。
13.构建系统
强烈建议您选择支持依赖关系管理的构建系统 ,并且可以使用发布到“Maven Central”存储库的工件。我们建议您选择Maven或Gradle。可以让Spring Boot与其他构建系统(例如Ant)一起工作,但它们不会得到特别好的支持。
13.1依赖管理
每个版本的Spring Boot都提供了它支持的依赖项的策划列表。实际上,您不需要为构建配置中的任何这些依赖项提供版本,因为Spring Boot正在为您管理这些依赖项。当您升级Spring Boot时,这些依赖项也将以一致的方式升级。
如果您认为有必要,您仍然可以指定版本并覆盖Spring Boot的建议。 |
精选列表包含可以与Spring Boot一起使用的所有spring模块以及精确的第三方库列表。该列表作为标准 物料清单(spring-boot-dependencies
)提供, 并且还提供对Maven和 Gradle的额外专用支持。
每个版本的Spring Boot都与Spring Framework的基本版本相关联,因此我们强烈建议您不要自己指定它的版本。 |
13.2 Maven
Maven用户可以从spring-boot-starter-parent
项目继承以获得合理的默认值。父项目提供以下功能:
- Java 1.6作为默认编译器级别。
- UTF-8源编码。
- 一个依赖管理部分,让您省去
<version>
了公共依赖标签,从继承的spring-boot-dependencies
POM。 - 明智的资源过滤。
- 明智的插件配置(exec插件, surefire, Git提交ID, 阴影)。
- 合理的资源过滤
application.properties
和application.yml
最后一点:由于默认配置文件接受Spring样式占位符(${…}
),Maven过滤被更改为使用@..@
占位符(您可以使用Maven属性覆盖它resource.delimiter
)。
13.2.1继承启动父级
要将项目配置为从spring-boot-starter-parent
简单设置继承parent
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em><! - 继承默认值为Spring Boot - > </em></span>
<span style="color:#3f7f7f"><parent> </span>
<span style="color:#3f7f7f"><groupId></span> org.springframework.boot <span style="color:#3f7f7f"></ groupId> </span>
<span style="color:#3f7f7f"><artifactId></span> spring-boot-starter-parent <span style="color:#3f7f7f"></ artifactId> </span>
<span style="color:#3f7f7f"><version></span> 1.3.7.RELEASE <span style="color:#3f7f7f">< / version> </span>
<span style="color:#3f7f7f"></ parent></span></span></span>
您只需要在此依赖项上指定Spring Boot版本号。如果导入其他启动器,则可以安全地省略版本号。 |
通过该设置,您还可以通过覆盖自己项目中的属性来覆盖单个依赖项。例如,要升级到另一个Spring Data版本系列,您需要将以下内容添加到您的pom.xml
。
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><properties> </span>
<span style="color:#3f7f7f"><spring-data- </span><span style="color:#3f7f7f">releasetrain.version></span>
Fowler-SR2 <span style="color:#3f7f7f"></spring-data-releasetrain.version> </span><span style="color:#3f7f7f"></ properties></span></span></span>
检查 |
13.2.2在没有父POM的情况下使用Spring Boot
不是每个人都喜欢从spring-boot-starter-parent
POM 继承。您可能拥有自己需要使用的公司标准父级,或者您可能更愿意明确声明所有Maven配置。
如果您不想使用spring-boot-starter-parent
,您仍然可以通过使用scope=import
依赖项来保持依赖项管理(但不是插件管理)的好处:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependencyManagement></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f5f5f"><em><!-- Import dependency management from Spring Boot --></em></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-dependencies<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>1.3.7.RELEASE<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"><type></span>pom<span style="color:#3f7f7f"></type></span>
<span style="color:#3f7f7f"><scope></span>import<span style="color:#3f7f7f"></scope></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span>
<span style="color:#3f7f7f"></dependencyManagement></span></span></span>
That setup does not allow you to override individual dependencies using a property as explained above. To achieve the same result, you’d need to add an entry in the dependencyManagement
of your project before the spring-boot-dependencies
entry. For instance, to upgrade to another Spring Data release train you’d add the following to your pom.xml
.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependencyManagement></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f5f5f"><em><!-- Override Spring Data release train provided by Spring Boot --></em></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.data<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-data-releasetrain<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>Fowler-SR2<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"><scope></span>import<span style="color:#3f7f7f"></scope></span>
<span style="color:#3f7f7f"><type></span>pom<span style="color:#3f7f7f"></type></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-dependencies<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>1.3.7.RELEASE<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"><type></span>pom<span style="color:#3f7f7f"></type></span>
<span style="color:#3f7f7f"><scope></span>import<span style="color:#3f7f7f"></scope></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span>
<span style="color:#3f7f7f"></dependencyManagement></span></span></span>
In the example above, we specify a BOM but any dependency type can be overridden that way. |
13.2.3 Changing the Java version
The spring-boot-starter-parent
chooses fairly conservative Java compatibility. If you want to follow our recommendation and use a later Java version you can add a java.version
property:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><properties></span>
<span style="color:#3f7f7f"><java.version></span>1.8<span style="color:#3f7f7f"></java.version></span>
<span style="color:#3f7f7f"></properties></span></span></span>
13.2.4 Using the Spring Boot Maven plugin
Spring Boot includes a Maven plugin that can package the project as an executable jar. Add the plugin to your <plugins>
section if you want to use it:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
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.3 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.
<span style="color:#333333"><span style="color:#000000">apply plugin: <span style="color:#2a00ff">'java'</span>
repositories {
jcenter()
}
dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-web:1.3.7.RELEASE"</span>)
}</span></span>
The spring-boot-gradle-plugin
is also available and provides tasks to create executable jars and run projects from source. It also provides dependency management that, among other capabilities, allows you to omit the version number for any dependencies that are managed by Spring Boot:
<span style="color:#333333"><span style="color:#000000">buildscript {
repositories {
jcenter()
}
dependencies {
classpath(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-gradle-plugin:1.3.7.RELEASE"</span>)
}
}
apply plugin: <span style="color:#2a00ff">'java'</span>
apply plugin: <span style="color:#2a00ff">'spring-boot'</span>
repositories {
jcenter()
}
dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-web"</span>)
testCompile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-test"</span>)
}</span></span>
13.4 Ant
It is possible to build a Spring Boot project using Apache Ant+Ivy. The spring-boot-antlib
“AntLib” module is also available to help Ant create executable jars.
To declare dependencies a typical ivy.xml
file will look something like this:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><ivy-module</span> <span style="color:#7f007f">version</span>=<span style="color:#2a00ff">"2.0"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><info</span> <span style="color:#7f007f">organisation</span>=<span style="color:#2a00ff">"org.springframework.boot"</span> <span style="color:#7f007f">module</span>=<span style="color:#2a00ff">"spring-boot-sample-ant"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><configurations></span>
<span style="color:#3f7f7f"><conf</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"compile"</span> <span style="color:#7f007f">description</span>=<span style="color:#2a00ff">"everything needed to compile this module"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><conf</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"runtime"</span> <span style="color:#7f007f">extends</span>=<span style="color:#2a00ff">"compile"</span> <span style="color:#7f007f">description</span>=<span style="color:#2a00ff">"everything needed to run this module"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></configurations></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency</span> <span style="color:#7f007f">org</span>=<span style="color:#2a00ff">"org.springframework.boot"</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"spring-boot-starter"</span>
<span style="color:#7f007f">rev</span>=<span style="color:#2a00ff">"${spring-boot.version}"</span> <span style="color:#7f007f">conf</span>=<span style="color:#2a00ff">"compile"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></dependencies></span>
<span style="color:#3f7f7f"></ivy-module></span></span></span>
A typical build.xml
will look like this:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><project</span>
<span style="color:#7f007f">xmlns:ivy</span>=<span style="color:#2a00ff">"antlib:org.apache.ivy.ant"</span>
<span style="color:#7f007f">xmlns:spring-boot</span>=<span style="color:#2a00ff">"antlib:org.springframework.boot.ant"</span>
<span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"myapp"</span> <span style="color:#7f007f">default</span>=<span style="color:#2a00ff">"build"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><property</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"spring-boot.version"</span> <span style="color:#7f007f">value</span>=<span style="color:#2a00ff">"1.3.0.BUILD-SNAPSHOT"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><target</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"resolve"</span> <span style="color:#7f007f">description</span>=<span style="color:#2a00ff">"--> retrieve dependencies with ivy"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><ivy:retrieve</span> <span style="color:#7f007f">pattern</span>=<span style="color:#2a00ff">"lib/[conf]/[artifact]-[type]-[revision].[ext]"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></target></span>
<span style="color:#3f7f7f"><target</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"classpaths"</span> <span style="color:#7f007f">depends</span>=<span style="color:#2a00ff">"resolve"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><path</span> <span style="color:#7f007f">id</span>=<span style="color:#2a00ff">"compile.classpath"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"lib/compile"</span> <span style="color:#7f007f">includes</span>=<span style="color:#2a00ff">"*.jar"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></path></span>
<span style="color:#3f7f7f"></target></span>
<span style="color:#3f7f7f"><target</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"init"</span> <span style="color:#7f007f">depends</span>=<span style="color:#2a00ff">"classpaths"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><mkdir</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"build/classes"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></target></span>
<span style="color:#3f7f7f"><target</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"compile"</span> <span style="color:#7f007f">depends</span>=<span style="color:#2a00ff">"init"</span> <span style="color:#7f007f">description</span>=<span style="color:#2a00ff">"compile"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><javac</span> <span style="color:#7f007f">srcdir</span>=<span style="color:#2a00ff">"src/main/java"</span> <span style="color:#7f007f">destdir</span>=<span style="color:#2a00ff">"build/classes"</span> <span style="color:#7f007f">classpathref</span>=<span style="color:#2a00ff">"compile.classpath"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></target></span>
<span style="color:#3f7f7f"><target</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"build"</span> <span style="color:#7f007f">depends</span>=<span style="color:#2a00ff">"compile"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><spring-boot:exejar</span> <span style="color:#7f007f">destfile</span>=<span style="color:#2a00ff">"build/myapp.jar"</span> <span style="color:#7f007f">classes</span>=<span style="color:#2a00ff">"build/classes"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><spring-boot:lib></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"lib/runtime"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></spring-boot:lib></span>
<span style="color:#3f7f7f"></spring-boot:exejar></span>
<span style="color:#3f7f7f"></target></span>
<span style="color:#3f7f7f"></project></span></span></span>
See the Section 79.8, “Build an executable archive from Ant without using spring-boot-antlib” “How-to” if you don’t want to use the |
13.5 Starter POMs
Starter POMs are a set of convenient dependency descriptors that you can include in your application. You get a one-stop-shop for all the Spring and related technology that you need, without having to hunt through sample code and copy paste loads of dependency descriptors. For example, if you want to get started using Spring and JPA for database access, just include the spring-boot-starter-data-jpa
dependency in your project, and you are good to go.
The starters contain a lot of the dependencies that you need to get a project up and running quickly and with a consistent, supported set of managed transitive dependencies.
What’s in a name
All official starters follow a similar naming pattern; spring-boot-starter-*
, where *
is a particular type of application. This naming structure is intended to help when you need to find a starter. The Maven integration in many IDEs allow you to search dependencies by name. For example, with the appropriate Eclipse or STS plugin installed, you can simply hit ctrl-space
in the POM editor and type “spring-boot-starter” for a complete list.
As explained in the Creating your own starter section, third party starters should not start with spring-boot
as it is reserved for official Spring Boot artifacts. A third-party starter for acme
will be typically named acme-spring-boot-starter
.
The following application starters are provided by Spring Boot under the org.springframework.boot
group:
Table 13.1. Spring Boot application starters
Name | Description |
---|---|
| The core Spring Boot starter, including auto-configuration support, logging and YAML. |
| Production ready features to help you monitor and manage your application. |
| Support for the “Advanced Message Queuing Protocol” via |
| Support for aspect-oriented programming including |
| Support for “Java Message Service API” via Apache Artemis. |
| Support for “Spring Batch” including HSQLDB database. |
| Support for Spring’s Cache abstraction. |
| Support for “Spring Cloud Connectors” which simplifies connecting to services in cloud platforms like Cloud Foundry and Heroku. |
| Support for the Elasticsearch search and analytics engine including |
| Support for the GemFire distributed data store including |
| Support for the “Java Persistence API” including |
| Support for the MongoDB NoSQL Database, including |
| Support for exposing Spring Data repositories over REST via |
| Support for the Apache Solr search platform, including |
| Support for the FreeMarker templating engine. |
| Support for the Groovy templating engine. |
| Support for HATEOAS-based RESTful services via |
| Support for “Java Message Service API” via HornetQ. |
| Support for common |
| Support for JDBC databases. |
| Support for the Jersey RESTful Web Services framework. |
| Support for JTA distributed transactions via Atomikos. |
| Support for JTA distributed transactions via Bitronix. |
| Support for |
| Support for |
| Support for the Mustache templating engine. |
| Support for the REDIS key-value data store, including |
| Support for |
| Support for |
| Support for |
| Support for |
| Support for common test dependencies, including JUnit, Hamcrest and Mockito along with the |
| Support for the Thymeleaf templating engine, including integration with Spring. |
| Support for the Velocity templating engine. |
| Support for full-stack web development, including Tomcat and |
| Support for WebSocket development. |
| Support for Spring Web Services. |
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 |
---|---|
| Adds production ready features such as metrics and monitoring. |
| Adds remote |
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 |
---|---|
| Imports the Jetty HTTP engine (to be used as an alternative to Tomcat). |
| Support the Log4J logging framework. |
| Import Spring Boot’s default logging framework (Logback). |
| Import Spring Boot’s default HTTP engine (Tomcat). |
| Imports the Undertow HTTP engine (to be used as an alternative to Tomcat). |
For a list of additional community contributed starter POMs, see the README file in the |
14. Structuring your code
Spring Boot does not require any specific code layout to work, however, there are some best practices that help.
14.1 Using the “default” package
When a class doesn’t include a package
declaration it is considered to be in the “default package”. The use of the “default package” is generally discouraged, and should be avoided. It can cause particular problems for Spring Boot applications that use @ComponentScan
, @EntityScan
or @SpringBootApplication
annotations, since every class from every jar, will be read.
We recommend that you follow Java’s recommended package naming conventions and use a reversed domain name (for example, |
14.2 Locating the main application class
We generally recommend that you locate your main application class in a root package above other classes. The @EnableAutoConfiguration
annotation is often placed on your main class, and it implicitly defines a base “search package” for certain items. For example, if you are writing a JPA application, the package of the @EnableAutoConfiguration
annotated class will be used to search for @Entity
items.
Using a root package also allows the @ComponentScan
annotation to be used without needing to specify a basePackage
attribute. You can also use the@SpringBootApplication
annotation if your main class is in the root package.
Here is a typical layout:
<span style="color:#333333"><span style="color:#000000">com
+- example
+- myproject
+- Application.java
|
+- domain
| +- Customer.java
| +- CustomerRepository.java
|
+- service
| +- CustomerService.java
|
+- web
+- CustomerController.java</span></span>
The Application.java
file would declare the main
method, along with the basic @Configuration
.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> com.example.myproject;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.SpringApplication;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure.EnableAutoConfiguration;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.context.annotation.ComponentScan;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.context.annotation.Configuration;
<em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableAutoConfiguration</span></em>
<em><span style="color:gray">@ComponentScan</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Application {
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) {
SpringApplication.run(Application.<span style="color:#7f0055"><strong>class</strong></span>, args);
}
}</span></span>
15. Configuration classes
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
.
Many Spring configuration examples have been published on the Internet that use XML configuration. Always try to use the equivalent Java-based configuration if possible. Searching for |
15.1 Importing additional configuration classes
You don’t need to put all your @Configuration
into a single class. The @Import
annotation can be used to import additional configuration classes. Alternatively, you can use @ComponentScan
to automatically pick up all Spring components, including @Configuration
classes.
15.2 Importing XML configuration
If you absolutely must use XML based configuration, we recommend that you still start with a @Configuration
class. You can then use an additional @ImportResource
annotation to load XML configuration files.
16. Auto-configuration
Spring Boot auto-configuration attempts to automatically configure your Spring application based on the jar dependencies that you have added. For example, IfHSQLDB
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.
You should only ever add one |
16.1 Gradually replacing auto-configuration
Auto-configuration is noninvasive, at any point you can start to define your own configuration to replace specific parts of the auto-configuration. For example, if you add your own DataSource
bean, the default embedded database support will back away.
If you need to find out what auto-configuration is currently being applied, and why, start your application with the --debug
switch. This will log an auto-configuration report to the console.
16.2 Disabling specific auto-configuration
If you find that specific auto-configure classes are being applied that you don’t want, you can use the exclude attribute of @EnableAutoConfiguration
to disable them.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure.*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure.jdbc.*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.context.annotation.*;
<em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyConfiguration {
}</span></span>
If the class is not on the classpath, you can use the excludeName
attribute of the annotation and specify the fully qualified name instead. Finally, you can also control the list of auto-configuration classes to exclude via the spring.autoconfigure.exclude
property.
You can define exclusions both at the annotation level and using the property. |
17. Spring Beans and dependency injection
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.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> com.example.service;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.Autowired;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Service;
<em><span style="color:gray">@Service</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> DatabaseAccountService <span style="color:#7f0055"><strong>implements</strong></span> AccountService {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> RiskAssessor riskAssessor;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> DatabaseAccountService(RiskAssessor riskAssessor) {
<span style="color:#7f0055"><strong>this</strong></span>.riskAssessor = riskAssessor;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
Notice how using constructor injection allows the |
18. Using the @SpringBootApplication annotation
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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> com.example.myproject;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.SpringApplication;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure.SpringBootApplication;
<em><span style="color:gray">@SpringBootApplication</span></em> <span style="color:#3f5f5f"><em>// same as @Configuration @EnableAutoConfiguration @ComponentScan</em></span>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Application {
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) {
SpringApplication.run(Application.<span style="color:#7f0055"><strong>class</strong></span>, args);
}
}</span></span>
|
19. Running your application
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 don’t need any special IDE plugins or extensions.
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. |
19.1 Running from an IDE
You can run a Spring Boot application from your IDE as a simple Java application, however, first you will need to import your project. Import steps will vary depending on your IDE and build system. Most IDEs can import Maven projects directly, for example Eclipse users can select Import…
→ Existing Maven Projects
from the File
menu.
If you can’t directly import your project into your IDE, you may be able to generate IDE metadata using a build plugin. Maven includes plugins for Eclipse andIDEA; Gradle offers plugins for various IDEs.
If you accidentally run a web application twice you will see a “Port already in use” error. STS users can use the |
19.2 Running as a packaged application
If you use the Spring Boot Maven or Gradle plugins to create an executable jar you can run your application using java -jar
. For example:
<span style="color:#333333"><span style="color:#000000">$ java -jar target/myproject-0.0.1-SNAPSHOT.jar</span></span>
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:
<span style="color:#333333"><span style="color:#000000">$ java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=8000,suspend=n \
-jar target/myproject-0.0.1-SNAPSHOT.jar</span></span>
19.3 Using the Maven plugin
The Spring Boot Maven plugin includes a run
goal which can be used to quickly compile and run your application. Applications run in an exploded form just like in your IDE.
<span style="color:#333333"><span style="color:#000000">$ mvn spring-boot:run</span></span>
You might also want to use the useful operating system environment variable:
<span style="color:#333333"><span style="color:#000000">$ export MAVEN_OPTS=-Xmx1024m -XX:MaxPermSize=128M -Djava.security.egd=file:/dev/./urandom</span></span>
(The “egd” setting is to speed up Tomcat startup by giving it a faster source of entropy for session keys.)
19.4 Using the Gradle plugin
The Spring Boot Gradle plugin also includes a bootRun
task which can be used to run your application in an exploded form. The bootRun
task is added whenever you import the spring-boot-gradle-plugin
:
<span style="color:#333333"><span style="color:#000000">$ gradle bootRun</span></span>
You might also want to use this useful operating system environment variable:
<span style="color:#333333"><span style="color:#000000">$ export JAVA_OPTS=-Xmx1024m -XX:MaxPermSize=128M -Djava.security.egd=file:/dev/./urandom</span></span>
19.5 Hot swapping
Since Spring Boot applications are just plain Java applications, JVM hot-swapping should work out of the box. JVM hot swapping is somewhat limited with the bytecode that it can replace, for a more complete solution JRebel or the Spring Loaded project can be used. The spring-boot-devtools
module also includes support for quick application restarts.
See the Chapter 20, Developer tools section below and the Hot swapping “How-to” for details.
20. Developer tools
Spring Boot includes an additional set of tools that can make the application development experience a little more pleasant. The spring-boot-devtools
module can be included in any project to provide additional development-time features. To include devtools support, simply add the module dependency to your build:
Maven.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-devtools<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><optional></span>true<span style="color:#3f7f7f"></optional></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span></span></span>
Gradle.
<span style="color:#333333"><span style="color:#000000">dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-devtools"</span>)
}</span></span>
Developer tools are automatically disabled when running a fully packaged application. If your application is launched using |
If you want to ensure that devtools is never included in a production build, you can use the |
20.1 Property defaults
Several of the libraries supported by Spring Boot use caches to improve performance. For example, Thymeleaf will cache templates to save repeatedly parsing XML source files. Whilst caching is very beneficial in production, it can be counter productive during development. If you make a change to a template file in your IDE, you’ll likely want to immediately see the result.
Cache options are usually configured by settings in your application.properties
file. For example, Thymeleaf offers the spring.thymeleaf.cache
property. Rather than needing to set these properties manually, the spring-boot-devtools
module will automatically apply sensible development-time configuration.
For a complete list of the properties that are applied see DevToolsPropertyDefaultsPostProcessor. |
20.2 Automatic restart
Applications that use spring-boot-devtools
will automatically restart whenever files on the classpath change. This can be a useful feature when working in an IDE as it gives a very fast feedback loop for code changes. By default, any entry on the classpath that points to a folder will be monitored for changes. Note that certain resources such as static assets and view templates do not need to restart the application.
Triggering a restart
As DevTools monitors classpath resources, the only way to trigger a restart is to update the classpath. The way in which you cause the classpath to be updated depends on the IDE that you are using. In Eclipse, saving a modified file will cause the classpath to be updated and trigger a restart. In IntelliJ IDEA, building the project (Build → Make Project
) will have the same effect.
You can also start your application via the supported build plugins (i.e. Maven and Gradle) as long as forking is enabled since DevTools need an isolated application classloader to operate properly. You can force the plugin to fork the process as follows: Maven.
Gradle.
|
Automatic restart works very well when used with LiveReload. See below for details. If you use JRebel automatic restarts will be disabled in favor of dynamic class reloading. Other devtools features (such as LiveReload and property overrides) can still be used. |
DevTools relies on the application context’s shutdown hook to close it during a restart. It will not work correctly if you have disabled the shutdown hook ( |
When deciding if an entry on the classpath should trigger a restart when it changes, DevTools automatically ignores projects named |
Restart vs Reload
The restart technology provided by Spring Boot works by using two classloaders. Classes that don’t change (for example, those from third-party jars) are loaded into a base classloader. Classes that you’re actively developing are loaded into a restart classloader. When the application is restarted, the restartclassloader is thrown away and a new one is created. This approach means that application restarts are typically much faster than “cold starts” since the base classloader is already available and populated.
If you find that restarts aren’t quick enough for your applications, or you encounter classloading issues, you could consider reloading technologies such asJRebel from ZeroTurnaround. These work by rewriting classes as they are loaded to make them more amenable to reloading. Spring Loaded provides another option, however it doesn’t support as many frameworks and it isn’t commercially supported.
20.2.1 Excluding resources
Certain resources don’t necessarily need to trigger a restart when they are changed. For example, Thymeleaf templates can just be edited in-place. By default changing resources in /META-INF/maven
, /META-INF/resources
,/resources
,/static
,/public
or /templates
will not trigger a restart but will trigger a live reload. If you want to customize these exclusions you can use the spring.devtools.restart.exclude
property. For example, to exclude only/static
and /public
you would set the following:
<span style="color:#333333"><span style="color:#000000">spring.devtools.restart.exclude=static/**,public/**</span></span>
if you want to keep those defaults and add additional exclusions, use the |
20.2.2 Watching additional paths
You may want your application to be restarted or reloaded when you make changes to files that are not on the classpath. To do so, use thespring.devtools.restart.additional-paths
property to configure additional paths to watch for changes. You can use the spring.devtools.restart.exclude
property described above to control whether changes beneath the additional paths will trigger a full restart or just a live reload.
20.2.3 Disabling restart
If you don’t want to use the restart feature you can disable it using the spring.devtools.restart.enabled
property. In most cases you can set this in yourapplication.properties
(this will still initialize the restart classloader but it won’t watch for file changes).
If you need to completely disable restart support, for example, because it doesn’t work with a specific library, you need to set a System
property before callingSpringApplication.run(…)
. For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) {
System.setProperty(<span style="color:#2a00ff">"spring.devtools.restart.enabled"</span>, <span style="color:#2a00ff">"false"</span>);
SpringApplication.run(MyApp.<span style="color:#7f0055"><strong>class</strong></span>, args);
}</span></span>
20.2.4 Using a trigger file
If you work with an IDE that continuously compiles changed files, you might prefer to trigger restarts only at specific times. To do this you can use a “trigger file”, which is a special file that must be modified when you want to actually trigger a restart check. The trigger file could be updated manually, or via an IDE plugin.
To use a trigger file use the spring.devtools.restart.trigger-file
property.
You might want to set |
20.2.5 Customizing the restart classloader
As described in the Restart vs Reload section above, restart functionality is implemented by using two classloaders. For most applications this approach works well, however, sometimes it can cause classloading issues.
By default, any open project in your IDE will be loaded using the “restart” classloader, and any regular .jar
file will be loaded using the “base” classloader. If you work on a multi-module project, and not each module is imported into your IDE, you may need to customize things. To do this you can create a META-INF/spring-devtools.properties
file.
The spring-devtools.properties
file can contain restart.exclude.
and restart.include.
prefixed properties. The include
elements are items that should be pulled up into the “restart” classloader, and the exclude
elements are items that should be pushed down into the “base” classloader. The value of the property is a regex pattern that will be applied to the classpath.
For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">restart.include.companycommonlibs</span>=/mycorp-common-[\\w-]+\.jar
<span style="color:#7f007f">restart.include.projectcommon</span>=/mycorp-myproj-[\\w-]+\.jar</span></span>
All property keys must be unique. As long as a property starts with |
All |
20.2.6 Known limitations
Restart functionality does not work well with objects that are deserialized using a standard ObjectInputStream
. If you need to deserialize data, you may need to use Spring’s ConfigurableObjectInputStream
in combination with Thread.currentThread().getContextClassLoader()
.
Unfortunately, several third-party libraries deserialize without considering the context classloader. If you find such a problem, you will need to request a fix with the original authors.
20.3 LiveReload
The spring-boot-devtools
module includes an embedded LiveReload server that can be used to trigger a browser refresh when a resource is changed. LiveReload browser extensions are freely available for Chrome, Firefox and Safari from livereload.com.
If you don’t want to start the LiveReload server when your application runs you can set the spring.devtools.livereload.enabled
property to false
.
You can only run one LiveReload server at a time, if you start multiple applications from your IDE only the first will have livereload support. |
20.4 Global settings
You can configure global devtools settings by adding a file named .spring-boot-devtools.properties
to your $HOME
folder (note that the filename starts with “.”). Any properties added to this file will apply to all Spring Boot applications on your machine that use devtools. For example, to configure restart to always use a trigger file, you would add the following:
~/.spring-boot-devtools.properties.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.devtools.reload.trigger-file</span>=.reloadtrigger</span></span>
20.5 Remote applications
The Spring Boot developer tools are not just limited to local development. You can also use several features when running applications remotely. Remote support is opt-in, to enable it you need to set a spring.devtools.remote.secret
property. For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.devtools.remote.secret</span>=mysecret</span></span>
Enabling |
Remote devtools support is provided in two parts; there is a server side endpoint that accepts connections, and a client application that you run in your IDE. The server component is automatically enabled when the spring.devtools.remote.secret
property is set. The client component must be launched manually.
20.5.1 Running the remote client application
The remote client application is designed to be run from within you IDE. You need to runorg.springframework.boot.devtools.RemoteSpringApplication
using the same classpath as the remote project that you’re connecting to. The non-option argument passed to the application should be the remote URL that you are connecting to.
For example, if you are using Eclipse or STS, and you have a project named my-app
that you’ve deployed to Cloud Foundry, you would do the following:
- Select
Run Configurations…
from theRun
menu. - Create a new
Java Application
“launch configuration”. - Browse for the
my-app
project. - Use
org.springframework.boot.devtools.RemoteSpringApplication
as the main class. - Add
https://myapp.cfapps.io
to theProgram arguments
(or whatever your remote URL is).
A running remote client will look like this:
<span style="color:#333333"><span style="color:#000000"> . ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ ___ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | | _ \___ _ __ ___| |_ ___ \ \ \ \
\\/ ___)| |_)| | | | | || (_| []::::::[] / -_) ' \/ _ \ _/ -_) ) ) ) )
' |____| .__|_| |_|_| |_\__, | |_|_\___|_|_|_\___/\__\___|/ / / /
=========|_|==============|___/===================================/_/_/_/
:: Spring Boot Remote :: 1.3.7.RELEASE
2015-06-10 18:25:06.632 INFO 14938 --- [ main] o.s.b.devtools.RemoteSpringApplication : Starting RemoteSpringApplication on pwmbp with PID 14938 (/Users/pwebb/projects/spring-boot/code/spring-boot-devtools/target/classes started by pwebb in /Users/pwebb/projects/spring-boot/code/spring-boot-samples/spring-boot-sample-devtools)
2015-06-10 18:25:06.671 INFO 14938 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@2a17b7b6: startup date [Wed Jun 10 18:25:06 PDT 2015]; root of context hierarchy
2015-06-10 18:25:07.043 WARN 14938 --- [ main] o.s.b.d.r.c.RemoteClientConfiguration : The connection to http://localhost:8080 is insecure. You should use a URL starting with 'https://'.
2015-06-10 18:25:07.074 INFO 14938 --- [ main] o.s.b.d.a.OptionalLiveReloadServer : LiveReload server is running on port 35729
2015-06-10 18:25:07.130 INFO 14938 --- [ main] o.s.b.devtools.RemoteSpringApplication : Started RemoteSpringApplication in 0.74 seconds (JVM running for 1.105)</span></span>
Because the remote client is using the same classpath as the real application it can directly read application properties. This is how the |
It’s always advisable to use |
If you need to use a proxy to access the remote application, configure the |
20.5.2 Remote update
The remote client will monitor your application classpath for changes in the same way as the local restart. Any updated resource will be pushed to the remote application and (if required) trigger a restart. This can be quite helpful if you are iterating on a feature that uses a cloud service that you don’t have locally. Generally remote updates and restarts are much quicker than a full rebuild and deploy cycle.
Files are only monitored when the remote client is running. If you change a file before starting the remote client, it won’t be pushed to the remote server. |
20.5.3 Remote debug tunnel
Java remote debugging is useful when diagnosing issues on a remote application. Unfortunately, it’s not always possible to enable remote debugging when your application is deployed outside of your data center. Remote debugging can also be tricky to setup if you are using a container based technology such as Docker.
To help work around these limitations, devtools supports tunneling of remote debug traffic over HTTP. The remote client provides a local server on port 8000
that you can attach a remote debugger to. Once a connection is established, debug traffic is sent over HTTP to the remote application. You can use the spring.devtools.remote.debug.local-port
property if you want to use a different port.
You’ll need to ensure that your remote application is started with remote debugging enabled. Often this can be achieved by configuring JAVA_OPTS
. For example, with Cloud Foundry you can add the following to your manifest.yml
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f"> env</span>:
<span style="color:#7f007f"> JAVA_OPTS</span>: <span style="color:#2a00ff">"-Xdebug -Xrunjdwp:server=y,transport=dt_socket,suspend=n"</span></span></span>
Notice that you don’t need to pass an |
Debugging a remote service over the Internet can be slow and you might need to increase timeouts in your IDE. For example, in Eclipse you can select |
21. Packaging your application for production
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 end-points; consider adding spring-boot-actuator
. See Part V, “Spring Boot Actuator: Production-ready features” for details.
22. What to read next
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.
Part IV. Spring Boot features
This section dives into the details of Spring Boot. Here you can learn about the key features that you will want to use and customize. If you haven’t already, you might want to read the Part II, “Getting started” and Part III, “Using Spring Boot” sections so that you have a good grounding of the basics.
23. SpringApplication
The SpringApplication
class provides a convenient way to bootstrap a Spring application that will be started from a main()
method. In many situations you can just delegate to the static SpringApplication.run
method:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) {
SpringApplication.run(MySpringConfiguration.<span style="color:#7f0055"><strong>class</strong></span>, args);
}</span></span>
When your application starts you should see something similar to the following:
<span style="color:#333333"><span style="color:#000000"> . ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: v1.3.7.RELEASE
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)</span></span>
By default INFO
logging messages will be shown, including some relevant startup details such as the user that launched the application.
23.1 Customizing the Banner
The banner that is printed on start up can be changed by adding a banner.txt
file to your classpath, or by setting banner.location
to the location of such a file. If the file has an unusual encoding you can set banner.charset
(default is UTF-8
).
You can use the following variables inside your banner.txt
file:
Table 23.1. Banner variables
Variable | Description |
---|---|
| The version number of your application as declared in |
| The version number of your application as declared in |
| The Spring Boot version that you are using. For example |
| The Spring Boot version that you are using formatted for display (surrounded with brackets and prefixed with |
| Where |
| The title of your application as declared in |
The |
You can also use the spring.main.banner-mode
property to determine if the banner has to be printed on System.out
(console
), using the configured logger (log
) or not at all (off
).
YAML maps |
23.2 Customizing SpringApplication
If the SpringApplication
defaults aren’t to your taste you can instead create a local instance and customize it. For example, to turn off the banner you would write:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) {
SpringApplication app = <span style="color:#7f0055"><strong>new</strong></span> SpringApplication(MySpringConfiguration.<span style="color:#7f0055"><strong>class</strong></span>);
app.setBannerMode(Banner.Mode.OFF);
app.run(args);
}</span></span>
The constructor arguments passed to |
It is also possible to configure the SpringApplication
using an application.properties
file. See Chapter 24, Externalized Configuration for details.
For a complete list of the configuration options, see the SpringApplication
Javadoc.
23.3 Fluent builder API
If you need to build an ApplicationContext
hierarchy (multiple contexts with a parent/child relationship), or if you just prefer using a ‘fluent’ builder API, you can use the SpringApplicationBuilder
.
The SpringApplicationBuilder
allows you to chain together multiple method calls, and includes parent
and child
methods that allow you to create a hierarchy.
For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>new</strong></span> SpringApplicationBuilder()
.bannerMode(Banner.Mode.OFF)
.sources(Parent.<span style="color:#7f0055"><strong>class</strong></span>)
.child(Application.<span style="color:#7f0055"><strong>class</strong></span>)
.run(args);</span></span>
There are some restrictions when creating an |
23.4 Application events and listeners
In addition to the usual Spring Framework events, such as ContextRefreshedEvent
, a SpringApplication
sends some additional application events.
Some events are actually triggered before the If you want those listeners to be registered automatically regardless of the way the application is created you can add a |
Application events are sent in the following order, as your application runs:
- An
ApplicationStartedEvent
is sent at the start of a run, but before any processing except the registration of listeners and initializers. - An
ApplicationEnvironmentPreparedEvent
is sent when theEnvironment
to be used in the context is known, but before the context is created. - An
ApplicationPreparedEvent
is sent just before the refresh is started, but after bean definitions have been loaded. - An
ApplicationReadyEvent
is sent after the refresh and any related callbacks have been processed to indicate the application is ready to service requests. - An
ApplicationFailedEvent
is sent if there is an exception on startup.
You often won’t need to use application events, but it can be handy to know that they exist. Internally, Spring Boot uses events to handle a variety of tasks. |
23.5 Web environment
A SpringApplication
will attempt to create the right type of ApplicationContext
on your behalf. By default, an AnnotationConfigApplicationContext
or AnnotationConfigEmbeddedWebApplicationContext
will be used, depending on whether you are developing a web application or not.
The algorithm used to determine a ‘web environment’ is fairly simplistic (based on the presence of a few classes). You can use setWebEnvironment(boolean webEnvironment)
if you need to override the default.
It is also possible to take complete control of the ApplicationContext
type that will be used by calling setApplicationContextClass(…)
.
It is often desirable to call |
23.6 Accessing application arguments
If you need to access the application arguments that were passed to SpringApplication.run(…)
you can inject aorg.springframework.boot.ApplicationArguments
bean. The ApplicationArguments
interface provides access to both the raw String[]
arguments as well as parsed option
and non-option
arguments:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.*
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.*
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.*
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(ApplicationArguments args) {
<span style="color:#7f0055"><strong>boolean</strong></span> debug = args.containsOption(<span style="color:#2a00ff">"debug"</span>);
List<String> files = args.getNonOptionArgs();
<span style="color:#3f5f5f"><em>// if run with "--debug logfile.txt" debug=true, files=["logfile.txt"]</em></span>
}
}</span></span>
Spring Boot will also register a |
23.7 Using the ApplicationRunner or CommandLineRunner
If you need to run some specific code once the SpringApplication
has started, you can implement the ApplicationRunner
or CommandLineRunner
interfaces. Both interfaces work in the same way and offer a single run
method which will be called just before SpringApplication.run(…)
completes.
The CommandLineRunner
interfaces provides access to application arguments as a simple string array, whereas the ApplicationRunner
uses the ApplicationArguments
interface discussed above.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.*
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.*
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean <span style="color:#7f0055"><strong>implements</strong></span> CommandLineRunner {
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> run(String... args) {
<span style="color:#3f5f5f"><em>// Do something...</em></span>
}
}</span></span>
You can additionally implement the org.springframework.core.Ordered
interface or use the org.springframework.core.annotation.Order
annotation if several CommandLineRunner
or ApplicationRunner
beans are defined that must be called in a specific order.
23.8 Application exit
Each SpringApplication
will register a shutdown hook with the JVM to ensure that the ApplicationContext
is closed gracefully on exit. All the standard Spring lifecycle callbacks (such as the DisposableBean
interface, or the @PreDestroy
annotation) can be used.
In addition, beans may implement the org.springframework.boot.ExitCodeGenerator
interface if they wish to return a specific exit code when the application ends.
23.9 Admin features
It is possible to enable admin-related features for the application by specifying the spring.application.admin.enabled
property. This exposes theSpringApplicationAdminMXBean
on the platform MBeanServer
. You could use this feature to administer your Spring Boot application remotely. This could also be useful for any service wrapper implementation.
If you want to know on which HTTP port the application is running, get the property with key |
Take care when enabling this feature as the MBean exposes a method to shutdown the application. |
24. Externalized Configuration
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 Spring’s Environment
abstraction or bound to structured objects via @ConfigurationProperties
.
Spring Boot uses a very particular PropertySource
order that is designed to allow sensible overriding of values, properties are considered in the following order:
- Command line arguments.
- Properties from
SPRING_APPLICATION_JSON
(inline JSON embedded in an environment variable or system property) - JNDI attributes from
java:comp/env
. - Java System properties (
System.getProperties()
). - OS environment variables.
- A
RandomValuePropertySource
that only has properties inrandom.*
. - Profile-specific application properties outside of your packaged jar (
application-{profile}.properties
and YAML variants) - Profile-specific application properties packaged inside your jar (
application-{profile}.properties
and YAML variants) - Application properties outside of your packaged jar (
application.properties
and YAML variants). - Application properties packaged inside your jar (
application.properties
and YAML variants). @PropertySource
annotations on your@Configuration
classes.- Default properties (specified using
SpringApplication.setDefaultProperties
).
To provide a concrete example, suppose you develop a @Component
that uses a name
property:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.*
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.*
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<em><span style="color:gray">@Value("${name}")</span></em>
<span style="color:#7f0055"><strong>private</strong></span> String name;
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
On your application classpath (e.g. inside your jar) you can have an application.properties
that provides a sensible default property value for name
. When running in a new environment, an application.properties
can be provided outside of your jar that overrides the name
; and for one-off testing, you can launch with a specific command line switch (e.g. java -jar app.jar --name="Spring"
).
The In this example you will end up with or command line argument: or as a JNDI variable |
24.1 Configuring random values
The RandomValuePropertySource
is useful for injecting random values (e.g. into secrets or test cases). It can produce integers, longs or strings, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">my.secret</span>=${random.value}
<span style="color:#7f007f">my.number</span>=${random.int}
<span style="color:#7f007f">my.bignumber</span>=${random.long}
<span style="color:#7f007f">my.number.less.than.ten</span>=${random.int(10)}
<span style="color:#7f007f">my.number.in.range</span>=${random.int[1024,65536]}</span></span>
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).
24.2 Accessing command line properties
By default SpringApplication
will convert any command line option arguments (starting with ‘--’, e.g. --server.port=9000
) to a property
and add it to the Spring Environment
. As mentioned above, command line properties always take precedence over other property sources.
If you don’t want command line properties to be added to the Environment
you can disable them using SpringApplication.setAddCommandLineProperties(false)
.
24.3 Application property files
SpringApplication
will load properties from application.properties
files in the following locations and add them to the Spring Environment
:
- A
/config
subdirectory of the current directory. - The current directory
- A classpath
/config
package - The classpath root
The list is ordered by precedence (properties defined in locations higher in the list override those defined in lower locations).
You can also use YAML ('.yml') files as an alternative to '.properties'. |
If you don’t like application.properties
as the configuration file name you can switch to another by specifying a spring.config.name
environment property. You can also refer to an explicit location using the spring.config.location
environment property (comma-separated list of directory locations, or file paths).
<span style="color:#333333"><span style="color:#000000">$ java -jar myproject.jar --spring.config.name=myproject</span></span>
or
<span style="color:#333333"><span style="color:#000000">$ java -jar myproject.jar --spring.config.location=classpath:/default.properties,classpath:/override.properties</span></span>
|
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, including profile-specific file names). Files specified in spring.config.location
are used as-is, with no support for profile-specific variants, and will be overridden by any profile-specific properties.
The default search path classpath:,classpath:/config,file:,file:config/
is always used, irrespective of the value of spring.config.location
. This search path is ordered from lowest to highest precedence (file:config/
wins). If you do specify your own locations, they take precedence over all of the default locations and use the same lowest to highest precedence ordering. 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.
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. |
If you are running in a container then JNDI properties (in |
24.4 Profile-specific properties
In addition to application.properties
files, profile-specific properties can also be defined using the naming convention application-{profile}.properties
. The Environment
has a set of default profiles (by default [default]
) which are used if no active profiles are set (i.e. if no profiles are explicitly activated then properties from application-default.properties
are loaded).
Profile-specific properties are loaded from the same locations as standard application.properties
, with profile-specific files always overriding the non-specific ones irrespective of whether the profile-specific files are inside or outside your packaged jar.
If several profiles are specified, a last wins strategy applies. For example, profiles specified by the spring.profiles.active
property are added after those configured via the SpringApplication
API and therefore take precedence.
If you have specified any files in |
24.5 Placeholders in properties
The values in application.properties
are filtered through the existing Environment
when they are used so you can refer back to previously defined values (e.g. from System properties).
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">app.name</span>=MyApp
<span style="color:#7f007f">app.description</span>=${app.name} is a Spring Boot application</span></span>
You can also use this technique to create ‘short’ variants of existing Spring Boot properties. See the Section 69.3, “Use ‘short’ command line arguments” how-to for details. |
24.6 Using YAML instead of Properties
YAML is a superset of JSON, and as such is a very convenient format for specifying hierarchical configuration data. The SpringApplication
class will automatically support YAML as an alternative to properties whenever you have the SnakeYAML library on your classpath.
If you use ‘starter POMs’ SnakeYAML will be automatically provided via |
24.6.1 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">environments</span>:
<span style="color:#7f007f"> dev</span>:
<span style="color:#7f007f"> url</span>: http://dev.bar.com
<span style="color:#7f007f"> name</span>: Developer Setup
<span style="color:#7f007f"> prod</span>:
<span style="color:#7f007f"> url</span>: http://foo.bar.com
<span style="color:#7f007f"> name</span>: My Cool App</span></span>
Would be transformed into these properties:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">environments.dev.url</span>=http://dev.bar.com
<span style="color:#7f007f">environments.dev.name</span>=Developer Setup
<span style="color:#7f007f">environments.prod.url</span>=http://foo.bar.com
<span style="color:#7f007f">environments.prod.name</span>=My Cool App</span></span>
YAML lists are represented as property keys with [index]
dereferencers, for example this YAML:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">my</span>:
<span style="color:#7f007f"> servers</span>:
- dev.bar.com
- foo.bar.com</span></span>
Would be transformed into these properties:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">my.servers[0]</span>=dev.bar.com
<span style="color:#7f007f">my.servers[1]</span>=foo.bar.com</span></span>
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
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@ConfigurationProperties(prefix="my")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Config {
<span style="color:#7f0055"><strong>private</strong></span> List<String> servers = <span style="color:#7f0055"><strong>new</strong></span> ArrayList<String>();
<span style="color:#7f0055"><strong>public</strong></span> List<String> getServers() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>this</strong></span>.servers;
}
}</span></span>
24.6.2 Exposing YAML as properties in the Spring Environment
The YamlPropertySourceLoader
class can be used to expose YAML as a PropertySource
in the Spring Environment
. This allows you to use the familiar @Value
annotation with placeholders syntax to access YAML properties.
24.6.3 Multi-profile YAML documents
You can specify multiple profile-specific YAML documents in a single file by using a spring.profiles
key to indicate when the document applies. For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> address</span>: 192.168.1.100
<span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">spring</span>:
<span style="color:#7f007f"> profiles</span>: development
<span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> address</span>: 127.0.0.1
<span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">spring</span>:
<span style="color:#7f007f"> profiles</span>: production
<span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> address</span>: 192.168.1.120</span></span>
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
.
The default profiles are activated if none are explicitly active when the application context starts. So in this YAML we set a value for security.user.password
that is only available in the "default" profile:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> port</span>: 8000
<span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">spring</span>:
<span style="color:#7f007f"> profiles</span>: default
<span style="color:#7f007f">security</span>:
<span style="color:#7f007f"> user</span>:
<span style="color:#7f007f"> password</span>: weak</span></span>
whereas in this example, the password is always set because it isn’t attached to any profile, and it would have to be explicitly reset in all other profiles as necessary:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> port</span>: 8000
<span style="color:#7f007f">security</span>:
<span style="color:#7f007f"> user</span>:
<span style="color:#7f007f"> password</span>: weak</span></span>
24.6.4 YAML shortcomings
YAML files can’t be loaded via the @PropertySource
annotation. So in the case that you need to load values that way, you need to use a properties file.
24.7 Type-safe Configuration Properties
Using the @Value("${property}")
annotation to inject configuration properties can sometimes be cumbersome, especially if you are working with multiple properties or your data is hierarchical in nature. Spring Boot provides an alternative method of working with properties that allows strongly typed beans to govern and validate the configuration of your application. For example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="connection")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> ConnectionSettings {
<span style="color:#7f0055"><strong>private</strong></span> String username;
<span style="color:#7f0055"><strong>private</strong></span> InetAddress remoteAddress;
<span style="color:#3f5f5f"><em>// ... getters and setters</em></span>
}</span></span>
The getters and setters are advisable, since binding is via standard Java Beans property descriptors, just like in Spring MVC. They are mandatory for immutable types or those that are directly coercible from |
Contrary to |
The @EnableConfigurationProperties
annotation is automatically applied to your project so that any beans annotated with @ConfigurationProperties
will be configured from the Environment
properties. This style of configuration works particularly well with the SpringApplication
external YAML configuration:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em># application.yml</em></span>
<span style="color:#7f007f">connection</span>:
<span style="color:#7f007f"> username</span>: admin
<span style="color:#7f007f"> remoteAddress</span>: 192.168.1.1
<span style="color:#3f5f5f"><em># additional configuration as required</em></span></span></span>
To work with @ConfigurationProperties
beans you can just inject them in the same way as any other bean.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Service</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyService {
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>private</strong></span> ConnectionSettings connection;
<span style="color:#3f5f5f"><em>//...</em></span>
<em><span style="color:gray">@PostConstruct</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> openConnection() {
Server server = <span style="color:#7f0055"><strong>new</strong></span> Server();
<span style="color:#7f0055"><strong>this</strong></span>.connection.configure(server);
}
}</span></span>
It is also possible to shortcut the registration of @ConfigurationProperties
bean definitions by simply listing the properties classes directly in the@EnableConfigurationProperties
annotation:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableConfigurationProperties(ConnectionSettings.class)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyConfiguration {
}</span></span>
Using |
24.7.1 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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@ConfigurationProperties(prefix = "foo")</span></em>
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> FooComponent fooComponent() {
...
}</span></span>
Any property defined with the foo
prefix will be mapped onto that FooComponent
bean in a similar manner as the ConnectionSettings
example above.
24.7.2 Relaxed binding
Spring Boot uses some relaxed rules for binding Environment
properties to @ConfigurationProperties
beans, so there doesn’t need to be an exact match between the Environment
property name and the bean property name. Common examples where this is useful include 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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="person")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> ConnectionSettings {
<span style="color:#7f0055"><strong>private</strong></span> String firstName;
<span style="color:#7f0055"><strong>public</strong></span> String getFirstName() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>this</strong></span>.firstName;
}
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> setFirstName(String firstName) {
<span style="color:#7f0055"><strong>this</strong></span>.firstName = firstName;
}
}</span></span>
The following properties names can all be used:
Table 24.1. relaxed binding
Property | Note |
---|---|
| Standard camel case syntax. |
| Dashed notation, recommended for use in |
| Underscore notation, alternative format for use in |
| Upper case format. Recommended when using a system environment variables. |
24.7.3 Properties conversion
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) or custom Converters
(with bean definitions annotated as @ConfigurationPropertiesBinding
).
As this bean is requested very early during the application lifecycle, make sure to limit the dependencies that your |
24.7.4 @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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="connection")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> ConnectionSettings {
<em><span style="color:gray">@NotNull</span></em>
<span style="color:#7f0055"><strong>private</strong></span> InetAddress remoteAddress;
<span style="color:#3f5f5f"><em>// ... getters and setters</em></span>
}</span></span>
In order to validate values of nested properties, you must annotate the associated field as @Valid
to trigger its validation. For example, building upon the above ConnectionSettings
example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="connection")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> ConnectionSettings {
<em><span style="color:gray">@NotNull</span></em>
<em><span style="color:gray">@Valid</span></em>
<span style="color:#7f0055"><strong>private</strong></span> RemoteAddress remoteAddress;
<span style="color:#3f5f5f"><em>// ... getters and setters</em></span>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>class</strong></span> RemoteAddress {
<em><span style="color:gray">@NotEmpty</span></em>
<span style="color:#7f0055"><strong>public</strong></span> String hostname;
<span style="color:#3f5f5f"><em>// ... getters and setters</em></span>
}
}</span></span>
You can also add a custom Spring Validator
by creating a bean definition called configurationPropertiesValidator
. There is a Validation sample so you can see how to set things up.
The |
25. Profiles
Spring Profiles provide a way to segregate parts of your application configuration and make it only available in certain environments. Any @Component
or @Configuration
can be marked with @Profile
to limit when it is loaded:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@Profile("production")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> ProductionConfiguration {
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
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
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.profiles.active</span>=dev,hsqldb</span></span>
or specify on the command line using the switch --spring.profiles.active=dev,hsqldb
.
25.1 Adding active profiles
The spring.profiles.active
property follows the same ordering rules as other properties, the highest PropertySource
will win. This means that you can specify active profiles in application.properties
then replace them using the command line switch.
Sometimes it is useful to have profile-specific properties that add to the active profiles rather than replace them. The spring.profiles.include
property can be used to unconditionally add active profiles. The SpringApplication
entry point also has a Java API for setting additional profiles (i.e. on top of those activated by the spring.profiles.active
property): see the setAdditionalProfiles()
method.
For example, when an application with following properties is run using the switch --spring.profiles.active=prod
the proddb
and prodmq
profiles will also be activated:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">my.property</span>: fromyamlfile
<span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">spring.profiles</span>: prod
<span style="color:#7f007f">spring.profiles.include</span>: proddb,prodmq</span></span>
Remember that the |
25.2 Programmatically setting profiles
You can programmatically set active profiles by calling SpringApplication.setAdditionalProfiles(…)
before your application runs. It is also possible to activate profiles using Spring’s ConfigurableEnvironment
interface.
25.3 Profile-specific configuration files
Profile-specific variants of both application.properties
(or application.yml
) and files referenced via @ConfigurationProperties
are considered as files are loaded. See Section 24.4, “Profile-specific properties” for details.
26. Logging
Spring Boot uses Commons Logging for all internal logging, but leaves the underlying log implementation open. Default configurations are provided for Java Util Logging, 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.
There are a lot of logging frameworks available for Java. Don’t worry if the above list seems confusing. Generally you won’t need to change your logging dependencies and the Spring Boot defaults will work just fine. |
26.1 Log format
The default log output from Spring Boot looks like this:
<span style="color:#333333"><span style="color:#000000">2014-03-05 10:57:51.112 INFO 45469 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/7.0.52
2014-03-05 10:57:51.253 INFO 45469 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
2014-03-05 10:57:51.253 INFO 45469 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 1358 ms
2014-03-05 10:57:51.698 INFO 45469 --- [ost-startStop-1] o.s.b.c.e.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
2014-03-05 10:57:51.702 INFO 45469 --- [ost-startStop-1] o.s.b.c.embedded.FilterRegistrationBean : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]</span></span>
The following items are output:
- Date and Time — Millisecond precision and easily sortable.
- Log Level —
ERROR
,WARN
,INFO
,DEBUG
orTRACE
. - Process ID.
- A
---
separator to distinguish the start of actual log messages. - Thread name — Enclosed in square brackets (may be truncated for console output).
- Logger name — This is usually the source class name (often abbreviated).
- The log message.
Logback does not have a |
26.2 Console output
The default log configuration will echo messages to the console as they are written. By default ERROR
, WARN
and INFO
level messages are logged. You can also enable a “debug” mode by starting your application with a --debug
flag.
<span style="color:#333333"><span style="color:#000000">$ java -jar myapp.jar --debug</span></span>
you can also specify |
When the debug mode is enabled, a selection of core loggers (embedded container, Hibernate and Spring) are configured to output more information. Enabling the debug mode does not configure your application log all messages with DEBUG
level.
26.2.1 Color-coded output
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.
Color coding is configured using the %clr
conversion word. In its simplest form the converter will color the output according to the log level, for example:
<span style="color:#333333"><span style="color:#000000">%clr(%5p)</span></span>
The mapping of log level to a color is as follows:
Level | Color |
---|---|
| Red |
| Red |
| Yellow |
| Green |
| Green |
| Green |
Alternatively, you can specify the color or style that should be used by providing it as an option to the conversion. For example, to make the text yellow:
<span style="color:#333333"><span style="color:#000000">%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){yellow}</span></span>
The following colors and styles are supported:
blue
cyan
faint
green
magenta
red
yellow
26.3 File output
By default, Spring Boot will only log to the console and will not write log files. If you want to write log files in addition to the console output you need to set alogging.file
or logging.path
property (for example in your application.properties
).
The following table shows how the logging.*
properties can be used together:
Table 26.1. Logging properties
logging.file | logging.path | Example | Description |
---|---|---|---|
(none) | (none) | Console only logging. | |
Specific file | (none) |
| Writes to the specified log file. Names can be an exact location or relative to the current directory. |
(none) | Specific directory |
| Writes |
Log files will rotate when they reach 10 Mb and as with console output, ERROR
, WARN
and INFO
level messages are logged by default.
The logging system is initialized early in the application lifecycle and as such logging properties will not be found in property files loaded via |
Logging properties are independent of the actual logging infrastructure. As a result, specific configuration keys (such as |
26.4 Log Levels
All the supported logging systems can have the logger levels set in the Spring Environment
(so for example in application.properties
) using ‘logging.level.*=LEVEL’ where ‘LEVEL’ is one of TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF. The root
logger can be configured using logging.level.root
. Example application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">logging.level.root</span>=WARN
<span style="color:#7f007f">logging.level.org.springframework.web</span>=DEBUG
<span style="color:#7f007f">logging.level.org.hibernate</span>=ERROR</span></span>
By default Spring Boot remaps Thymeleaf |
26.5 Custom log configuration
The various logging systems can be activated by including the appropriate libraries on the classpath, and further customized by providing a suitable configuration file in the root of the classpath, or in a location specified by the Spring Environment
property logging.config
.
Since logging is initialized before the |
Depending on your logging system, the following files will be loaded:
Logging System | Customization |
---|---|
Logback |
|
Log4j |
|
Log4j2 |
|
JDK (Java Util Logging) |
|
When possible we recommend that you use the |
There are known 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. |
To help with the customization some other properties are transferred from the Spring Environment
to System properties:
Spring Environment | System Property | Comments |
---|---|---|
|
| The conversion word that’s used when logging exceptions. |
|
| Used in default log configuration if defined. |
|
| Used in default log configuration if defined. |
|
| The log pattern to use on the console (stdout). (Only supported with the default logback setup.) |
|
| The log pattern to use in a file (if LOG_FILE enabled). (Only supported with the default logback setup.) |
|
| The format to use to render the log level (default |
|
| The current process ID (discovered if possible and when not already defined as an OS environment variable). |
All the logging systems supported can consult System properties when parsing their configuration files. See the default configurations in spring-boot.jar
for examples.
If you want to use a placeholder in a logging property, you should use Spring Boot’s syntax and not the syntax of the underlying framework. Notably, if you’re using Logback, you should use |
You can add MDC and other ad-hoc content to log lines by overriding only the |
26.6 Logback extensions
Spring Boot includes a number of extensions to Logback which can help with advanced configuration. You can use these extensions in your logback-spring.xml
configuration file.
You cannot use extensions in the standard |
26.6.1 Profile-specific configuration
The <springProfile>
tag allows you to optionally include or exclude sections of configuration based on the active Spring profiles. Profile sections are supported anywhere within the <configuration>
element. Use the name
attribute to specify which profile accepts the configuration. Multiple profiles can be specified using a comma-separated list.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><springProfile</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"staging"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f5f5f"><em><!-- configuration to be enabled when the "staging" profile is active --></em></span>
<span style="color:#3f7f7f"></springProfile></span>
<span style="color:#3f7f7f"><springProfile</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"dev, staging"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f5f5f"><em><!-- configuration to be enabled when the "dev" or "staging" profiles are active --></em></span>
<span style="color:#3f7f7f"></springProfile></span>
<span style="color:#3f7f7f"><springProfile</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"!production"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f5f5f"><em><!-- configuration to be enabled when the "production" profile is not active --></em></span>
<span style="color:#3f7f7f"></springProfile></span></span></span>
26.6.2 Environment properties
The <springProperty>
tag allows you to surface properties from the Spring Environment
for use within Logback. This can be useful if you want to access values from your application.properties
file in your logback configuration. The tag works in a similar way to Logback’s standard <property>
tag, but rather than specifying a direct value
you specify the source
of the property (from the Environment
). You can use the scope
attribute if you need to store the property somewhere other than in local
scope.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><springProperty</span> <span style="color:#7f007f">scope</span>=<span style="color:#2a00ff">"context"</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"fluentHost"</span> <span style="color:#7f007f">source</span>=<span style="color:#2a00ff">"myapp.fluentd.host"</span><span style="color:#3f7f7f">/></span>
<span style="color:#3f7f7f"><appender</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"FLUENT"</span> <span style="color:#7f007f">class</span>=<span style="color:#2a00ff">"ch.qos.logback.more.appenders.DataFluentAppender"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><remoteHost></span>${fluentHost}<span style="color:#3f7f7f"></remoteHost></span>
...
<span style="color:#3f7f7f"></appender></span></span></span>
The |
27. Developing web applications
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-boot-starter-web
module to get up and running quickly.
If you haven’t yet developed a Spring Boot web application you can follow the "Hello World!" example in the Getting started section.
27.1 The ‘Spring Web MVC framework’
The Spring Web MVC framework (often referred to as simply ‘Spring MVC’) is a rich ‘model view controller’ web framework. Spring MVC lets you create special @Controller
or @RestController
beans to handle incoming HTTP requests. Methods in your controller are mapped to HTTP using @RequestMapping
annotations.
Here is a typical example @RestController
to serve JSON data:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RestController</span></em>
<em><span style="color:gray">@RequestMapping(value="/users")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyRestController {
<em><span style="color:gray">@RequestMapping(value="/{user}", method=RequestMethod.GET)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> User getUser(<em><span style="color:gray">@PathVariable</span></em> Long user) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
<em><span style="color:gray">@RequestMapping(value="/{user}/customers", method=RequestMethod.GET)</span></em>
List<Customer> getUserCustomers(<em><span style="color:gray">@PathVariable</span></em> Long user) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
<em><span style="color:gray">@RequestMapping(value="/{user}", method=RequestMethod.DELETE)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> User deleteUser(<em><span style="color:gray">@PathVariable</span></em> Long user) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
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.
27.1.1 Spring MVC auto-configuration
Spring Boot provides auto-configuration for Spring MVC that works well with most applications.
The auto-configuration adds the following features on top of Spring’s defaults:
- Inclusion of
ContentNegotiatingViewResolver
andBeanNameViewResolver
beans. - Support for serving static resources, including support for WebJars (see below).
- Automatic registration of
Converter
,GenericConverter
,Formatter
beans. - Support for
HttpMessageConverters
(see below). - Automatic registration of
MessageCodesResolver
(see below). - Static
index.html
support. - Custom
Favicon
support. - Automatic use of a
ConfigurableWebBindingInitializer
bean (see below).
If you want to take complete control of Spring MVC, you can add your own @Configuration
annotated with @EnableWebMvc
. If you want to keep Spring Boot MVC features, and you just want to add additional MVC configuration (interceptors, formatters, view controllers etc.) you can add your own @Bean
of typeWebMvcConfigurerAdapter
, but without @EnableWebMvc
.
27.1.2 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 Boot’s HttpMessageConverters
class:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure.web.HttpMessageConverters;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.context.annotation.*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.http.converter.*;
<em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyConfiguration {
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> HttpMessageConverters customConverters() {
HttpMessageConverter<?> additional = ...
HttpMessageConverter<?> another = ...
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> HttpMessageConverters(additional, another);
}
}</span></span>
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.
27.1.3 MessageCodesResolver
Spring MVC has a strategy for generating error codes for rendering error messages from binding errors: MessageCodesResolver
. Spring Boot will create one for you if you set the spring.mvc.message-codes-resolver.format
property PREFIX_ERROR_CODE
or POSTFIX_ERROR_CODE
(see the enumeration in DefaultMessageCodesResolver.Format
).
27.1.4 Static Content
By default Spring Boot will serve static content from a directory called /static
(or /public
or /resources
or /META-INF/resources
) in the classpath or from the root of the ServletContext
. It uses the ResourceHttpRequestHandler
from Spring MVC so 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
.
You can customize the static resource locations using spring.resources.staticLocations
(replacing the default values with a list of directory locations). If you do this the default welcome page detection will switch to your custom locations, so if there is an index.html
in any of your locations on startup, it will be the home page of the application.
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.
Do not use the |
Spring Boot also supports advanced resource handling features provided by Spring MVC, allowing use cases such as cache busting static resources or using version agnostic URLs for Webjars.
For example, the following configuration will configure a cache busting solution for all static resources, effectively adding a content hash in URLs, such as<link href="/css/spring-2a2d595e6ed9a0b24f027f2b63b134d6.css"/>
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.resources.chain.strategy.content.enabled</span>=true
<span style="color:#7f007f">spring.resources.chain.strategy.content.paths</span>=/**</span></span>
Links to resources are rewritten at runtime in template, thanks to a |
When loading resources dynamically with, for example, a JavaScript module loader, renaming files is not an option. That’s why other strategies are also supported and can be combined. A "fixed" strategy will add a static version string in the URL, without changing the file name:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.resources.chain.strategy.content.enabled</span>=true
<span style="color:#7f007f">spring.resources.chain.strategy.content.paths</span>=/**
<span style="color:#7f007f">spring.resources.chain.strategy.fixed.enabled</span>=true
<span style="color:#7f007f">spring.resources.chain.strategy.fixed.paths</span>=/js/lib/
<span style="color:#7f007f">spring.resources.chain.strategy.fixed.version</span>=v12</span></span>
With this configuration, JavaScript modules located under "/js/lib/"
will use a fixed versioning strategy "/v12/js/lib/mymodule.js"
while other resources will still use the content one <link href="/css/spring-2a2d595e6ed9a0b24f027f2b63b134d6.css"/>
.
See ResourceProperties
for more of the supported options.
This feature has been thoroughly described in a dedicated blog post and in Spring Framework’s reference documentation. |
27.1.5 ConfigurableWebBindingInitializer
Spring MVC uses a WebBindingInitializer
to initialize a WebDataBinder
for a particular request. If you create your own ConfigurableWebBindingInitializer
@Bean
, Spring Boot will automatically configure Spring MVC to use it.
27.1.6 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:
JSPs should be avoided if possible, there are several known limitations when using them with embedded servlet containers. |
When you’re using one of these templating engines with the default configuration, your templates will be picked up automatically from src/main/resources/templates
.
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 packaged jar. This can cause Spring Boot to fail to find the templates on the classpath. If you’re affected by this problem you can reorder the classpath in the IDE to place the module’s classes and resources first. Alternatively, you can configure the template prefix to search every templates directory on the classpath: |
27.1.7 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.
The |
You can also define a @ControllerAdvice
to customize the JSON document to return for a particular controller and/or exception type.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@ControllerAdvice(basePackageClasses = FooController.class)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> FooControllerAdvice <span style="color:#7f0055"><strong>extends</strong></span> ResponseEntityExceptionHandler {
<em><span style="color:gray">@ExceptionHandler(YourException.class)</span></em>
<em><span style="color:gray">@ResponseBody</span></em>
ResponseEntity<?> handleControllerException(HttpServletRequest request, Throwable ex) {
HttpStatus status = getStatus(request);
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> ResponseEntity<>(<span style="color:#7f0055"><strong>new</strong></span> CustomErrorType(status.value(), ex.getMessage()), status);
}
<span style="color:#7f0055"><strong>private</strong></span> HttpStatus getStatus(HttpServletRequest request) {
Integer statusCode = (Integer) request.getAttribute(<span style="color:#2a00ff">"javax.servlet.error.status_code"</span>);
<span style="color:#7f0055"><strong>if</strong></span> (statusCode == null) {
<span style="color:#7f0055"><strong>return</strong></span> HttpStatus.INTERNAL_SERVER_ERROR;
}
<span style="color:#7f0055"><strong>return</strong></span> HttpStatus.valueOf(statusCode);
}
}</span></span>
In the example above, if YourException
is thrown by a controller defined in the same package as FooController
, a json representation of the CustomerErrorType
POJO will be used instead of the ErrorAttributes
representation.
If you want more specific error pages for some conditions, the embedded servlet containers support a uniform Java DSL for customizing the error handling. Assuming that you have a mapping for /400
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> EmbeddedServletContainerCustomizer containerCustomizer(){
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> MyCustomizer();
}
<span style="color:#3f5f5f"><em>// ...</em></span>
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyCustomizer <span style="color:#7f0055"><strong>implements</strong></span> EmbeddedServletContainerCustomizer {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> customize(ConfigurableEmbeddedServletContainer container) {
container.addErrorPages(<span style="color:#7f0055"><strong>new</strong></span> ErrorPage(HttpStatus.BAD_REQUEST, <span style="color:#2a00ff">"/400"</span>));
}
}</span></span>
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.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> FilterRegistrationBean myFilter() {
FilterRegistrationBean registration = <span style="color:#7f0055"><strong>new</strong></span> FilterRegistrationBean();
registration.setFilter(<span style="color:#7f0055"><strong>new</strong></span> MyFilter());
...
registration.setDispatcherTypes(EnumSet.allOf(DispatcherType.<span style="color:#7f0055"><strong>class</strong></span>));
<span style="color:#7f0055"><strong>return</strong></span> registration;
}</span></span>
(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 servlet’s service method. You should disable this behaviour by settingcom.ibm.ws.webcontainer.invokeFlushAfterService
to false
27.1.8 Spring HATEOAS
If you’re developing a RESTful API that makes use of hypermedia, Spring Boot provides auto-configuration for Spring HATEOAS that works well with most applications. The auto-configuration replaces the need to use @EnableHypermediaSupport
and registers a number of beans to ease building hypermedia-based applications including a LinkDiscoverers
(for client side support) and an ObjectMapper
configured to correctly marshal responses into the desired representation. The ObjectMapper
will be customized based on the spring.jackson.*
properties or a Jackson2ObjectMapperBuilder
bean if one exists.
You can take control of Spring HATEOAS’s configuration by using @EnableHypermediaSupport
. Note that this will disable the ObjectMapper
customization described above.
27.1.9 CORS support
Cross-origin resource sharing (CORS) is a W3C specification implemented by most browsers that allows you to specify in a flexible way what kind of cross domain requests are authorized, instead of using some less secure and less powerful approaches like IFRAME or JSONP.
As of version 4.2, Spring MVC supports CORS out of the box. Using controller method CORS configuration with @CrossOrigin
annotations in your Spring Boot application does not require any specific configuration. Global CORS configuration can be defined by registering a WebMvcConfigurer
bean with a customized addCorsMappings(CorsRegistry)
method:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyConfiguration {
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> WebMvcConfigurer corsConfigurer() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> WebMvcConfigurerAdapter() {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> addCorsMappings(CorsRegistry registry) {
registry.addMapping(<span style="color:#2a00ff">"/api/**"</span>);
}
};
}
}</span></span>
27.2 JAX-RS and Jersey
If you prefer the JAX-RS programming model for REST endpoints you can use one of the available implementations instead of Spring MVC. Jersey 1.x and Apache CXF work quite well out of the box if you just register their Servlet
or Filter
as a @Bean
in your application context. Jersey 2.x has 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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> JerseyConfig <span style="color:#7f0055"><strong>extends</strong></span> ResourceConfig {
<span style="color:#7f0055"><strong>public</strong></span> JerseyConfig() {
register(Endpoint.<span style="color:#7f0055"><strong>class</strong></span>);
}
}</span></span>
All the registered endpoints should be @Components
with HTTP resource annotations (@GET
etc.), e.g.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<em><span style="color:gray">@Path("/hello")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Endpoint {
<em><span style="color:gray">@GET</span></em>
<span style="color:#7f0055"><strong>public</strong></span> String message() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#2a00ff">"Hello"</span>;
}
}</span></span>
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 JAX-RS resources are packaged as nested jars.
27.3 Embedded servlet container support
Spring Boot includes support for embedded Tomcat, Jetty, and Undertow servers. Most developers will simply use the appropriate ‘Starter POM’ to obtain a fully configured instance. By default the embedded server will listen for HTTP requests on port 8080
.
27.3.1 Servlets, Filters, and listeners
When using an embedded servlet container you can register Servlets, Filters and all the listeners from the Servlet spec (e.g. HttpSessionListener
) either by using Spring beans or by scanning for Servlet components.
Registering Servlets, Filters, and listeners as Spring beans
Any Servlet
, Filter
or Servlet *Listener
instance that is a Spring bean will be registered with the embedded container. This can be particularly convenient if you want to refer to a value from your application.properties
during configuration.
By default, if the context contains only a single Servlet it 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
, FilterRegistrationBean
and ServletListenerRegistrationBean
classes for complete control.
27.3.2 Servlet Context Initialization
Embedded servlet containers will not directly execute the Servlet 3.0+ javax.servlet.ServletContainerInitializer
interface, or Spring’sorg.springframework.web.WebApplicationInitializer
interface. This is an intentional design decision intended to reduce the risk that 3rd party libraries designed to run inside a war will break Spring Boot applications.
If you need to perform servlet context initialization in a Spring Boot application, you should register a bean that implements theorg.springframework.boot.context.embedded.ServletContextInitializer
interface. The single onStartup
method provides access to the ServletContext
, and can easily be used as an adapter to an existing WebApplicationInitializer
if necessary.
Scanning for Servlets, Filters, and listeners
When using an embedded container, automatic registration of @WebServlet
, @WebFilter
, and @WebListener
annotated classes can be enabled using @ServletComponentScan
.
|
27.3.3 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.
You usually won’t need to be aware of these implementation classes. Most applications will be auto-configured and the appropriate |
27.3.4 Customizing embedded servlet containers
Common servlet container settings can be configured using Spring Environment
properties. Usually you would define the properties in your application.properties
file.
Common server settings include:
- Network settings: listen port for incoming HTTP requests (
server.port
), interface address to bind toserver.address
, etc. - Session settings: whether the session is persistent (
server.session.persistence
), session timeout (server.session.timeout
), location of session data (server.session.store-dir
) and session-cookie configuration (server.session.cookie.*
). - Error management: location of the error page (
server.error.path
), etc. - SSL
- HTTP compression
Spring Boot tries as much as possible to expose common settings but this is not always possible. For those cases, dedicated namespaces offer server-specific customizations (see server.tomcat
and server.undertow
). For instance, access logs can be configured with specific features of the embedded servlet container.
See the |
Programmatic customization
If you need to configure your embedded servlet container programmatically you can register a Spring bean that implements the EmbeddedServletContainerCustomizer
interface. EmbeddedServletContainerCustomizer
provides access to theConfigurableEmbeddedServletContainer
which includes numerous customization setter methods.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.context.embedded.*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> CustomizationBean <span style="color:#7f0055"><strong>implements</strong></span> EmbeddedServletContainerCustomizer {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> customize(ConfigurableEmbeddedServletContainer container) {
container.setPort(9000);
}
}</span></span>
Customizing ConfigurableEmbeddedServletContainer directly
If the above customization techniques are too limited, you can register the TomcatEmbeddedServletContainerFactory
, JettyEmbeddedServletContainerFactory
or UndertowEmbeddedServletContainerFactory
bean yourself.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> EmbeddedServletContainerFactory servletContainer() {
TomcatEmbeddedServletContainerFactory factory = <span style="color:#7f0055"><strong>new</strong></span> TomcatEmbeddedServletContainerFactory();
factory.setPort(9000);
factory.setSessionTimeout(10, TimeUnit.MINUTES);
factory.addErrorPages(<span style="color:#7f0055"><strong>new</strong></span> ErrorPage(HttpStatus.NOT_FOUND, <span style="color:#2a00ff">"/notfound.html"</span>));
<span style="color:#7f0055"><strong>return</strong></span> factory;
}</span></span>
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.
27.3.5 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.
- Creating a custom
error.jsp
page won’t override the default view for error handling.
There is a JSP sample so you can see how to set things up.
28. Security
If Spring Security is on the classpath then web applications will be secure by default with ‘basic’ authentication on all HTTP endpoints. To add method-level security to a web application you can also add @EnableGlobalMethodSecurity
with your desired settings. Additional information can be found in the Spring Security Reference.
The default AuthenticationManager
has a single user (‘user’ username and random password, printed at INFO level when the application starts up)
<span style="color:#333333"><span style="color:#000000">Using default security password: 78fa095d-3f4c-48b1-ad50-e24c31d5cf35</span></span>
If you fine tune your logging configuration, ensure that the |
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 default web security configuration completely you can add a bean with @EnableWebSecurity
(this does not disable the authentication manager configuration). To customize it you normally use external properties and beans of type WebSecurityConfigurerAdapter
(e.g. to add form-based login). To also switch off the authentication manager configuration you can add a bean of type AuthenticationManager
, or else configure the global AuthenticationManager
by autowiring an AuthenticationManagerBuilder
into a method in one of your @Configuration
classes. 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 and a single user (seeSecurityProperties.User
for the properties of the user). - Ignored (insecure) paths for common static resource locations (
/css/**
,/js/**
,/images/**
and**/favicon.ico
). - HTTP Basic security for all other endpoints.
- Security events published to Spring’s
ApplicationEventPublisher
(successful and unsuccessful authentication and access denied). - 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 auto-configured features add a @Bean
of type WebSecurityConfigurerAdapter
with @Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
and configure it to meet your needs.
By default, a |
28.1 OAuth2
If you have spring-security-oauth2
on your classpath you can take advantage of some auto-configuration to make it easy to set up Authorization or Resource Server.
28.1.1 Authorization Server
To create an Authorization Server and grant access tokens you need to use @EnableAuthorizationServer
and provide security.oauth2.client.client-id
and security.oauth2.client.client-secret]
properties. The client will be registered for you in an in-memory repository.
Having done that you will be able to use the client credentials to create an access token, for example:
<span style="color:#333333"><span style="color:#000000">$ curl client:secret@localhost:8080/oauth/token -d grant_type=password -d username=user -d password=pwd</span></span>
The basic auth credentials for the /token
endpoint are the client-id
and client-secret
. The user credentials are the normal Spring Security user details (which default in Spring Boot to “user” and a random password).
To switch off the auto-configuration and configure the Authorization Server features yourself just add a @Bean
of type AuthorizationServerConfigurer
.
28.1.2 Resource Server
To use the access token you need a Resource Server (which can be the same as the Authorization Server). Creating a Resource Server is easy, just add@EnableResourceServer
and provide some configuration to allow the server to decode access tokens. If your application is also an Authorization Server it already knows how to decode tokens, so there is nothing else to do. If your app is a standalone service then you need to give it some more configuration, one of the following options:
security.oauth2.resource.user-info-uri
to use the/me
resource (e.g.uaa.run.pivotal.io/userinfo
on PWS)security.oauth2.resource.token-info-uri
to use the token decoding endpoint (e.g.uaa.run.pivotal.io/check_token
on PWS).
If you specify both the user-info-uri
and the token-info-uri
then you can set a flag to say that one is preferred over the other (prefer-token-info=true
is the default).
Alternatively (instead of user-info-uri
or token-info-uri
) if the tokens are JWTs you can configure a security.oauth2.resource.jwt.key-value
to decode them locally (where the key is a verification key). The verification key value is either a symmetric secret or PEM-encoded RSA public key. If you don’t have the key and it’s public you can provide a URI where it can be downloaded (as a JSON object with a “value” field) withsecurity.oauth2.resource.jwt.key-uri
. E.g. on PWS:
<span style="color:#333333"><span style="color:#000000">$ curl https://uaa.run.pivotal.io/token_key
{"alg":"SHA256withRSA","value":"-----BEGIN PUBLIC KEY-----\nMIIBI...\n-----END PUBLIC KEY-----\n"}</span></span>
If you use the |
28.2 Token Type in User Info
Google, and certain other 3rd party identity providers, are more strict about the token type name that is sent in the headers to the user info endpoint. The default is “Bearer” which suits most providers and matches the spec, but if you need to change it you can set security.oauth2.resource.token-type
.
28.3 Customizing the User Info RestTemplate
If you have a user-info-uri
, the resource server features use an OAuth2RestTemplate
internally to fetch user details for authentication. This is provided as a qualified @Bean
with id userInfoRestTemplate
, but you shouldn’t need to know that to just use it. The default should be fine for most providers, but occasionally you might need to add additional interceptors, or change the request authenticator (which is how the token gets attached to outgoing requests). To add a customization just create a bean of type UserInfoRestTemplateCustomizer
- it has a single method that will be called after the bean is created but before it is initialized. The rest template that is being customized here is only used internally to carry out authentication.
To set an RSA key value in YAML use the “pipe” continuation marker to split it over multiple lines (“|”) and remember to indent the key value (it’s a standard YAML language feature). Example: |
28.3.1 Client
To make your webapp into an OAuth2 client you can simply add @EnableOAuth2Client
and Spring Boot will create an OAuth2RestTemplate
for you to @Autowire
. It uses the security.oauth2.client.*
as credentials (the same as you might be using in the Authorization Server), but in addition it will need to know the authorization and token URIs in the Authorization Server. For example:
application.yml.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">security</span>:
<span style="color:#7f007f"> oauth2</span>:
<span style="color:#7f007f"> client</span>:
<span style="color:#7f007f"> clientId</span>: bd1c0a783ccdd1c9b9e4
<span style="color:#7f007f"> clientSecret</span>: 1a9030fbca47a5b2c28e92f19050bb77824b5ad1
<span style="color:#7f007f"> accessTokenUri</span>: https://github.com/login/oauth/access_token
<span style="color:#7f007f"> userAuthorizationUri</span>: https://github.com/login/oauth/authorize
<span style="color:#7f007f"> clientAuthenticationScheme</span>: form</span></span>
An application with this configuration will redirect to Github for authorization when you attempt to use the OAuth2RestTemplate
. If you are already signed into Github you won’t even notice that it has authenticated. These specific credentials will only work if your application is running on port 8080 (register your own client app in Github or other provider for more flexibility).
To limit the scope that the client asks for when it obtains an access token you can set security.oauth2.client.scope
(comma separated or an array in YAML). By default the scope is empty and it is up to Authorization Server to decide what the defaults should be, usually depending on the settings in the client registration that it holds.
There is also a setting for |
In a non-web application you can still |
28.3.2 Single Sign On
An OAuth2 Client can be used to fetch user details from the provider (if such features are available) and then convert them into an Authentication
token for Spring Security. The Resource Server above support this via the user-info-uri
property This is the basis for a Single Sign On (SSO) protocol based on OAuth2, and Spring Boot makes it easy to participate by providing an annotation @EnableOAuth2Sso
. The Github client above can protect all its resources and authenticate using the Github /user/
endpoint, by adding that annotation and declaring where to find the endpoint (in addition to thesecurity.oauth2.client.*
configuration already listed above):
application.yml.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">security</span>:
<span style="color:#7f007f"> oauth2</span>:
...
<span style="color:#7f007f"> resource</span>:
<span style="color:#7f007f"> userInfoUri</span>: https://api.github.com/user
<span style="color:#7f007f"> preferTokenInfo</span>: <span style="color:#7f0055"><strong>false</strong></span></span></span>
Since all paths are secure by default, there is no “home” page that you can show to unauthenticated users and invite them to login (by visiting the /login
path, or the path specified by security.oauth2.sso.login-path
).
To customize the access rules or paths to protect, so you can add a “home” page for instance, @EnableOAuth2Sso
can be added to a WebSecurityConfigurerAdapter
and the annotation will cause it to be decorated and enhanced with the necessary pieces to get the /login
path working. For example, here we simply allow unauthenticated access to the home page at "/" and keep the default for everything else:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> WebSecurityConfiguration <span style="color:#7f0055"><strong>extends</strong></span> WebSecurityConfigurerAdapter {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> init(WebSecurity web) {
web.ignore(<span style="color:#2a00ff">"/"</span>);
}
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>protected</strong></span> <span style="color:#7f0055"><strong>void</strong></span> configure(HttpSecurity http) <span style="color:#7f0055"><strong>throws</strong></span> Exception {
http.antMatcher(<span style="color:#2a00ff">"/**"</span>).authorizeRequests().anyRequest().authenticated();
}
}</span></span>
28.4 Actuator Security
If the Actuator is also in use, you will find:
- The management endpoints are secure even if the application endpoints are insecure.
- Security events are transformed into
AuditEvents
and published to theAuditService
. - The default user will have the
ADMIN
role as well as theUSER
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 don’t want to override the actuator access rules, or @Order(ManagementServerProperties.ACCESS_OVERRIDE_ORDER)
if you do want to override the actuator access rules.
29. Working with SQL databases
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.
29.1 Configure a DataSource
Java’s javax.sql.DataSource
interface provides a standard method of working with database connections. Traditionally a DataSource uses a URL
along with some credentials to establish a database connection.
29.1.1 Embedded Database Support
It’s often convenient to develop applications using an in-memory embedded database. Obviously, in-memory databases do not provide persistent storage; you will need to populate your database when your application starts and be prepared to throw away data when your application ends.
The ‘How-to’ section includes a section on how to initialize a database |
Spring Boot can auto-configure embedded H2, HSQL and Derby databases. You don’t need to provide any connection URLs, simply include a build dependency to the embedded database that you want to use.
For example, typical POM dependencies would be:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-data-jpa<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.hsqldb<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>hsqldb<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><scope></span>runtime<span style="color:#3f7f7f"></scope></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
If, for whatever reason, you do configure the connection URL for an embedded database, care should be taken to ensure that the database’s automatic shutdown is disabled. If you’re using H2 you should use |
You need a dependency on |
29.1.2 Connection to a production database
Production database connections can also be auto-configured using a pooling DataSource
. Here’s the algorithm for choosing a specific implementation:
- We prefer the Tomcat pooling
DataSource
for its performance and concurrency, so if that is available we always choose it. - If HikariCP is available we will use it.
- If Commons DBCP is available we will use it, but we don’t recommend it in production.
- Lastly, if Commons DBCP2 is available we will use it.
If you use the spring-boot-starter-jdbc
or spring-boot-starter-data-jpa
‘starter POMs’ you will automatically get a dependency to tomcat-jdbc
.
You can bypass that algorithm completely and specify the connection pool to use via the |
DataSource configuration is controlled by external configuration properties in spring.datasource.*
. For example, you might declare the following section inapplication.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.datasource.url</span>=jdbc:mysql://localhost/test
<span style="color:#7f007f">spring.datasource.username</span>=dbuser
<span style="color:#7f007f">spring.datasource.password</span>=dbpass
<span style="color:#7f007f">spring.datasource.driver-class-name</span>=com.mysql.jdbc.Driver</span></span>
You often won’t need to specify the |
For a pooling |
See DataSourceProperties
for more of the supported options. These are the standard options that work regardless of the actual implementation. It is also possible to fine tune implementation-specific settings using the spring.datasource.*
prefix, refer to the documentation of the connection pool implementation you are using for more details.
For instance, if you are using the Tomcat connection pool you could customize many additional settings:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em># Number of ms to wait before throwing an exception if no connection is available.</em></span>
<span style="color:#7f007f">spring.datasource.max-wait</span>=10000
<span style="color:#3f5f5f"><em># Maximum number of active connections that can be allocated from this pool at the same time.</em></span>
<span style="color:#7f007f">spring.datasource.max-active</span>=50
<span style="color:#3f5f5f"><em># Validate the connection before borrowing it from the pool.</em></span>
<span style="color:#7f007f">spring.datasource.test-on-borrow</span>=true</span></span>
29.1.3 Connection to a JNDI DataSource
If you are deploying your Spring Boot application to an Application Server you might want to configure and manage your DataSource using your Application Servers built-in features and access it using JNDI.
The spring.datasource.jndi-name
property can be used as an alternative to the spring.datasource.url
, spring.datasource.username
and spring.datasource.password
properties to access the DataSource
from a specific JNDI location. For example, the following section in application.properties
shows how you can access a JBoss AS defined DataSource
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.datasource.jndi-name</span>=java:jboss/datasources/customers</span></span>
29.2 Using JdbcTemplate
Spring’s JdbcTemplate
and NamedParameterJdbcTemplate
classes are auto-configured and you can @Autowire
them directly into your own beans:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.Autowired;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.jdbc.core.JdbcTemplate;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> JdbcTemplate jdbcTemplate;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(JdbcTemplate jdbcTemplate) {
<span style="color:#7f0055"><strong>this</strong></span>.jdbcTemplate = jdbcTemplate;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
29.3 JPA and ‘Spring Data’
The Java Persistence API is a standard technology that allows you to ‘map’ objects to relational databases. The spring-boot-starter-data-jpa
POM provides a quick way to get started. It provides the following key dependencies:
- Hibernate — One of the most popular JPA implementations.
- Spring Data JPA — Makes it easy to implement JPA-based repositories.
- Spring ORMs — Core ORM support from the Spring Framework.
We won’t go into too many details of JPA or Spring Data here. You can follow the ‘Accessing Data with JPA’ guide from spring.io and read the Spring Data JPA and Hibernate reference documentation. |
29.3.1 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> com.example.myapp.domain;
<span style="color:#7f0055"><strong>import</strong></span> java.io.Serializable;
<span style="color:#7f0055"><strong>import</strong></span> javax.persistence.*;
<em><span style="color:gray">@Entity</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> City <span style="color:#7f0055"><strong>implements</strong></span> Serializable {
<em><span style="color:gray">@Id</span></em>
<em><span style="color:gray">@GeneratedValue</span></em>
<span style="color:#7f0055"><strong>private</strong></span> Long id;
<em><span style="color:gray">@Column(nullable = false)</span></em>
<span style="color:#7f0055"><strong>private</strong></span> String name;
<em><span style="color:gray">@Column(nullable = false)</span></em>
<span style="color:#7f0055"><strong>private</strong></span> String state;
<span style="color:#3f5f5f"><em>// ... additional members, often include @OneToMany mappings</em></span>
<span style="color:#7f0055"><strong>protected</strong></span> City() {
<span style="color:#3f5f5f"><em>// no-args constructor required by JPA spec</em></span>
<span style="color:#3f5f5f"><em>// this one is protected since it shouldn't be used directly</em></span>
}
<span style="color:#7f0055"><strong>public</strong></span> City(String name, String state) {
<span style="color:#7f0055"><strong>this</strong></span>.name = name;
<span style="color:#7f0055"><strong>this</strong></span>.country = country;
}
<span style="color:#7f0055"><strong>public</strong></span> String getName() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>this</strong></span>.name;
}
<span style="color:#7f0055"><strong>public</strong></span> String getState() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>this</strong></span>.state;
}
<span style="color:#3f5f5f"><em>// ... etc</em></span>
}</span></span>
You can customize entity scanning locations using the |
29.3.2 Spring Data JPA Repositories
Spring Data JPA repositories are interfaces that you can define to access data. JPA queries are created automatically from your method names. For example, a CityRepository
interface might declare a findAllByState(String state)
method to find all cities in a given state.
For more complex queries you can annotate your method using Spring Data’s Query
annotation.
Spring Data repositories usually extend from the Repository
or CrudRepository
interfaces. If you are using auto-configuration, repositories will be searched from the package containing your main configuration class (the one annotated with @EnableAutoConfiguration
or @SpringBootApplication
) down.
Here is a typical Spring Data repository:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> com.example.myapp.domain;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.data.domain.*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.data.repository.*;
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>interface</strong></span> CityRepository <span style="color:#7f0055"><strong>extends</strong></span> Repository<City, Long> {
Page<City> findAll(Pageable pageable);
City findByNameAndCountryAllIgnoringCase(String name, String country);
}</span></span>
We have barely scratched the surface of Spring Data JPA. For complete details check their reference documentation. |
29.3.3 Creating and dropping JPA databases
By default, JPA databases will be automatically created only if you use an embedded database (H2, HSQL or Derby). You can explicitly configure JPA settings using spring.jpa.*
properties. For example, to create and drop tables you can add the following to your application.properties
.
<span style="color:#333333"><span style="color:#000000">spring.jpa.hibernate.ddl-auto=create-drop</span></span>
Hibernate’s own internal property name for this (if you happen to remember it better) is |
<span style="color:#333333"><span style="color:#000000">spring.jpa.properties.hibernate.globally_quoted_identifiers=true</span></span>
passes hibernate.globally_quoted_identifiers
to the Hibernate entity manager.
By default the DDL execution (or validation) is deferred until the ApplicationContext
has started. There is also a spring.jpa.generate-ddl
flag, but it is not used if Hibernate autoconfig is active because the ddl-auto
settings are more fine-grained.
29.4 Using H2’s web console
The H2 database provides a browser-based console that Spring Boot can auto-configure for you. The console will be auto-configured when the following conditions are met:
- You are developing a web application
com.h2database:h2
is on the classpath- You are using Spring Boot’s developer tools
If you are not using Spring Boot’s developer tools, but would still like to make use of H2’s console, then you can do so by configuring the |
29.4.1 Changing the H2 console’s path
By default the console will be available at /h2-console
. You can customize the console’s path using the spring.h2.console.path
property.
29.4.2 Securing the H2 console
When Spring Security is on the classpath and basic auth is enabled, the H2 console will be automatically secured using basic auth. The following properties can be used to customize the security configuration:
security.user.role
security.basic.authorize-mode
security.basic.enabled
30. Using jOOQ
Java Object Oriented Querying (jOOQ) is a popular product from Data Geekery which generates Java code from your database, and lets you build type safe SQL queries through its fluent API. Both the commercial and open source editions can be used with Spring Boot.
30.1 Code Generation
In order to use jOOQ type-safe queries, you need to generate Java classes from your database schema. You can follow the instructions in the jOOQ user manual. If you are using the jooq-codegen-maven
plugin (and you also use the spring-boot-starter-parent
“parent POM”) you can safely omit the plugin’s <version>
tag. You can also use Spring Boot defined version variables (e.g. h2.version
) to declare the plugin’s database dependency. Here’s an example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.jooq<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>jooq-codegen-maven<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><executions></span>
...
<span style="color:#3f7f7f"></executions></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>com.h2database<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>h2<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>${h2.version}<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><jdbc></span>
<span style="color:#3f7f7f"><driver></span>org.h2.Driver<span style="color:#3f7f7f"></driver></span>
<span style="color:#3f7f7f"><url></span>jdbc:h2:~/yourdatabase<span style="color:#3f7f7f"></url></span>
<span style="color:#3f7f7f"></jdbc></span>
<span style="color:#3f7f7f"><generator></span>
...
<span style="color:#3f7f7f"></generator></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></plugin></span></span></span>
30.2 Using DSLContext
The fluent API offered by jOOQ is initiated via the org.jooq.DSLContext
interface. Spring Boot will auto-configure a DSLContext
as a Spring Bean and connect it to your application DataSource
. To use the DSLContext
you can just @Autowire
it:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> JooqExample <span style="color:#7f0055"><strong>implements</strong></span> CommandLineRunner {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> DSLContext create;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> JooqExample(DSLContext dslContext) {
<span style="color:#7f0055"><strong>this</strong></span>.create = dslContext;
}
}</span></span>
The jOOQ manual tends to use a variable named |
You can then use the DSLContext
to construct your queries:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>public</strong></span> List<GregorianCalendar> authorsBornAfter1980() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>this</strong></span>.create.selectFrom(AUTHOR)
.where(AUTHOR.DATE_OF_BIRTH.greaterThan(<span style="color:#7f0055"><strong>new</strong></span> GregorianCalendar(1980, 0, 1)))
.fetch(AUTHOR.DATE_OF_BIRTH);
}</span></span>
30.3 Customizing jOOQ
You can customize the SQL dialect used by jOOQ by setting spring.jooq.sql-dialect
in your application.properties
. For example, to specify Postgres you would add:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.jooq.sql-dialect</span>=Postgres</span></span>
More advanced customizations can be achieved by defining your own @Bean
definitions which will be used when the jOOQ Configuration
is created. You can define beans for the following jOOQ Types:
ConnectionProvider
TransactionProvider
RecordMapperProvider
RecordListenerProvider
ExecuteListenerProvider
VisitListenerProvider
You can also create your own org.jooq.Configuration
@Bean
if you want to take complete control of the jOOQ configuration.
31. Working with NoSQL technologies
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 Cassandra; 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.
31.1 Redis
Redis is a cache, message broker and richly-featured key-value store. Spring Boot offers basic auto-configuration for the Jedis client library and abstractions on top of it provided by Spring Data Redis. There is a spring-boot-starter-redis
‘Starter POM’ for collecting the dependencies in a convenient way.
31.1.1 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
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> StringRedisTemplate template;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(StringRedisTemplate template) {
<span style="color:#7f0055"><strong>this</strong></span>.template = template;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
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.
31.2 MongoDB
MongoDB is an open-source NoSQL document database that uses a JSON-like schema instead of traditional table-based relational data. Spring Boot offers several conveniences for working with MongoDB, including the spring-boot-starter-data-mongodb
‘Starter POM’.
31.2.1 Connecting to a MongoDB database
You can inject an auto-configured org.springframework.data.mongodb.MongoDbFactory
to access Mongo databases. By default the instance will attempt to connect to a MongoDB server using the URL mongodb://localhost/test
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.data.mongodb.MongoDbFactory;
<span style="color:#7f0055"><strong>import</strong></span> com.mongodb.DB;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> MongoDbFactory mongo;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(MongoDbFactory mongo) {
<span style="color:#7f0055"><strong>this</strong></span>.mongo = mongo;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> example() {
DB db = mongo.getDb();
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
You can set spring.data.mongodb.uri
property to change the URL and configure additional settings such as the replica set:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.data.mongodb.uri</span>=mongodb://user:secret@mongo1.example.com:12345,mongo2.example.com:23456/test</span></span>
Alternatively, as long as you’re using Mongo 2.x, specify a host
/port
. For example, you might declare the following in your application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.data.mongodb.host</span>=mongoserver
<span style="color:#7f007f">spring.data.mongodb.port</span>=27017</span></span>
|
If |
If you aren’t using Spring Data Mongo you can inject |
You can also declare your own MongoDbFactory
or Mongo
bean if you want to take complete control of establishing the MongoDB connection.
31.2.2 MongoTemplate
Spring Data Mongo provides a MongoTemplate
class that is very similar in its design to Spring’s JdbcTemplate
. As with JdbcTemplate
Spring Boot auto-configures a bean for you to simply inject:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.Autowired;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.data.mongodb.core.MongoTemplate;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> MongoTemplate mongoTemplate;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(MongoTemplate mongoTemplate) {
<span style="color:#7f0055"><strong>this</strong></span>.mongoTemplate = mongoTemplate;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
See the MongoOperations
Javadoc for complete details.
31.2.3 Spring Data MongoDB repositories
Spring Data includes repository support for MongoDB. As with the JPA repositories discussed earlier, the basic principle is that queries are constructed for you automatically based on method names.
In fact, both Spring Data JPA and Spring Data 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.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> com.example.myapp.domain;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.data.domain.*;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.data.repository.*;
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>interface</strong></span> CityRepository <span style="color:#7f0055"><strong>extends</strong></span> Repository<City, Long> {
Page<City> findAll(Pageable pageable);
City findByNameAndCountryAllIgnoringCase(String name, String country);
}</span></span>
For complete details of Spring Data MongoDB, including its rich object mapping technologies, refer to their reference documentation. |
31.2.4 Embedded Mongo
Spring Boot offers auto-configuration for Embedded Mongo. To use it in your Spring Boot application add a dependency onde.flapdoodle.embed:de.flapdoodle.embed.mongo
.
The port that Mongo will listen on can be configured using the spring.data.mongodb.port
property. To use a randomly allocated free port use a value of zero. The MongoClient
created by MongoAutoConfiguration
will be automatically configured to use the randomly allocated port.
If you have SLF4J on the classpath, output produced by Mongo will be automatically routed to a logger named org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongo
.
You can declare your own IMongodConfig
and IRuntimeConfig
beans to take control of the Mongo instance’s configuration and logging routing.
31.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-configuration support for Gemfire, but you can enable Spring Data Repositories with a single annotation (@EnableGemfireRepositories
).
31.4 Solr
Apache Solr is a search engine. Spring Boot offers basic auto-configuration for the Solr 4 client library and abstractions on top of it provided by Spring Data Solr. There is a spring-boot-starter-data-solr
‘Starter POM’ for collecting the dependencies in a convenient way.
Solr 5 is currently not supported and the auto-configuration will not be enabled by a Solr 5 dependency. |
31.4.1 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 usinglocalhost:8983/solr
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> SolrServer solr;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(SolrServer solr) {
<span style="color:#7f0055"><strong>this</strong></span>.solr = solr;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
If you add a @Bean
of your own of type SolrServer
it will replace the default.
31.4.2 Spring Data Solr repositories
Spring Data includes repository support for Apache Solr. As with the JPA repositories discussed earlier, the basic principle is that queries are constructed for you automatically based on method names.
In fact, both Spring Data JPA and Spring Data Solr share the same common infrastructure; so you could take the JPA example from earlier and, assuming that City
is now a @SolrDocument
class rather than a JPA @Entity
, it will work in the same way.
For complete details of Spring Data Solr, refer to their reference documentation. |
31.5 Elasticsearch
Elasticsearch 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.
31.5.1 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 in-memory server (a NodeClient
in Elasticsearch terms), but you can switch to a remote server (i.e. a TransportClient
) by setting spring.data.elasticsearch.cluster-nodes
to a comma-separated ‘host:port’ list.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> ElasticsearchTemplate template;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(ElasticsearchTemplate template) {
<span style="color:#7f0055"><strong>this</strong></span>.template = template;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
If you add a @Bean
of your own of type ElasticsearchTemplate
it will replace the default.
31.5.2 Spring Data Elasticsearch repositories
Spring Data includes repository support for Elasticsearch. As with the JPA repositories discussed earlier, the basic principle is that queries are constructed for you automatically based on method names.
In fact, both Spring Data JPA and Spring Data Elasticsearch share the same common infrastructure; so you could take the JPA example from earlier and, assuming that City
is now an Elasticsearch @Document
class rather than a JPA @Entity
, it will work in the same way.
For complete details of Spring Data Elasticsearch, refer to their reference documentation. |
31.6 Cassandra
Cassandra is an open source, distributed database management system designed to handle large amounts of data across many commodity servers. Spring Boot offers auto-configuration for Cassandra and abstractions on top of it provided by Spring Data Cassandra. There is a spring-boot-starter-data-cassandra
‘Starter POM’ for collecting the dependencies in a convenient way.
31.6.1 Connecting to Cassandra
You can inject an auto-configured CassandraTemplate
or a Cassandra Session
instance as you would any other Spring Bean. The spring.data.cassandra.*
properties can be used to customize the connection. Generally you will to provide keyspace-name
and contact-points
properties:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.data.cassandra.keyspace-name</span>=mykeyspace
<span style="color:#7f007f">spring.data.cassandra.contact-points</span>=cassandrahost1,cassandrahost2</span></span>
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> CassandraTemplate template;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(CassandraTemplate template) {
<span style="color:#7f0055"><strong>this</strong></span>.template = template;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
If you add a @Bean
of your own of type CassandraTemplate
it will replace the default.
31.6.2 Spring Data Cassandra repositories
Spring Data includes basic repository support for Cassandra. Currently this is more limited than the JPA repositories discussed earlier, and will need to annotate finder methods with @Query
.
For complete details of Spring Data Cassandra, refer to their reference documentation. |
32. Caching
The Spring Framework provides support for transparently adding caching to an application. At its core, the abstraction applies caching to methods, reducing thus the number of executions based on the information available in the cache. The caching logic is applied transparently, without any interference to the invoker.
Check the relevant section of the Spring Framework reference for more details. |
In a nutshell, adding caching to an operation of your service is as easy as adding the relevant annotation to its method:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> javax.cache.annotation.CacheResult;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MathService {
<em><span style="color:gray">@CacheResult</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>int</strong></span> computePiDecimal(<span style="color:#7f0055"><strong>int</strong></span> i) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
You can either use the standard JSR-107 (JCache) annotations or Spring’s own caching annotations transparently. We strongly advise you however to not mix and match them. |
It is also possible to update or evict data from the cache transparently. |
32.1 Supported cache providers
The cache abstraction does not provide an actual store and relies on abstraction materialized by the org.springframework.cache.Cache
andorg.springframework.cache.CacheManager
interfaces. Spring Boot auto-configures a suitable CacheManager
according to the implementation as long as the caching support is enabled via the @EnableCaching
annotation.
Use the |
Spring Boot tries to detect the following providers (in this order):
It is also possible to force the cache provider to use via the spring.cache.type
property.
If the CacheManager
is auto-configured by Spring Boot, you can further tune its configuration before it is fully initialized by exposing a bean implementing theCacheManagerCustomizer
interface. The following set the cache names to use.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> CacheManagerCustomizer<ConcurrentMapCacheManager> cacheManagerCustomizer() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> CacheManagerCustomizer<ConcurrentMapCacheManager>() {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> customize(ConcurrentMapCacheManager cacheManager) {
cacheManager.setCacheNames(Arrays.asList(<span style="color:#2a00ff">"one"</span>, <span style="color:#2a00ff">"two"</span>));
}
};
}</span></span>
=== In the example above, a |
32.1.1 Generic
Generic caching is used if the context defines at least one org.springframework.cache.Cache
bean, a CacheManager
wrapping them is configured.
32.1.2 JCache
JCache is bootstrapped via the presence of a javax.cache.spi.CachingProvider
on the classpath (i.e. a JSR-107 compliant caching library). It might happen than more that one provider is present, in which case the provider must be explicitly specified. Even if the JSR-107 standard does not enforce a standardized way to define the location of the configuration file, Spring Boot does its best to accommodate with implementation details.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em># Only necessary if more than one provider is present</em></span>
<span style="color:#7f007f">spring.cache.jcache.provider</span>=com.acme.MyCachingProvider
<span style="color:#7f007f">spring.cache.jcache.config</span>=classpath:acme.xml</span></span>
Since a cache library may offer both a native implementation and JSR-107 support Spring Boot will prefer the JSR-107 support so that the same features are available if you switch to a different JSR-107 implementation. |
There are several ways to customize the underlying javax.cache.cacheManager
:
- Caches can be created on startup via the
spring.cache.cache-names
property. If a customjavax.cache.configuration.Configuration
bean is defined, it is used to customize them. org.springframework.boot.autoconfigure.cache.JCacheManagerCustomizer
beans are invoked with the reference of theCacheManager
for full customization.
If a standard |
32.1.3 EhCache 2.x
EhCache 2.x is used if a file named ehcache.xml
can be found at the root of the classpath. If EhCache 2.x and such file is present it is used to bootstrap the cache manager. An alternate configuration file can be provide a well using:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.cache.ehcache.config</span>=classpath:config/another-config.xml</span></span>
32.1.4 Hazelcast
Spring Boot has a general support for Hazelcast. If a HazelcastInstance
has been auto-configured, it is automatically wrapped in a CacheManager
.
If for some reason you need a different HazelcastInstance
for caching, you can request Spring Boot to create a separate one that will be only used by theCacheManager
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.cache.hazelcast.config</span>=classpath:config/my-cache-hazelcast.xml</span></span>
If a separate |
32.1.5 Infinispan
Infinispan has no default configuration file location so it must be specified explicitly (or the default bootstrap is used).
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.cache.infinispan.config</span>=infinispan.xml</span></span>
Caches can be created on startup via the spring.cache.cache-names
property. If a custom ConfigurationBuilder
bean is defined, it is used to customize them.
32.1.6 Redis
If Redis is available and configured, the RedisCacheManager
is auto-configured. It is also possible to create additional caches on startup using the spring.cache.cache-names
property.
32.1.7 Guava
If Guava is present, a GuavaCacheManager
is auto-configured. Caches can be created on startup using the spring.cache.cache-names
property and customized by one of the following (in this order):
- A cache spec defined by
spring.cache.guava.spec
- A
com.google.common.cache.CacheBuilderSpec
bean is defined - A
com.google.common.cache.CacheBuilder
bean is defined
For instance, the following configuration creates a foo
and bar
caches with a maximum size of 500 and a time to live of 10 minutes
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.cache.cache-names</span>=foo,bar
<span style="color:#7f007f">spring.cache.guava.spec</span>=maximumSize=500,expireAfterAccess=600s</span></span>
Besides, if a com.google.common.cache.CacheLoader
bean is defined, it is automatically associated to the GuavaCacheManager
.
32.1.8 Simple
If none of these options worked out, a simple implementation using ConcurrentHashMap
as cache store is configured. This is the default if no caching library is present in your application.
33. Messaging
The Spring Framework provides extensive support for integrating with messaging systems: from simplified use of the JMS API using JmsTemplate
to a complete infrastructure to receive messages asynchronously. Spring AMQP provides a similar feature set for the ‘Advanced Message Queuing Protocol’ and Spring 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.
33.1 JMS
The javax.jms.ConnectionFactory
interface provides a standard method of creating a javax.jms.Connection
for interacting with a JMS broker. Although Spring needs a ConnectionFactory
to work with JMS, you generally won’t need to use it directly yourself and you can instead rely on higher level messaging abstractions (see the relevant section of the Spring Framework reference documentation for details). Spring Boot also auto-configures the necessary infrastructure to send and receive messages.
33.1.1 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 inapplication.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.activemq.broker-url</span>=tcp://192.168.1.210:9876
<span style="color:#7f007f">spring.activemq.user</span>=admin
<span style="color:#7f007f">spring.activemq.password</span>=secret</span></span>
See ActiveMQProperties
for more of the supported options.
By default, ActiveMQ creates a destination if it does not exist yet, so destinations are resolved against their provided names.
33.1.2 Artemis support
Apache Artemis was formed in 2015 when HornetQ was donated to the Apache Foundation. All the features listed in the Section 33.1.3, “HornetQ support”section below can be applied to Artemis. Simply replace spring.hornetq.*
properties with spring.artemis.*
and use spring-boot-starter-artemis
instead of spring-boot-starter-hornetq
. If you want to embed Artemis, make sure to add org.apache.activemq:artemis-jms-server
to the dependencies of your application.
You should not try and use Artemis and HornetQ and the same time. |
33.1.3 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 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.
If you are using |
HornetQ configuration is controlled by external configuration properties in spring.hornetq.*
. For example, you might declare the following section inapplication.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.hornetq.mode</span>=native
<span style="color:#7f007f">spring.hornetq.host</span>=192.168.1.210
<span style="color:#7f007f">spring.hornetq.port</span>=9876</span></span>
When embedding the broker, you can choose 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 typeorg.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.
33.1.4 Using a JNDI ConnectionFactory
If you are running your application in an Application Server Spring Boot will attempt to locate a JMS ConnectionFactory
using JNDI. By default the locations java:/JmsXA
and java:/XAConnectionFactory
will be checked. You can use the spring.jms.jndi-name
property if you need to specify an alternative location:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.jms.jndi-name</span>=java:/MyConnectionFactory</span></span>
33.1.5 Sending a message
Spring’s JmsTemplate
is auto-configured and you can autowire it directly into your own beans:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.Autowired;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.jms.core.JmsTemplate;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> JmsTemplate jmsTemplate;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(JmsTemplate jmsTemplate) {
<span style="color:#7f0055"><strong>this</strong></span>.jmsTemplate = jmsTemplate;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
|
33.1.6 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.
The default factory is transactional by default. If you are running in an infrastructure where a JtaTransactionManager
is present, it will be associated to the listener container by default. If not, the sessionTransacted
flag will be enabled. In that latter scenario, you can associate your local data store transaction to the processing of an incoming message by adding @Transactional
on your listener method (or a delegate thereof). This will make sure that the incoming message is acknowledged once the local transaction has completed. This also includes sending response messages that have been performed on the same JMS session.
The following component creates a listener endpoint on the someQueue
destination:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<em><span style="color:gray">@JmsListener(destination = "someQueue")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> processMessage(String content) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
Check the Javadoc of |
If you need to create more JmsListenerContainerFactory
instances or if you want to override the default, Spring Boot provides a DefaultJmsListenerContainerFactoryConfigurer
that you can use to initialize a DefaultJmsListenerContainerFactory
with the same settings as the one that is auto-configured.
For instance, the following exposes another factory that uses a specific MessageConverter
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>class</strong></span> JmsConfiguration {
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> DefaultJmsListenerContainerFactory myFactory(
DefaultJmsListenerContainerFactoryConfigurer configurer) {
DefaultJmsListenerContainerFactory factory =
<span style="color:#7f0055"><strong>new</strong></span> DefaultJmsListenerContainerFactory();
configurer.configure(factory, connectionFactory());
factory.setMessageConverter(myMessageConverter());
<span style="color:#7f0055"><strong>return</strong></span> factory;
}
}</span></span>
That you can use in any @JmsListener
-annotated method as follows:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
@JmsListener(destination = <span style="color:#2a00ff">"someQueue"</span>, <strong>containerFactory="myFactory"</strong>)
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> processMessage(String content) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
33.2 AMQP
The Advanced Message Queuing Protocol (AMQP) is a platform-neutral, wire-level protocol for message-oriented middleware. The Spring AMQP project applies core Spring concepts to the development of AMQP-based messaging solutions.
33.2.1 RabbitMQ support
RabbitMQ is a lightweight, reliable, scalable and portable message broker based on the AMQP protocol. Spring uses RabbitMQ
to communicate using the AMQP protocol.
RabbitMQ configuration is controlled by external configuration properties in spring.rabbitmq.*
. For example, you might declare the following section inapplication.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.rabbitmq.host</span>=localhost
<span style="color:#7f007f">spring.rabbitmq.port</span>=5672
<span style="color:#7f007f">spring.rabbitmq.username</span>=admin
<span style="color:#7f007f">spring.rabbitmq.password</span>=secret</span></span>
See RabbitProperties
for more of the supported options.
Check Understanding AMQP, the protocol used by RabbitMQ for more details. |
33.2.2 Sending a message
Spring’s AmqpTemplate
and AmqpAdmin
are auto-configured and you can autowire them directly into your own beans:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.amqp.core.AmqpAdmin;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.amqp.core.AmqpTemplate;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.Autowired;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> AmqpAdmin amqpAdmin;
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> AmqpTemplate amqpTemplate;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyBean(AmqpAdmin amqpAdmin, AmqpTemplate amqpTemplate) {
<span style="color:#7f0055"><strong>this</strong></span>.amqpAdmin = amqpAdmin;
<span style="color:#7f0055"><strong>this</strong></span>.amqpTemplate = amqpTemplate;
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
|
Any org.springframework.amqp.core.Queue
that is defined as a bean will be automatically used to declare a corresponding queue on the RabbitMQ instance if necessary.
33.2.3 Receiving a message
When the Rabbit infrastructure is present, any bean can be annotated with @RabbitListener
to create a listener endpoint. If no RabbitListenerContainerFactory
has been defined, a default one is configured automatically.
The following component creates a listener endpoint on the someQueue
queue:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
<em><span style="color:gray">@RabbitListener(queues = "someQueue")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> processMessage(String content) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
Check the Javadoc of |
If you need to create more RabbitListenerContainerFactory
instances or if you want to override the default, Spring Boot provides a SimpleRabbitListenerContainerFactoryConfigurer
that you can use to initialize a SimpleRabbitListenerContainerFactory
with the same settings as the one that is auto-configured.
For instance, the following exposes another factory that uses a specific MessageConverter
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>class</strong></span> RabbitConfiguration {
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> SimpleRabbitListenerContainerFactory myFactory(
SimpleRabbitListenerContainerFactoryConfigurer configurer) {
SimpleRabbitListenerContainerFactory factory =
<span style="color:#7f0055"><strong>new</strong></span> SimpleRabbitListenerContainerFactory();
configurer.configure(factory, connectionFactory);
factory.setMessageConverter(myMessageConverter());
<span style="color:#7f0055"><strong>return</strong></span> factory;
}
}</span></span>
That you can use in any @RabbitListener
-annotated method as follows:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyBean {
@RabbitListener(queues = <span style="color:#2a00ff">"someQueue"</span>, <strong>containerFactory="myFactory"</strong>)
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> processMessage(String content) {
<span style="color:#3f5f5f"><em>// ...</em></span>
}
}</span></span>
34. Sending email
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.
Check the reference documentation for a detailed explanation of how you can use |
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.
35. Distributed Transactions with JTA
Spring Boot supports distributed JTA transactions across multiple XA resources using either an Atomikos 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, Spring’s 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.
35.1 Using an Atomikos transaction manager
Atomikos is a popular open source transaction manager which can be embedded into your Spring Boot application. You can use the spring-boot-starter-jta-atomikos
Starter POM to pull in the appropriate Atomikos libraries. Spring Boot will auto-configure Atomikos and ensure that appropriate depends-on
settings are applied to your Spring beans for correct startup and shutdown ordering.
By default Atomikos transaction logs will be written to a transaction-logs
directory in your application home directory (the directory in which your application jar file resides). You can customize this directory by setting a spring.jta.log-dir
property in your application.properties
file. Properties starting spring.jta.
can also be used to customize the Atomikos UserTransactionServiceImp
. See the AtomikosProperties
Javadoc for complete details.
To ensure that multiple transaction managers can safely coordinate the same resource managers, each Atomikos instance must be configured with a unique ID. By default this ID is the IP address of the machine on which Atomikos is running. To ensure uniqueness in production, you should configure the |
35.2 Using a Bitronix transaction manager
Bitronix is another popular open source JTA transaction manager implementation. You can use the spring-boot-starter-jta-bitronix
starter POM to add the appropriate Bitronix dependencies to your project. As with Atomikos, Spring Boot will automatically configure Bitronix and post-process your beans to ensure that startup and shutdown ordering is correct.
By default Bitronix transaction log files (part1.btm
and part2.btm
) will be written to a transaction-logs
directory in your application home directory. You can customize this directory by using the spring.jta.log-dir
property. Properties starting spring.jta.
are also bound to the bitronix.tm.Configuration
bean, allowing for complete customization. See the Bitronix documentation for details.
To ensure that multiple transaction managers can safely coordinate the same resource managers, each Bitronix instance must be configured with a unique ID. By default this ID is the IP address of the machine on which Bitronix is running. To ensure uniqueness in production, you should configure the |
35.3 Using a Java EE managed transaction manager
If you are packaging your Spring Boot application as a war
or ear
file and deploying it to a Java EE application server, you can use your application servers built-in transaction manager. Spring Boot will attempt to auto-configure a transaction manager by looking at common JNDI locations (java:comp/UserTransaction
, java:comp/TransactionManager
etc). If you are using a transaction service provided by your application server, you will generally also want to ensure that all resources are managed by the server and exposed over JNDI. Spring Boot will attempt to auto-configure JMS by looking for a ConnectionFactory
at the JNDI path java:/JmsXA
or java:/XAConnectionFactory
and you can use the spring.datasource.jndi-name
property to configure your DataSource
.
35.4 Mixing XA and non-XA JMS connections
When using JTA, the primary JMS ConnectionFactory
bean will be XA aware and participate in distributed transactions. In some situations you might want to process certain JMS messages using a non-XA ConnectionFactory
. For example, your JMS processing logic might take longer than the XA timeout.
If you want to use a non-XA ConnectionFactory
you can inject the nonXaJmsConnectionFactory
bean rather than the @Primary
jmsConnectionFactory
bean. For consistency the jmsConnectionFactory
bean is also provided using the bean alias xaJmsConnectionFactory
.
For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em>// Inject the primary (XA aware) ConnectionFactory</em></span>
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>private</strong></span> ConnectionFactory defaultConnectionFactory;
<span style="color:#3f5f5f"><em>// Inject the XA aware ConnectionFactory (uses the alias and injects the same as above)</em></span>
<em><span style="color:gray">@Autowired</span></em>
<em><span style="color:gray">@Qualifier("xaJmsConnectionFactory")</span></em>
<span style="color:#7f0055"><strong>private</strong></span> ConnectionFactory xaConnectionFactory;
<span style="color:#3f5f5f"><em>// Inject the non-XA aware ConnectionFactory</em></span>
<em><span style="color:gray">@Autowired</span></em>
<em><span style="color:gray">@Qualifier("nonXaJmsConnectionFactory")</span></em>
<span style="color:#7f0055"><strong>private</strong></span> ConnectionFactory nonXaConnectionFactory;</span></span>
35.5 Supporting an alternative embedded transaction manager
The XAConnectionFactoryWrapper
and XADataSourceWrapper
interfaces can be used to support alternative embedded transaction managers. The interfaces are responsible for wrapping XAConnectionFactory
and XADataSource
beans and exposing them as regular ConnectionFactory
and DataSource
beans which will transparently enroll in the distributed transaction. DataSource and JMS auto-configuration will use JTA variants as long as you have a JtaTransactionManager
bean and appropriate XA wrapper beans registered within your ApplicationContext
.
The BitronixXAConnectionFactoryWrapper and BitronixXADataSourceWrapper provide good examples of how to write XA wrappers.
36. Hazelcast
If hazelcast is on the classpath, Spring Boot will auto-configure an HazelcastInstance
that you can inject in your application. The HazelcastInstance
is only created if a configuration is found.
You can define a com.hazelcast.config.Config
bean and we’ll use that. If your configuration defines an instance name, we’ll try to locate an existing instance rather than creating a new one.
You could also specify the hazelcast.xml
configuration file to use via configuration:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.hazelcast.config</span>=classpath:config/my-hazelcast.xml</span></span>
Otherwise, Spring Boot tries to find the Hazelcast configuration from the default locations, that is hazelcast.xml
in the working directory or at the root of the classpath. We also check if the hazelcast.config
system property is set. Check the Hazelcast documentation for more details.
Spring Boot also has an explicit caching support for Hazelcast. The |
37. Spring Integration
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.
38. Spring Session
Spring Session provides support for managing a user’s session information. If you are writing a web application and Spring Session and Spring Data Redis are both on the classpath, Spring Boot will auto-configure Spring Session through its @EnableRedisHttpSession
. Session data will be stored in Redis and the session timeout can be configured using the server.session.timeout
property.
39. Monitoring and management over JMX
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.
40. Testing
Spring Boot provides a number of useful tools for testing your application. The spring-boot-starter-test
POM provides Spring Test, JUnit, Hamcrest and Mockito dependencies. There are also useful test utilities in the core spring-boot
module under the org.springframework.boot.test
package.
40.1 Test scope dependencies
If you use the spring-boot-starter-test
‘Starter POM’ (in the test
scope
), you will find the following provided libraries:
- Spring Test — integration test support for Spring applications.
- JUnit — The de-facto standard for unit testing Java applications.
- Hamcrest — A library of matcher objects (also known as constraints or predicates) allowing
assertThat
style JUnit assertions. - Mockito — A Java mocking framework.
These are common libraries that we generally find useful when writing tests. You are free to add additional test dependencies of your own if these don’t suit your needs.
40.2 Testing Spring applications
One of the major advantages of dependency injection is that it should make your code easier to unit test. You can simply instantiate objects using the new
operator without even involving Spring. You can also use mock objects instead of real dependencies.
Often you need to move beyond ‘unit testing’ and start ‘integration testing’ (with a Spring ApplicationContext
actually involved in the process). It’s useful to be able to perform integration testing without requiring deployment of your application or needing to connect to other infrastructure.
The Spring Framework includes a dedicated test module for just such integration testing. You can declare a dependency directly to org.springframework:spring-test
or use the spring-boot-starter-test
‘Starter POM’ to pull it in transitively.
If you have not used the spring-test
module before you should start by reading the relevant section of the Spring Framework reference documentation.
40.3 Testing Spring Boot applications
A Spring Boot application is just a Spring ApplicationContext
so nothing very special has to be done to test it beyond what you would normally do with a vanilla Spring context. One thing to watch out for though is that the external properties, logging and other features of Spring Boot are only installed in the context by default if you use SpringApplication
to create it.
Spring Boot provides a @SpringApplicationConfiguration
annotation as an alternative to the standard spring-test
@ContextConfiguration
annotation. If you use @SpringApplicationConfiguration
to configure the ApplicationContext
used in your tests, it will be created via SpringApplication
and you will get the additional Spring Boot features.
For example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RunWith(SpringJUnit4ClassRunner.class)</span></em>
<em><span style="color:gray">@SpringApplicationConfiguration(SampleDataJpaApplication.class)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> CityRepositoryIntegrationTests {
<em><span style="color:gray">@Autowired</span></em>
CityRepository repository;
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
The context loader guesses whether you want to test a web application or not (e.g. with |
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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RunWith(SpringJUnit4ClassRunner.class)</span></em>
<em><span style="color:gray">@SpringApplicationConfiguration(SampleDataJpaApplication.class)</span></em>
<em><span style="color:gray">@WebIntegrationTest</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> CityRepositoryIntegrationTests {
<em><span style="color:gray">@Autowired</span></em>
CityRepository repository;
RestTemplate restTemplate = <span style="color:#7f0055"><strong>new</strong></span> TestRestTemplate();
<span style="color:#3f5f5f"><em>// ... interact with the running server</em></span>
}</span></span>
Spring’s test framework will cache application contexts between tests. Therefore, as long as your tests share the same configuration, the time consuming process of starting and stopping the server will only happen once, regardless of the number of tests that actually run. |
To change the port you can add environment properties to @WebIntegrationTest
as colon- or 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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RunWith(SpringJUnit4ClassRunner.class)</span></em>
<em><span style="color:gray">@SpringApplicationConfiguration(MyApplication.class)</span></em>
<em><span style="color:gray">@WebIntegrationTest({"server.port=0", "management.port=0"})</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> SomeIntegrationTests {
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
Alternatively, you can use the randomPort
convenience attribute to set server.port=0
. For example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RunWith(SpringJUnit4ClassRunner.class)</span></em>
<em><span style="color:gray">@SpringApplicationConfiguration(MyApplication.class)</span></em>
<em><span style="color:gray">@WebIntegrationTest(randomPort = true)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> SomeIntegrationTests {
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
See Section 70.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.
40.3.1 Using Spock to test Spring Boot applications
If you wish to use Spock to test a Spring Boot application you should add a dependency on Spock’s spock-spring
module to your application’s build. spock-spring
integrates Spring’s test framework into Spock.
The annotations described above can be used with Spock, i.e. you can annotate your |
40.4 Test utilities
A few test utility classes are packaged as part of spring-boot
that are generally useful when testing your application.
40.4.1 ConfigFileApplicationContextInitializer
ConfigFileApplicationContextInitializer
is an ApplicationContextInitializer
that can apply to your tests to load Spring Boot application.properties
files. You can use this when you don’t need the full features provided by @SpringApplicationConfiguration
.
<span style="color:#333333"><span style="color:#000000">@ContextConfiguration(classes = Config.<span style="color:#7f0055"><strong>class</strong></span>,
initializers = ConfigFileApplicationContextInitializer.<span style="color:#7f0055"><strong>class</strong></span>)</span></span>
40.4.2 EnvironmentTestUtils
EnvironmentTestUtils
allows you to quickly add properties to a ConfigurableEnvironment
or ConfigurableApplicationContext
. Simply call it withkey=value
strings:
<span style="color:#333333"><span style="color:#000000">EnvironmentTestUtils.addEnvironment(env, <span style="color:#2a00ff">"org=Spring"</span>, <span style="color:#2a00ff">"name=Boot"</span>);</span></span>
40.4.3 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.junit.Rule;
<span style="color:#7f0055"><strong>import</strong></span> org.junit.Test;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.test.OutputCapture;
<span style="color:#7f0055"><strong>import</strong></span> <span style="color:#7f0055"><strong>static</strong></span> org.hamcrest.Matchers.*;
<span style="color:#7f0055"><strong>import</strong></span> <span style="color:#7f0055"><strong>static</strong></span> org.junit.Assert.*;
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyTest {
<em><span style="color:gray">@Rule</span></em>
<span style="color:#7f0055"><strong>public</strong></span> OutputCapture capture = <span style="color:#7f0055"><strong>new</strong></span> OutputCapture();
<em><span style="color:gray">@Test</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> testName() <span style="color:#7f0055"><strong>throws</strong></span> Exception {
System.out.println(<span style="color:#2a00ff">"Hello World!"</span>);
assertThat(capture.toString(), containsString(<span style="color:#2a00ff">"World"</span>));
}
}</span></span>
40.4.4 TestRestTemplate
TestRestTemplate
is a convenience subclass of Spring’s 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.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyTest {
RestTemplate template = <span style="color:#7f0055"><strong>new</strong></span> TestRestTemplate();
<em><span style="color:gray">@Test</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> testRequest() <span style="color:#7f0055"><strong>throws</strong></span> Exception {
HttpHeaders headers = template.getForEntity(<span style="color:#2a00ff">"http://myhost.com"</span>, String.<span style="color:#7f0055"><strong>class</strong></span>).getHeaders();
assertThat(headers.getLocation().toString(), containsString(<span style="color:#2a00ff">"myotherhost"</span>));
}
}</span></span>
41. Creating your own auto-configuration
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.
Auto-configuration can be associated to a "starter" that provides the auto-configuration code as well as the typical libraries that you would use with it. We will first cover what you need to know to build your own auto-configuration and we will move on to the typical steps required to create a custom starter.
A demo project is available to showcase how you can create a starter step by step. |
41.1 Understanding auto-configured beans
Under the hood, auto-configuration is implemented with standard @Configuration
classes. Additional @Conditional
annotations are used to constrain when the auto-configuration should apply. Usually auto-configuration classes use @ConditionalOnClass
and @ConditionalOnMissingBean
annotations. This ensures that auto-configuration only applies when relevant classes are found and when you have not declared your own @Configuration
.
You can browse the source code of spring-boot-autoconfigure
to see the @Configuration
classes that we provide (see theMETA-INF/spring.factories
file).
41.2 Locating auto-configuration candidates
Spring Boot checks for the presence of a META-INF/spring.factories
file within your published jar. The file should list your configuration classes under theEnableAutoConfiguration
key.
<span style="color:#333333"><span style="color:#000000">org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
com.mycorp.libx.autoconfigure.LibXAutoConfiguration,\
com.mycorp.libx.autoconfigure.LibXWebAutoConfiguration</span></span>
You can use the @AutoConfigureAfter
or @AutoConfigureBefore
annotations if your configuration needs to be applied in a specific order. For example, if you provide web-specific configuration, your class may need to be applied after WebMvcAutoConfiguration
.
If you want to order certain auto-configurations that shouldn’t have any direct knowledge of each other, you can also use @AutoconfigureOrder
. That annotation has the same semantic as the regular @Order
annotation but provides a dedicated order for auto-configuration classes.
41.3 Condition annotations
You almost always want to include one or more @Conditional
annotations on your auto-configuration class. The @ConditionalOnMissingBean
is one common example that is used to allow developers to ‘override’ auto-configuration if they are not happy with your defaults.
Spring Boot includes a number of @Conditional
annotations that you can reuse in your own code by annotating @Configuration
classes or individual @Bean
methods.
41.3.1 Class conditions
The @ConditionalOnClass
and @ConditionalOnMissingClass
annotations allows configuration to be included 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.
41.3.2 Bean conditions
The @ConditionalOnBean
and @ConditionalOnMissingBean
annotations allow a bean to be included 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.
You need to be very careful about the order that bean definitions are added as these conditions are evaluated based on what has been processed so far. For this reason, we recommend only using |
|
41.3.3 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.
41.3.4 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
.
41.3.5 Web application conditions
The @ConditionalOnWebApplication
and @ConditionalOnNotWebApplication
annotations allow configuration to be included depending on whether the application is a 'web application'. A web application is any application that is using a Spring WebApplicationContext
, defines a session
scope or has a StandardServletEnvironment
.
41.3.6 SpEL expression conditions
The @ConditionalOnExpression
annotation allows configuration to be included based on the result of a SpEL expression.
41.4 Creating your own starter
A full Spring Boot starter for a library may contain the following components:
- The
autoconfigure
module that contains the auto-configuration code. - The
starter
module that provides a dependency to the autoconfigure module as well as the library and any additional dependencies that are typically useful. In a nutshell, adding the starter should be enough to start using that library.
You may combine the auto-configuration code and the dependency management in a single module if you don’t need to separate those two concerns. |
41.4.1 Naming
Please make sure to provide a proper namespace for your starter. Do not start your module names with spring-boot
, even if you are using a different Maven groupId. We may offer an official support for the thing you’re auto-configuring in the future.
Here is a rule of thumb. Let’s assume that you are creating a starter for "acme", name the auto-configure module acme-spring-boot-autoconfigure
and the starter acme-spring-boot-starter
. If you only have one module combining the two, use acme-spring-boot-starter
.
Besides, if your starter provides configuration keys, use a proper namespace for them. In particular, do not include your keys in the namespaces that Spring Boot uses (e.g. server
, management
, spring
, etc). These are "ours" and we may improve/modify them in the future in such a way it could break your things.
Make sure to trigger meta-data generation so that IDE assistance is available for your keys as well. You may want to review the generated meta-data (META-INF/spring-configuration-metadata.json
) to make sure your keys are properly documented.
41.4.2 Autoconfigure module
The autoconfigure module contains everything that is necessary to get started with the library. It may also contain configuration keys definition (@ConfigurationProperties
) and any callback interface that can be used to further customize how the components are initialized.
You should mark the dependencies to the library as optional so that you can include the autoconfigure module in your projects more easily. If you do it that way, the library won’t be provided and Spring Boot will back off by default. |
41.4.3 Starter module
The starter is an empty jar, really. Its only purpose is to provide the necessary dependencies to work with the library; see it as an opinionated view of what is required to get started.
Do not make assumptions about the project in which your starter is added. If the library you are auto-configuring typically requires other starters, mention them as well. Providing a proper set of default dependencies may be hard if the number of optional dependencies is high as you should avoid bringing unnecessary dependencies for a typical usage of the library.
42. WebSockets
Spring Boot provides WebSockets auto-configuration for embedded Tomcat (8 and 7), Jetty 9 and Undertow. If you’re 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 spring-boot-starter-websocket
module.
43. What to read next
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 thesource code directly. If you have specific questions, take a look at the how-to section.
If you are comfortable with Spring Boot’s core features, you can carry on and read about production-ready features.
Part V. Spring Boot Actuator: Production-ready features
Spring Boot includes a number of additional features to help you monitor and manage your application when it’s pushed to production. You can choose to manage and monitor your application using HTTP endpoints, with JMX or even by remote shell (SSH or Telnet). Auditing, health and metrics gathering can be automatically applied to your application.
Actuator HTTP endpoints are only available with a Spring MVC-based application. In particular, it will not work with Jersey unless you enable Spring MVC as well.
44. Enabling production-ready features
The spring-boot-actuator
module provides all of Spring Boot’s 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-actuator<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span></span></span>
For Gradle, use the declaration:
<span style="color:#333333"><span style="color:#000000">dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-actuator"</span>)
}</span></span>
45. Endpoints
Actuator endpoints allow you to monitor and interact with your application. Spring Boot includes a number of built-in endpoints and you can also add your own. For example the health
endpoint provides basic application health information.
The way that endpoints are exposed will depend on the type of technology that you choose. Most applications choose HTTP monitoring, where the ID of the endpoint is mapped to a URL. For example, by default, the health
endpoint will be mapped to /health
.
The following endpoints are available:
ID | Description | Sensitive Default |
---|---|---|
| Provides a hypermedia-based “discovery page” for the other endpoints. Requires Spring HATEOAS to be on the classpath. | true |
| Displays an auto-configuration report showing all auto-configuration candidates and the reason why they ‘were’ or ‘were not’ applied. | true |
| Displays a complete list of all the Spring beans in your application. | true |
| Displays a collated list of all | true |
| Displays documentation, including example requests and responses, for the Actuator’s endpoints. Requires | false |
| Performs a thread dump. | true |
| Exposes properties from Spring’s | true |
| Shows any Flyway database migrations that have been applied. | true |
| Shows application health information (when the application is secure, a simple ‘status’ when accessed over an unauthenticated connection or full message details when authenticated). | false |
| Displays arbitrary application info. | false |
| Shows any Liquibase database migrations that have been applied. | true |
| Returns the contents of the logfile (if | true |
| Shows ‘metrics’ information for the current application. | true |
| Displays a collated list of all | true |
| Allows the application to be gracefully shutdown (not enabled by default). | true |
| Displays trace information (by default the last few HTTP requests). | true |
Depending on how an endpoint is exposed, the |
45.1 Customizing endpoints
Endpoints can be customized using Spring properties. You can change if an endpoint is enabled
, if it is considered sensitive
and even its id
.
For example, here is an application.properties
that changes the sensitivity and id of the beans
endpoint and also enables shutdown
.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.beans.id</span>=springbeans
<span style="color:#7f007f">endpoints.beans.sensitive</span>=false
<span style="color:#7f007f">endpoints.shutdown.enabled</span>=true</span></span>
The prefix ‟ |
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
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.enabled</span>=false
<span style="color:#7f007f">endpoints.info.enabled</span>=true</span></span>
Likewise, you can also choose to globally set the “sensitive” flag of all endpoints. By default, the sensitive flag depends on the type of endpoint (see the table above). For example, to mark all endpoints as sensitive except info
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.sensitive</span>=true
<span style="color:#7f007f">endpoints.info.sensitive</span>=false</span></span>
45.2 Hypermedia for actuator MVC endpoints
If Spring HATEOAS is on the classpath (e.g. through the spring-boot-starter-hateoas
or if you are using Spring Data REST) then the HTTP endpoints from the Actuator are enhanced with hypermedia links, and a “discovery page” is added with links to all the endpoints. The “discovery page” is available on /actuator
by default. It is implemented as an endpoint, allowing properties to be used to configure its path (endpoints.actuator.path
) and whether or not it is enabled (endpoints.actuator.enabled
).
When a custom management context path is configured, the “discovery page” will automatically move from /actuator
to the root of the management context. For example, if the management context path is /management
then the discovery page will be available from /management
.
If the HAL Browser is on the classpath via its webjar (org.webjars:hal-browser
), or via the spring-data-rest-hal-browser
then an HTML “discovery page”, in the form of the HAL Browser, is also provided.
45.3 CORS support
Cross-origin resource sharing (CORS) is a W3C specification that allows you to specify in a flexible way what kind of cross domain requests are authorized. Actuator’s MVC endpoints can be configured to support such scenarios.
CORS support is disabled by default and is only enabled once the endpoints.cors.allowed-origins
property has been set. The configuration below permits GET
and POST
calls from the example.com
domain:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.cors.allowed-origins</span>=http://example.com
<span style="color:#7f007f">endpoints.cors.allowed-methods</span>=GET,POST</span></span>
Check EndpointCorsProperties for a complete list of options. |
45.4 Adding custom endpoints
If you add a @Bean
of type Endpoint
then it will automatically be exposed over JMX and HTTP (if there is an server available). An HTTP endpoints can be customized further by creating a bean of type MvcEndpoint
. Your MvcEndpoint
is not a @Controller
but it can use @RequestMapping
(and @Managed*
) to expose resources.
If you are doing this as a library feature consider adding a configuration class annoated with |
45.5 Health information
Health information can be used to check the status of your running application. It is often used by monitoring software to alert someone if a production system goes down. The default information exposed by the health
endpoint depends on how it is accessed. For an unauthenticated connection in a secure application a simple ‘status’ message is returned, and for an authenticated connection additional details are also displayed (see Section 46.6, “HTTP health endpoint access restrictions” for HTTP details).
Health information is collected from all HealthIndicator
beans defined in your ApplicationContext
. Spring Boot includes a number of auto-configuredHealthIndicators
and you can also write your own.
45.6 Security with HealthIndicators
Information returned by HealthIndicators
is often somewhat sensitive in nature. For example, you probably don’t want to publish details of your database server to the world. For this reason, by default, only the health status is exposed over an unauthenticated HTTP connection. If you are happy for complete health information to always be exposed you can set endpoints.health.sensitive
to false
.
Health responses are also cached to prevent “denial of service” attacks. Use the endpoints.health.time-to-live
property if you want to change the default cache period of 1000 milliseconds.
45.6.1 Auto-configured HealthIndicators
The following HealthIndicators
are auto-configured by Spring Boot when appropriate:
Name | Description |
---|---|
Checks that a Cassandra database is up. | |
Checks for low disk space. | |
Checks that a connection to | |
Checks that an ElasticSearch cluster is up. | |
Checks that a JMS broker is up. | |
Checks that a mail server is up. | |
Checks that a Mongo database is up. | |
Checks that a Rabbit server is up. | |
Checks that a Redis server is up. | |
Checks that a Solr server is up. |
It is possible to disable them all using the |
45.6.2 Writing custom HealthIndicators
To provide custom health information you can register Spring beans that implement the HealthIndicator
interface. You need to provide an implementation of the health()
method and return a Health
response. The Health
response should include a status and can optionally include additional details to be displayed.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.actuate.health.Health;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.actuate.health.HealthIndicator;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Component;
<em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyHealthIndicator <span style="color:#7f0055"><strong>implements</strong></span> HealthIndicator {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> Health health() {
<span style="color:#7f0055"><strong>int</strong></span> errorCode = check(); <span style="color:#3f5f5f"><em>// perform some specific health check</em></span>
<span style="color:#7f0055"><strong>if</strong></span> (errorCode != 0) {
<span style="color:#7f0055"><strong>return</strong></span> Health.down().withDetail(<span style="color:#2a00ff">"Error Code"</span>, errorCode).build();
}
<span style="color:#7f0055"><strong>return</strong></span> Health.up().build();
}
}</span></span>
The identifier for a given |
In addition to Spring Boot’s 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">management.health.status.order</span>=DOWN, OUT_OF_SERVICE, UNKNOWN, UP</span></span>
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
.
45.7 Custom application info information
You can customize the data exposed by the info
endpoint by setting info.*
Spring properties. All Environment
properties under the info key will be automatically exposed. For example, you could add the following to your application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">info.app.name</span>=MyService
<span style="color:#7f007f">info.app.description</span>=My awesome service
<span style="color:#7f007f">info.app.version</span>=1.0.0</span></span>
45.7.1 Automatically expand info properties at build time
Rather than hardcoding some properties that are also specified in your project’s build configuration, you can automatically expand info properties using the existing build configuration instead. This is possible in both Maven and Gradle.
Automatic property expansion using Maven
You can automatically expand info properties from the Maven project using resource filtering. If you use the spring-boot-starter-parent
you can then refer to your Maven ‘project properties’ via @..@
placeholders, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">project.artifactId</span>=myproject
<span style="color:#7f007f">project.name</span>=Demo
<span style="color:#7f007f">project.version</span>=X.X.X.X
<span style="color:#7f007f">project.description</span>=Demo project for info endpoint
<span style="color:#7f007f">info.build.artifact</span>=@project.artifactId@
<span style="color:#7f007f">info.build.name</span>=@project.name@
<span style="color:#7f007f">info.build.description</span>=@project.description@
<span style="color:#7f007f">info.build.version</span>=@project.version@</span></span>
The |
If you don’t use the starter parent, in your pom.xml
you need (inside the <build/>
element):
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><resources></span>
<span style="color:#3f7f7f"><resource></span>
<span style="color:#3f7f7f"><directory></span>src/main/resources<span style="color:#3f7f7f"></directory></span>
<span style="color:#3f7f7f"><filtering></span>true<span style="color:#3f7f7f"></filtering></span>
<span style="color:#3f7f7f"></resource></span>
<span style="color:#3f7f7f"></resources></span></span></span>
and (inside <plugins/>
):
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.apache.maven.plugins<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>maven-resources-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>2.6<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><delimiters></span>
<span style="color:#3f7f7f"><delimiter></span>@<span style="color:#3f7f7f"></delimiter></span>
<span style="color:#3f7f7f"></delimiters></span>
<span style="color:#3f7f7f"><useDefaultDelimiters></span>false<span style="color:#3f7f7f"></useDefaultDelimiters></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></plugin></span></span></span>
The |
Automatic property expansion using Gradle
You can automatically expand info properties from the Gradle project by configuring the Java plugin’s processResources
task to do so:
<span style="color:#333333"><span style="color:#000000">processResources {
expand(project.properties)
}</span></span>
You can then refer to your Gradle project’s properties via placeholders, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">info.build.name</span>=${name}
<span style="color:#7f007f">info.build.description</span>=${description}
<span style="color:#7f007f">info.build.version</span>=${version}</span></span>
Gradle’s |
45.7.2 Git commit information
Another useful feature of the info
endpoint is its ability to publish information about the state of your git
source code repository when the project was built. If a git.properties
file is contained in your jar the git.branch
and git.commit
properties will be loaded.
For Maven users the spring-boot-starter-parent
POM includes a pre-configured plugin to generate a git.properties
file. Simply add the following declaration to your POM:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>pl.project13.maven<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>git-commit-id-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
Gradle users can achieve the same result using the gradle-git-properties
plugin
<span style="color:#333333"><span style="color:#000000">plugins {
id <span style="color:#2a00ff">"com.gorylenko.gradle-git-properties"</span> version <span style="color:#2a00ff">"1.4.6"</span>
}</span></span>
46. Monitoring and management over HTTP
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
.
46.1 Securing sensitive endpoints
If you add ‘Spring Security’ to your project, all sensitive endpoints exposed over HTTP will be protected. By default ‘basic’ authentication will be used with the username user
and a generated password (which is printed on the console when the application starts).
Generated passwords are logged as the application starts. Search for ‘Using default security password’. |
You can use Spring properties to change the username and password and to change the security role required to access the endpoints. For example, you might set the following in your application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">security.user.name</span>=admin
<span style="color:#7f007f">security.user.password</span>=secret
<span style="color:#7f007f">management.security.role</span>=SUPERUSER</span></span>
If you don’t use Spring Security and your HTTP endpoints are exposed publicly, you should carefully consider which endpoints you enable. SeeSection 45.1, “Customizing endpoints” for details of how you can set |
46.2 Customizing the management endpoint paths
Sometimes it is useful to group all management endpoints under a single path. For example, your application might already use /info
for another purpose. You can use the management.context-path
property to set a prefix for your management endpoint:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">management.context-path</span>=/manage</span></span>
The application.properties
example above will change the endpoint from /{id}
to /manage/{id}
(e.g. /manage/info
).
You can also change the “id” of an endpoint (using endpoints.{name}.id
) which then changes the default resource path for the MVC endpoint. Legal endpoint ids are composed only of alphanumeric characters (because they can be exposed in a number of places, including JMX object names, where special characters are forbidden). The MVC path can be changed separately by configuring endpoints.{name}.path
, and there is no validation on those values (so you can use anything that is legal in a URL path). For example, to change the location of the /health
endpoint to /ping/me
you can setendpoints.health.path=/ping/me
.
If you provide a custom |
46.3 Customizing the management server port
Exposing management endpoints using the default HTTP port is a sensible choice for cloud based deployments. If, however, your application runs inside your own data center you may prefer to expose endpoints using a different HTTP port.
The management.port
property can be used to change the HTTP port.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">management.port</span>=8081</span></span>
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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">management.security.enabled</span>=false</span></span>
(If you don’t have Spring Security on the classpath then there is no need to explicitly disable the management security in this way, and it might even break the application.)
46.4 Customizing the management server address
You can customize the address that the management endpoints are available on by setting the management.address
property. This can be useful if you want to listen only on an internal or ops-facing network, or to only listen for connections from localhost
.
You can only listen on a different address if the port is different to the main server port. |
Here is an example application.properties
that will not allow remote management connections:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">management.port</span>=8081
<span style="color:#7f007f">management.address</span>=127.0.0.1</span></span>
46.5 Disabling HTTP endpoints
If you don’t want to expose endpoints over HTTP you can set the management port to -1
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">management.port</span>=-1</span></span>
46.6 HTTP health endpoint access restrictions
The information exposed by the health endpoint varies depending on whether or not it’s accessed anonymously, and whether or not the enclosing application is secure. By default, when accessed anonymously in a secure application, any details about the server’s health are hidden and the endpoint will simply indicate whether or not the server is up or down. Furthermore the response is cached for a configurable period to prevent the endpoint being used in a denial of service attack. The endpoints.health.time-to-live
property is used to configure the caching period in milliseconds. It defaults to 1000, i.e. one second.
The above-described restrictions can be enhanced, thereby allowing only authenticated users full access to the health endpoint in a secure application. To do so, set endpoints.health.sensitive
to true
. Here’s a summary of behavior (with default sensitive
flag value “false” indicated in bold):
management.security.enabled | endpoints.health.sensitive | Unauthenticated | Authenticated |
---|---|---|---|
false | false | Full content | Full content |
false | true | Status only | Full content |
true | false | Status only | Full content |
true | true | No content | Full content |
47. Monitoring and management over JMX
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.
47.1 Customizing MBean names
The name of the MBean is usually generated from the id
of the endpoint. For example the health
endpoint is exposed as org.springframework.boot/Endpoint/healthEndpoint
.
If your application contains more than one Spring ApplicationContext
you may find that names clash. To solve this problem you can set the endpoints.jmx.unique-names
property to true
so that MBean names are always unique.
You can also customize the JMX domain under which endpoints are exposed. Here is an example application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.jmx.domain</span>=myapp
<span style="color:#7f007f">endpoints.jmx.unique-names</span>=true</span></span>
47.2 Disabling JMX endpoints
If you don’t want to expose endpoints over JMX you can set the endpoints.jmx.enabled
property to false
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.jmx.enabled</span>=false</span></span>
47.3 Using Jolokia for JMX over HTTP
Jolokia is a JMX-HTTP bridge giving an alternative method of accessing JMX beans. To use Jolokia, simply include a dependency to org.jolokia:jolokia-core
. For example, using Maven you would add the following:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.jolokia<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>jolokia-core<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
Jolokia can then be accessed using /jolokia
on your management HTTP server.
47.3.1 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.
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">jolokia.config.debug</span>=true</span></span>
47.3.2 Disabling Jolokia
If you are using Jolokia but you don’t want Spring Boot to configure it, simply set the endpoints.jolokia.enabled
property to false
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">endpoints.jolokia.enabled</span>=false</span></span>
48. Monitoring and management using a remote shell
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 the following dependency to your project:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-remote-shell<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
If you want to also enable telnet access you will additionally need a dependency on |
CRaSH requires to run with a JDK as it compiles commands on the fly. If a basic |
48.1 Connecting to the remote shell
By default the remote shell will listen for connections on port 2000
. The default user is user
and the default password will be randomly generated and displayed in the log output. If your application is using Spring Security, the shell will use the same configuration by default. If not, a simple authentication will be applied and you should see a message like this:
<span style="color:#333333"><span style="color:#000000">Using default password for shell access: ec03e16c-4cf4-49ee-b745-7c8255c1dd7e</span></span>
Linux and OSX users can use ssh
to connect to the remote shell, Windows users can download and install PuTTY.
<span style="color:#333333"><span style="color:#000000">$ ssh -p 2000 user@localhost
user@localhost's password:
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v1.3.7.RELEASE) on myhost</span></span>
Type help
for a list of commands. Spring Boot provides metrics
, beans
, autoconfig
and endpoint
commands.
48.1.1 Remote shell credentials
You can use the shell.auth.simple.user.name
and shell.auth.simple.user.password
properties to configure custom connection credentials. It is also possible to use a ‘Spring Security’ AuthenticationManager
to handle login duties. See the CrshAutoConfiguration
and ShellProperties
Javadoc for full details.
48.2 Extending the remote shell
The remote shell can be extended in a number of interesting ways.
48.2.1 Remote shell commands
You can write additional shell commands using Groovy or Java (see the CRaSH documentation for details). By default Spring Boot will search for commands in the following locations:
classpath*:/commands/**
classpath*:/crash/commands/**
You can change the search path by settings a |
Here is a simple ‘hello’ command that could be loaded from src/main/resources/commands/hello.groovy
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>package</strong></span> commands
<span style="color:#7f0055"><strong>import</strong></span> org.crsh.cli.Command
<span style="color:#7f0055"><strong>import</strong></span> org.crsh.cli.Usage
<span style="color:#7f0055"><strong>import</strong></span> org.crsh.command.InvocationContext
<span style="color:#7f0055"><strong>class</strong></span> hello {
<em><span style="color:gray">@Usage("Say Hello")</span></em>
<em><span style="color:gray">@Command</span></em>
def main(InvocationContext context) {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#2a00ff">"Hello"</span>
}
}</span></span>
Spring Boot adds some additional attributes to InvocationContext
that you can access from your command:
Attribute Name | Description |
---|---|
| The version of Spring Boot |
| The version of the core Spring Framework |
| Access to the Spring |
| Access to the Spring |
48.2.2 Remote shell plugins
In addition to new commands, it is also possible to extend other CRaSH shell features. All Spring Beans that extend org.crsh.plugin.CRaSHPlugin
will be automatically registered with the shell.
For more information please refer to the CRaSH reference documentation.
49. Metrics
Spring Boot Actuator includes a metrics service with ‘gauge’ and ‘counter’ support. A ‘gauge’ records a single value; and a ‘counter’ records a delta (an increment or decrement). 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"counter.status.200.root"</span>: 20<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"counter.status.200.metrics"</span>: 3<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"counter.status.200.star-star"</span>: 5<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"counter.status.401.root"</span>: 4<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"gauge.response.star-star"</span>: 6<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"gauge.response.root"</span>: 2<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"gauge.response.metrics"</span>: 3<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"classes"</span>: 5808<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"classes.loaded"</span>: 5808<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"classes.unloaded"</span>: 0<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"heap"</span>: 3728384<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"heap.committed"</span>: 986624<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"heap.init"</span>: 262144<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"heap.used"</span>: 52765<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"nonheap"</span>: 0<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"nonheap.committed"</span>: 77568<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"nonheap.init"</span>: 2496<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"nonheap.used"</span>: 75826<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"mem"</span>: 986624<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"mem.free"</span>: 933858<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"processors"</span>: 8<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"threads"</span>: 15<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"threads.daemon"</span>: 11<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"threads.peak"</span>: 15<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"threads.totalStarted"</span>: 42<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"uptime"</span>: 494836<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"instance.uptime"</span>: 489782<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"datasource.primary.active"</span>: 5<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"datasource.primary.usage"</span>: 0.25
<span style="color:#7f0055"><strong>}</strong></span></span></span>
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 asterisks (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
.
In this example we are actually accessing the endpoint over HTTP using the |
49.1 System metrics
The following system metrics are exposed by Spring Boot:
- The total system memory in KB (
mem
) - The amount of free memory in KB (
mem.free
) - The number of processors (
processors
) - The system uptime in milliseconds (
uptime
) - The application context uptime in milliseconds (
instance.uptime
) - The average system load (
systemload.average
) - Heap information in KB (
heap
,heap.committed
,heap.init
,heap.used
) - Thread information (
threads
,thread.peak
,thread.daemon
) - Class load information (
classes
,classes.loaded
,classes.unloaded
) - Garbage collection information (
gc.xxx.count
,gc.xxx.time
)
49.2 DataSource metrics
The following metrics are exposed for each supported DataSource
defined in your application:
- The number of active connections (
datasource.xxx.active
) - The current usage of the connection pool (
datasource.xxx.usage
).
All data source metrics share the datasource.
prefix. The prefix is further qualified for each data source:
- If the data source is the primary data source (that is either the only available data source or the one flagged
@Primary
amongst the existing ones), the prefix isdatasource.primary
. - If the data source bean name ends with
DataSource
, the prefix is the name of the bean withoutDataSource
(i.e.datasource.batch
forbatchDataSource
). - In all other cases, the name of the bean is used.
It is possible to override part or all of those defaults by registering a bean with a customized version of DataSourcePublicMetrics
. By default, Spring Boot provides metadata for all supported data sources; you can add additional DataSourcePoolMetadataProvider
beans if your favorite data source isn’t supported out of the box. See DataSourcePoolMetadataProvidersConfiguration
for examples.
49.3 Cache metrics
The following metrics are exposed for each supported cache defined in your application:
- The current size of the cache (
cache.xxx.size
) - Hit ratio (
cache.xxx.hit.ratio
) - Miss ratio (
cache.xxx.miss.ratio
)
Cache providers do not expose the hit/miss ratio in a consistent way. While some expose an aggregated value (i.e. the hit ratio since the last time the stats were cleared), others expose a temporal value (i.e. the hit ratio of the last second). Check your caching provider documentation for more details. |
If two different cache managers happen to define the same cache, the name of the cache is prefixed by the name of the CacheManager
bean.
It is possible to override part or all of those defaults by registering a bean with a customized version of CachePublicMetrics
. By default, Spring Boot provides cache statistics for EhCache, Hazelcast, Infinispan, JCache and Guava. You can add additional CacheStatisticsProvider
beans if your favorite caching library isn’t supported out of the box. See CacheStatisticsAutoConfiguration
for examples.
49.4 Tomcat session metrics
If you are using Tomcat as your embedded servlet container, session metrics will automatically be exposed. The httpsessions.active
and httpsessions.max
keys provide the number of active and maximum sessions.
49.5 Recording your own metrics
To record your own metrics inject a CounterService
and/or GaugeService
into your bean. The CounterService
exposes increment
, decrement
and reset
methods; the GaugeService
provides a submit
method.
Here is a simple example that counts the number of times that a method is invoked:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.beans.factory.annotation.Autowired;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.actuate.metrics.CounterService;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.stereotype.Service;
<em><span style="color:gray">@Service</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyService {
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>final</strong></span> CounterService counterService;
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyService(CounterService counterService) {
<span style="color:#7f0055"><strong>this</strong></span>.counterService = counterService;
}
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> exampleMethod() {
<span style="color:#7f0055"><strong>this</strong></span>.counterService.increment(<span style="color:#2a00ff">"services.system.myservice.invoked"</span>);
}
}</span></span>
You can use any string as a metric name but you should follow guidelines of your chosen store/graphing technology. Some good guidelines for Graphite are available on Matt Aimonetti’s Blog. |
49.6 Adding your own public metrics
To add additional metrics that are computed every time the metrics endpoint is invoked, simply register additional PublicMetrics
implementation bean(s). By default, all such beans are gathered by the endpoint. You can easily change that by defining your own MetricsEndpoint
.
49.7 Special features with Java 8
The default implementation of GaugeService
and CounterService
provided by Spring Boot depends on the version of Java that you are using. With Java 8 (or better) the implementation switches to a high-performance version optimized for fast writes, backed by atomic in-memory buffers, rather than by the immutable but relatively expensive Metric<?>
type (counters are approximately 5 times faster and gauges approximately twice as fast as the repository-based implementations). The Dropwizard metrics services (see below) are also very efficient even for Java 7 (they have backports of some of the Java 8 concurrency libraries), but they do not record timestamps for metric values. If performance of metric gathering is a concern then it is always advisable to use one of the high-performance options, and also to only read metrics infrequently, so that the writes are buffered locally and only read when needed.
The old |
49.8 Metric writers, exporters and aggregation
Spring Boot provides a couple of implementations of a marker interface called Exporter
which can be used to copy metric readings from the in-memory buffers to a place where they can be analyzed and displayed. Indeed, if you provide a @Bean
that implements the MetricWriter
interface (or GaugeWriter
for simple use cases) and mark it @ExportMetricWriter
, then it will automatically be hooked up to an Exporter
and fed metric updates every 5 seconds (configured via spring.metrics.export.delay-millis
). In addition, any MetricReader
that you define and mark as @ExportMetricReader
will have its values exported by the default exporter.
The default exporter is a MetricCopyExporter
which tries to optimize itself by not copying values that haven’t changed since it was last called (the optimization can be switched off using a flag spring.metrics.export.send-latest
). Note also that the Dropwizard MetricRegistry
has no support for timestamps, so the optimization is not available if you are using Dropwizard metrics (all metrics will be copied on every tick).
The default values for the export trigger (delay-millis
, includes
, excludes
and send-latest
) can be set as spring.metrics.export.*
. Individual values for specific MetricWriters
can be set as spring.metrics.export.triggers.<name>.*
where <name>
is a bean name (or pattern for matching bean names).
The automatic export of metrics is disabled if you switch off the default |
49.8.1 Example: Export to Redis
If you provide a @Bean
of type RedisMetricRepository
and mark it @ExportMetricWriter
the metrics are exported to a Redis cache for aggregation. The RedisMetricRepository
has two important parameters to configure it for this purpose: prefix
and key
(passed into its constructor). It is best to use a prefix that is unique to the application instance (e.g. using a random value and maybe the logical name of the application to make it possible to correlate with other instances of the same application). The “key” is used to keep a global index of all metric names, so it should be unique “globally”, whatever that means for your system (e.g. two instances of the same system could share a Redis cache if they have distinct keys).
Example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<em><span style="color:gray">@ExportMetricWriter</span></em>
MetricWriter metricWriter(MetricExportProperties export) {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> RedisMetricRepository(connectionFactory,
export.getRedis().getPrefix(), export.getRedis().getKey());
}</span></span>
application.properties.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.metrics.export.redis.prefix</span>: metrics.mysystem.${spring.application.name:application}.${random.value:0000}
<span style="color:#7f007f">spring.metrics.export.redis.key</span>: keys.metrics.mysystem</span></span>
The prefix is constructed with the application name and id at the end, so it can easily be used to identify a group of processes with the same logical name later.
It’s important to set both the |
The example above uses |
49.8.2 Example: Export to Open TSDB
If you provide a @Bean
of type OpenTsdbGaugeWriter
and mark it @ExportMetricWriter
metrics are exported to Open TSDB for aggregation. The OpenTsdbGaugeWriter
has a url
property that you need to set to the Open TSDB “/put” endpoint, e.g. localhost:4242/api/put
). It also has anamingStrategy
that you can customize or configure to make the metrics match the data structure you need on the server. By default it just passes through the metric name as an Open TSDB metric name, and adds the tags “domain” (with value “org.springframework.metrics”) and “process” (with the value equal to the object hash of the naming strategy). Thus, after running the application and generating some metrics you can inspect the metrics in the TSD UI (localhost:4242 by default).
Example:
<span style="color:#333333"><span style="color:#000000">curl localhost:4242/api/query?start=1h-ago&m=max:counter.status.200.root
[
{
"metric": "counter.status.200.root",
"tags": {
"domain": "org.springframework.metrics",
"process": "b968a76"
},
"aggregateTags": [],
"dps": {
"1430492872": 2,
"1430492875": 6
}
}
]</span></span>
49.8.3 Example: Export to Statsd
To export metrics to Statsd, make sure first that you have added com.timgroup:java-statsd-client
as a dependency of your project (Spring Boot provides a dependency management for it). Then add a spring.metrics.export.statsd.host
value to your application.properties
file. Connections will be opened to port 8125
unless a spring.metrics.export.statsd.port
override is provided. You can use spring.metrics.export.statsd.prefix
if you want a custom prefix.
Alternatively, you can provide a @Bean
of type StatsdMetricWriter
and mark it @ExportMetricWriter
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Value("${spring.application.name:application}.${random.value:0000}")</span></em>
<span style="color:#7f0055"><strong>private</strong></span> String prefix = <span style="color:#2a00ff">"metrics"</span>;
<em><span style="color:gray">@Bean</span></em>
<em><span style="color:gray">@ExportMetricWriter</span></em>
MetricWriter metricWriter() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> StatsdMetricWriter(prefix, <span style="color:#2a00ff">"localhost"</span>, <span style="color:#2a00ff">"8125"</span>);
}</span></span>
49.8.4 Example: Export to JMX
If you provide a @Bean
of type JmxMetricWriter
marked @ExportMetricWriter
the metrics are exported as MBeans to the local server (the MBeanExporter
is provided by Spring Boot JMX auto-configuration as long as it is switched on). Metrics can then be inspected, graphed, alerted etc. using any tool that understands JMX (e.g. JConsole or JVisualVM).
Example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<em><span style="color:gray">@ExportMetricWriter</span></em>
MetricWriter metricWriter(MBeanExporter exporter) {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> JmxMetricWriter(exporter);
}</span></span>
Each metric is exported as an individual MBean. The format for the ObjectNames
is given by an ObjectNamingStrategy
which can be injected into the JmxMetricWriter
(the default breaks up the metric name and tags the first two period-separated sections in a way that should make the metrics group nicely in JVisualVM or JConsole).
49.9 Aggregating metrics from multiple sources
There is an AggregateMetricReader
that you can use to consolidate metrics from different physical sources. Sources for the same logical metric just need to publish them with a period-separated prefix, and the reader will aggregate (by truncating the metric names, and dropping the prefix). Counters are summed and everything else (i.e. gauges) take their most recent value.
This is very useful if multiple application instances are feeding to a central (e.g. Redis) repository and you want to display the results. Particularly recommended in conjunction with a MetricReaderPublicMetrics
for hooking up to the results to the “/metrics” endpoint.
Example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>private</strong></span> MetricExportProperties export;
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> PublicMetrics metricsAggregate() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> MetricReaderPublicMetrics(aggregatesMetricReader());
}
<span style="color:#7f0055"><strong>private</strong></span> MetricReader globalMetricsForAggregation() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> RedisMetricRepository(<span style="color:#7f0055"><strong>this</strong></span>.connectionFactory,
<span style="color:#7f0055"><strong>this</strong></span>.export.getRedis().getAggregatePrefix(), <span style="color:#7f0055"><strong>this</strong></span>.export.getRedis().getKey());
}
<span style="color:#7f0055"><strong>private</strong></span> MetricReader aggregatesMetricReader() {
AggregateMetricReader repository = <span style="color:#7f0055"><strong>new</strong></span> AggregateMetricReader(
globalMetricsForAggregation());
<span style="color:#7f0055"><strong>return</strong></span> repository;
}</span></span>
The example above uses |
The |
49.10 Dropwizard Metrics
A default MetricRegistry
Spring bean will be created when you declare a dependency to the io.dropwizard.metrics:metrics-core
library; you can also register you own @Bean
instance if you need customizations. Users of the Dropwizard ‘Metrics’ library will find that Spring Boot metrics are automatically published to com.codahale.metrics.MetricRegistry
. Metrics from the MetricRegistry
are also automatically exposed via the /metrics
endpoint
When Dropwizard metrics are in use, the default CounterService
and GaugeService
are replaced with a DropwizardMetricServices
, which is a wrapper around the MetricRegistry
(so you can @Autowired
one of those services and use it as normal). You can also create “special” Dropwizard metrics by prefixing your metric names with the appropriate type (i.e. timer.*
, histogram.*
for gauges, and meter.*
for counters).
49.11 Message channel integration
If a MessageChannel
bean called metricsChannel
exists, then a MetricWriter
will be created that writes metrics to that channel. The writer is automatically hooked up to an exporter (as for all writers), so all metric values will appear on the channel, and additional analysis or actions can be taken by subscribers (it’s up to you to provide the channel and any subscribers you need).
50. Auditing
Spring Boot Actuator has a flexible audit framework that will publish events once Spring Security is in play (‘authentication success’, ‘failure’ and ‘access denied’ exceptions by default). This can be very useful for reporting, and also to implement a lock-out policy based on authentication failures. To customize published security events you can provide your own implementations of AbstractAuthenticationAuditListener
and AbstractAuthorizationAuditListener
.
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
).
51. Tracing
Tracing is automatically enabled for all HTTP requests. You can view the trace
endpoint and obtain basic information about the last few requests:
<span style="color:#333333"><span style="color:#000000">[<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"timestamp"</span>: 1394343677415<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"info"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"method"</span>: <span style="color:#2a00ff">"GET"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"path"</span>: <span style="color:#2a00ff">"/trace"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"headers"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"request"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"Accept"</span>: <span style="color:#2a00ff">"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"Connection"</span>: <span style="color:#2a00ff">"keep-alive"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"Accept-Encoding"</span>: <span style="color:#2a00ff">"gzip, deflate"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"User-Agent"</span>: <span style="color:#2a00ff">"Mozilla/5.0 Gecko/Firefox"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"Accept-Language"</span>: <span style="color:#2a00ff">"en-US,en;q=0.5"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"Cookie"</span>: <span style="color:#2a00ff">"_ga=GA1.1.827067509.1390890128; ..."</span>
<span style="color:#2a00ff">"Authorization"</span>: <span style="color:#2a00ff">"Basic ..."</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"Host"</span>: <span style="color:#2a00ff">"localhost:8080"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#2a00ff">"response"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"Strict-Transport-Security"</span>: <span style="color:#2a00ff">"max-age=31536000 ; includeSubDomains"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"X-Application-Context"</span>: <span style="color:#2a00ff">"application:8080"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"Content-Type"</span>: <span style="color:#2a00ff">"application/json;charset=UTF-8"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"status"</span>: <span style="color:#2a00ff">"200"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
},<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"timestamp"</span>: 1394343684465<span style="color:#7f0055"><strong>,</strong></span>
...
<span style="color:#7f0055"><strong>}]</strong></span></span></span>
51.1 Custom tracing
If you need to trace additional events you can inject a TraceRepository
into your Spring beans. The add
method accepts a single Map
structure that will be converted to JSON and logged.
By default an InMemoryTraceRepository
will be used that stores the last 100 events. You can define your own instance of the InMemoryTraceRepository
bean if you need to expand the capacity. You can also create your own alternative TraceRepository
implementation if needed.
52. Process monitoring
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 nameapplication.pid
).EmbeddedServerPortFileWriter
creates a file (or files) containing the ports of the embedded server (by default in the application directory with the file nameapplication.port
).
These writers are not activated by default, but you can enable them in one of the ways described below.
52.1 Extend configuration
In META-INF/spring.factories
file you can activate the listener(s) that writes a PID file. Example:
<span style="color:#333333"><span style="color:#000000">org.springframework.context.ApplicationListener=\
org.springframework.boot.actuate.system.ApplicationPidFileWriter,
org.springframework.boot.actuate.system.EmbeddedServerPortFileWriter</span></span>
52.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.
53. What to read next
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 ‘deployment options’ or jump ahead for some in-depth information about Spring Boot’s build tool plugins.
Part VI. Deploying Spring Boot applications
Spring Boot’s flexible packaging options provide a great deal of choice when it comes to deploying your application. You can easily deploy Spring Boot applications to a variety of cloud platforms, to a container images (such as Docker) or to virtual/real machines.
This section covers some of the more common deployment scenarios.
54. Deploying to the cloud
Spring Boot’s executable jars are ready-made for most popular cloud PaaS (platform-as-a-service) providers. These providers tend to require that you “bring your own container”; they manage application processes (not Java applications specifically), so they need some intermediary layer that adapts your application to the cloud’s notion of a running process.
Two popular cloud providers, Heroku and Cloud Foundry, employ a “buildpack” approach. The buildpack wraps your deployed code in whatever is needed to start your application: it might be a JDK and a call to java
, it might be an embedded web server, or it might be a full-fledged application server. A buildpack is pluggable, but ideally you should be able to get by with as few customizations to it as possible. This reduces the footprint of functionality that is not under your control. It minimizes divergence between development and production environments.
Ideally, your application, like a Spring Boot executable jar, has everything that it needs to run packaged within it.
In this section we’ll look at what it takes to get the simple application that we developed in the “Getting Started” section up and running in the Cloud.
54.1 Cloud Foundry
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 you’ve built your application (using, for example, mvn clean package
) and installed the cf
command line tool, simply deploy your application using the cf push
command as follows, substituting the path to your compiled .jar
. Be sure to have logged in with your cf
command line client before pushing an application.
<span style="color:#333333"><span style="color:#000000">$ cf push acloudyspringtime -p target/demo-0.0.1-SNAPSHOT.jar</span></span>
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.
Here we are substituting |
At this point cf
will start uploading your application:
<span style="color:#333333"><span style="color:#000000">Uploading acloudyspringtime... <strong>OK</strong>
Preparing to start acloudyspringtime... <strong>OK</strong>
-----> Downloaded app package (<strong>8.9M</strong>)
-----> Java Buildpack source: system
-----> Downloading Open JDK 1.7.0_51 from .../x86_64/openjdk-1.7.0_51.tar.gz (<strong>1.8s</strong>)
Expanding Open JDK to .java-buildpack/open_jdk (<strong>1.2s</strong>)
-----> Downloading Spring Auto Reconfiguration from 0.8.7 .../auto-reconfiguration-0.8.7.jar (<strong>0.1s</strong>)
-----> Uploading droplet (<strong>44M</strong>)
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</span></span>
Congratulations! The application is now live!
It’s easy to then verify the status of the deployed application:
<span style="color:#333333"><span style="color:#000000">$ cf apps
Getting applications in ...
OK
name requested state instances memory disk urls
...
acloudyspringtime started 1/1 512M 1G acloudyspringtime.cfapps.io
...</span></span>
Once Cloud Foundry acknowledges that your application has been deployed, you should be able to hit the application at the URI given, in this caseacloudyspringtime.cfapps.io/
.
54.1.1 Binding to services
By default, metadata about the running application as well as service connection information is exposed to the application as environment variables (for example: $VCAP_SERVICES
). This architecture decision is due to Cloud Foundry’s polyglot (any language and platform can be supported as a buildpack) nature; process-scoped environment variables are language agnostic.
Environment variables don’t always make for the easiest API so Spring Boot automatically extracts them and flattens the data into properties that can be accessed through Spring’s Environment
abstraction:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Component</span></em>
<span style="color:#7f0055"><strong>class</strong></span> MyBean <span style="color:#7f0055"><strong>implements</strong></span> EnvironmentAware {
<span style="color:#7f0055"><strong>private</strong></span> String instanceId;
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> setEnvironment(Environment environment) {
<span style="color:#7f0055"><strong>this</strong></span>.instanceId = environment.getProperty(<span style="color:#2a00ff">"vcap.application.instance_id"</span>);
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
All Cloud Foundry properties are prefixed with vcap
. You can use vcap properties to access application information (such as the public URL of the application) and service information (such as database credentials). See CloudFoundryVcapEnvironmentPostProcessor
Javadoc for complete details.
The Spring Cloud Connectors project is a better fit for tasks such as configuring a DataSource. Spring Boot includes auto-configuration support and a |
54.2 Heroku
Heroku is another popular PaaS platform. To customize Heroku builds, you provide a Procfile
, which provides the incantation required to deploy an application. Heroku assigns a port
for the Java application to use and then ensures that routing to the external URI works.
You must configure your application to listen on the correct port. Here’s the Procfile
for our starter REST application:
<span style="color:#333333"><span style="color:#000000">web: java -Dserver.port=$PORT -jar target/demo-0.0.1-SNAPSHOT.jar</span></span>
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.8. 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:
<span style="color:#333333"><span style="color:#000000">java.runtime.version=1.7</span></span>
This should be everything you need. The most common workflow for Heroku deployments is to git push
the code to production.
<span style="color:#333333"><span style="color:#000000">$ git push heroku master
Initializing repository, <strong>done</strong>.
Counting objects: 95, <strong>done</strong>.
Delta compression using up to 8 threads.
Compressing objects: 100% (78/78), <strong>done</strong>.
Writing objects: 100% (95/95), 8.66 MiB | 606.00 KiB/s, <strong>done</strong>.
Total 95 (delta 31), reused 0 (delta 0)
-----> Java app detected
-----> Installing OpenJDK 1.8... <strong>done</strong>
-----> Installing Maven 3.3.1... <strong>done</strong>
-----> Installing settings.xml... <strong>done</strong>
-----> Executing: mvn -B -DskipTests=true clean install
[INFO] Scanning for projects...
Downloading: http://repo.spring.io/...
Downloaded: http://repo.spring.io/... (818 B at 1.8 KB/sec)
....
Downloaded: http://s3pository.heroku.com/jvm/... (152 KB at 595.3 KB/sec)
[INFO] Installing /tmp/build_0c35a5d2-a067-4abc-a232-14b1fb7a8229/target/...
[INFO] Installing /tmp/build_0c35a5d2-a067-4abc-a232-14b1fb7a8229/pom.xml ...
[INFO] ------------------------------------------------------------------------
[INFO] <strong>BUILD SUCCESS</strong>
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 59.358s
[INFO] Finished at: Fri Mar 07 07:28:25 UTC 2014
[INFO] Final Memory: 20M/493M
[INFO] ------------------------------------------------------------------------
-----> Discovering process types
Procfile declares types -> <strong>web</strong>
-----> Compressing... <strong>done</strong>, 70.4MB
-----> Launching... <strong>done</strong>, v6
http://agile-sierra-1405.herokuapp.com/ <strong>deployed to Heroku</strong>
To git@heroku.com:agile-sierra-1405.git
* [new branch] master -> master</span></span>
Your application should now be up and running on Heroku.
54.3 OpenShift
OpenShift is the RedHat public (and enterprise) PaaS solution. Like Heroku, it works by running scripts triggered by git commits, so you can script the launching of a Spring Boot application in pretty much any way you like as long as the Java runtime is available (which is a standard feature you can ask for at OpenShift). To do this you can use the DIY Cartridge and hooks in your repository under .openshift/action_hooks
:
The basic model is to:
- 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) -
Use a
build
hook to build your jar (using Maven or Gradle), e.g.<span style="color:#333333"><span style="color:#000000">#!/bin/bash cd $OPENSHIFT_REPO_DIR mvn package -s .openshift/settings.xml -DskipTests=true</span></span>
-
Add a
start
hook that callsjava -jar …
<span style="color:#333333"><span style="color:#000000">#!/bin/bash cd $OPENSHIFT_REPO_DIR nohup java -jar target/*.jar --server.port=${OPENSHIFT_DIY_PORT} --server.address=${OPENSHIFT_DIY_IP} &</span></span>
-
Use a
stop
hook (since the start is supposed to return cleanly), e.g.<span style="color:#333333"><span style="color:#000000">#!/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</span></span>
-
Embed service bindings from environment variables provided by the platform in your
application.properties
, e.g.<span style="color:#333333"><span style="color:#000000">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}</span></span>
There’s a blog on running Gradle in OpenShift on their website that will get you started with a gradle build to run the app.
54.4 Boxfuse and Amazon Web Services
Boxfuse works by turning your Spring Boot executable jar or war into a minimal VM image that can be deployed unchanged either on VirtualBox or on AWS. Boxfuse comes with deep integration for Spring Boot and will use the information from your Spring Boot configuration file to automatically configure ports and health check URLs. Boxfuse leverages this information both for the images it produces as well as for all the resources it provisions (instances, security groups, elastic load balancers, etc).
Once you have created a Boxfuse account, connected it to your AWS account, and installed the latest version of the Boxfuse Client, you can deploy your Spring Boot application to AWS as follows (ensure the application has been built by Maven or Gradle first using, for example, mvn clean package
):
<span style="color:#333333"><span style="color:#000000">$ boxfuse run myapp-1.0.jar -env=prod</span></span>
See the boxfuse run
documentation for more options. If there is a boxfuse.com/docs/commandline/#configuration [boxfuse.conf
] file present in the current directory, it will be consulted.
By default Boxfuse will activate a Spring profile named |
At this point boxfuse
will create an image for your application, upload it, and then configure and start the necessary resources on AWS:
<span style="color:#333333"><span style="color:#000000">Fusing Image for myapp-1.0.jar ...
Image fused in 00:06.838s (53937 K) -> axelfontaine/myapp:1.0
Creating axelfontaine/myapp ...
Pushing axelfontaine/myapp:1.0 ...
Verifying axelfontaine/myapp:1.0 ...
Creating Elastic IP ...
Mapping myapp-axelfontaine.boxfuse.io to 52.28.233.167 ...
Waiting for AWS to create an AMI for axelfontaine/myapp:1.0 in eu-central-1 (this may take up to 50 seconds) ...
AMI created in 00:23.557s -> ami-d23f38cf
Creating security group boxfuse-sg_axelfontaine/myapp:1.0 ...
Launching t2.micro instance of axelfontaine/myapp:1.0 (ami-d23f38cf) in eu-central-1 ...
Instance launched in 00:30.306s -> i-92ef9f53
Waiting for AWS to boot Instance i-92ef9f53 and Payload to start at http://52.28.235.61/ ...
Payload started in 00:29.266s -> http://52.28.235.61/
Remapping Elastic IP 52.28.233.167 to i-92ef9f53 ...
Waiting 15s for AWS to complete Elastic IP Zero Downtime transition ...
Deployment completed successfully. axelfontaine/myapp:1.0 is up and running at http://myapp-axelfontaine.boxfuse.io/</span></span>
Your application should now be up and running on AWS.
There’s a blog on deploying Spring Boot apps on EC2 as well as documentation for the Boxfuse Spring Boot integration on their website that will get you started with a Maven build to run the app.
54.5 Google App Engine
Google App Engine is tied to the Servlet 2.5 API, so you can’t deploy a Spring Application there without some modifications. See the Servlet 2.5 section of this guide.
55. Installing Spring Boot applications
In additional to running Spring Boot applications using java -jar
it is also possible to make fully executable applications for Unix systems. This makes it very easy to install and manage Spring Boot applications in common production environments.
To create a ‘fully executable’ jar with Maven use the following plugin configuration:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><executable></span>true<span style="color:#3f7f7f"></executable></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></plugin></span></span></span>
With Gradle, the equivalent configuration would be:
<span style="color:#333333"><span style="color:#000000">apply plugin: <span style="color:#2a00ff">'spring-boot'</span>
springBoot {
executable = true
}</span></span>
Fully executable jars work by embedding an extra script at the front of the file. Not all tools currently accept this format so you may not always be able to use this technique. |
The default script supports most Linux distributions and is tested on CentOS and Ubuntu. Other platforms, such as OS X and FreeBSD, will require the use of a custom |
When a fully executable jar is run, it uses the jar’s directory as the working directory. |
55.1 Unix/Linux services
Spring Boot application can be easily started as Unix/Linux services using either init.d
or systemd
.
55.1.1 Installation as an init.d service (System V)
The default executable script that can be embedded into Spring Boot jars will act as an init.d
script when it is symlinked to /etc/init.d
. The standard start
, stop
, restart
and status
commands can be used. The script supports the following features:
- Starts the services as the user that owns the jar file
- Tracks application’s PID using
/var/run/<appname>/<appname>.pid
- Writes console logs to
/var/log/<appname>.log
Assuming that you have a Spring Boot application installed in /var/myapp
, to install a Spring Boot application as an init.d
service simply create a symlink:
<span style="color:#333333"><span style="color:#000000">$ sudo ln -s /var/myapp/myapp.jar /etc/init.d/myapp</span></span>
Once installed, you can start and stop the service in the usual way. You can also flag the application to start automatically using your standard operating system tools. For example, if you use Debian:
<span style="color:#333333"><span style="color:#000000">$ update-rc.d myapp defaults <priority></span></span>
Securing an init.d service
The following is a set of guidelines on how to secure a Spring Boot application that’s being run as an init.d service. It is not intended to be an exhaustive list of everything that should be done to harden an application and the environment in which it runs. |
When executed as root, as is the case when root is being used to start an init.d service, the default executable script will run the application as the user which owns the jar file. You should never run a Spring Boot application as root
so your application’s jar file should never be owned by root. Instead, create a specific user to run your application and use chown
to make it the owner of the jar file. For example:
<span style="color:#333333"><span style="color:#000000">$ chown bootapp:bootapp your-app.jar</span></span>
In this case, the default executable script will run the application as the bootapp
user.
To reduce the chances of the application’s user account being compromised, you should consider preventing it from using a login shell. Set the account’s shell to |
You should also take steps to prevent the modification of your application’s jar file. Firstly, configure its permissions so that it cannot be written and can only be read or executed by its owner:
<span style="color:#333333"><span style="color:#000000">$ chmod 500 your-app.jar</span></span>
Secondly, you should also take steps to limit the damage if your application or the account that’s running it is compromised. If an attacker does gain access, they could make the jar file writable and change its contents. One way to protect against this is to make it immutable using chattr
:
<span style="color:#333333"><span style="color:#000000">$ sudo chattr +i your-app.jar</span></span>
This will prevent any user, including root, from modifying the jar.
If root is used to control the application’s service and you use a .conf
file to customize its startup, the .conf
file will be read and evaluated by the root user. It should be secured accordingly. Use chmod
so that the file can only be read by the owner and use chown
to make root the owner:
<span style="color:#333333"><span style="color:#000000">$ chmod 400 your-app.conf
$ sudo chown root:root your-app.conf</span></span>
55.1.2 Installation as a systemd service
Systemd is the successor of the System V init system, and is now being used by many modern Linux distributions. Although you can continue to use init.d
scripts with systemd
, it is also possible to launch Spring Boot applications using systemd
‘service’ scripts.
Assuming that you have a Spring Boot application installed in /var/myapp
, to install a Spring Boot application as a systemd
service create a script named myapp.service
using the following example and place it in /etc/systemd/system
directory:
<span style="color:#333333"><span style="color:#000000">[Unit]
Description=myapp
After=syslog.target
[Service]
User=myapp
ExecStart=/var/myapp/myapp.jar
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target</span></span>
Remember to change the |
Note that unlike when running as an init.d
service, user that runs the application, PID file and console log file behave differently under systemd
and must be configured using appropriate fields in ‘service’ script. Consult the service unit configuration man page for more details.
To flag the application to start automatically on system boot use the following command:
<span style="color:#333333"><span style="color:#000000">$ systemctl enable myapp.service</span></span>
Refer to man systemctl
for more details.
55.1.3 Customizing the startup script
The script accepts the following parameters as environment variables, so you can change the default behavior in a script or on the command line:
Variable | Description |
---|---|
| The “mode” of operation. The default depends on the way the jar was built, but will usually be |
| If the |
| The root name of the pid folder ( |
| The name of the folder to put log files in ( |
| The name of the log file in the |
| The name of the app. If the jar is run from a symlink the script guesses the app name, but if it is not a symlink, or you want to explicitly set the app name this can be useful. |
| The arguments to pass to the program (the Spring Boot app). |
| The location of the |
| Options that are passed to the JVM when it is launched. |
| The explicit location of the jar file, in case the script is being used to launch a jar that it is not actually embedded in. |
| if not empty will set the |
The |
In addition, the following properties can be changed when the script is written by using the embeddedLaunchScriptProperties
option of the Spring Boot Maven or Gradle plugins.
Name | Description |
---|---|
| The script mode. Defaults to |
| The |
| The |
| The |
| The |
| If the |
55.1.4 Customizing the startup script with a conf file
With the exception of JARFILE
and APP_NAME
, the above settings can be configured using a .conf
file,
<span style="color:#333333"><span style="color:#000000">JAVA_OPTS=-Xmx1024M
LOG_FOLDER=/custom/log/folder</span></span>
The file should be situated next to the jar file and have the same name but suffixed with .conf
rather than .jar
. For example, a jar named /var/myapp/myapp.jar
will use the configuration file named /var/myapp/myapp.conf
if it exists.
To learn about securing this file appropriately, please refer to the guidelines for securing an init.d service.
56. Microsoft Windows services
Spring Boot application can be started as Windows service using winsw
.
A sample maintained separately to the core of Spring Boot describes step-by-step how you can create a Windows service for your Spring Boot application.
57. What to read next
Check out the Cloud Foundry, Heroku, OpenShift and Boxfuse web sites for more information about the kinds of features that a PaaS can offer. These are just four of the most popular Java PaaS providers, since Spring Boot is so amenable to cloud-based deployment you’re 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.
Part VII. Spring Boot CLI
The Spring Boot CLI is a command line tool that can be used if you want to quickly develop with Spring. It allows you to run Groovy scripts, which means that you have a familiar Java-like syntax, without so much boilerplate code. You can also bootstrap a new project or write your own command for it.
58. Installing the CLI
The Spring Boot CLI can be installed manually; using SDKMAN! (the SDK Manager) 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.
59. Using the CLI
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:
<span style="color:#333333"><span style="color:#000000">$ spring
usage: spring [--help] [--version]
<command> [<args>]
Available commands are:
run [options] <files> [--] [args]
Run a spring groovy script
<em>... more command help is shown here</em></span></span>
You can use help
to get more details about any of the supported commands. For example:
<span style="color:#333333"><span style="color:#000000">$ spring help run
spring run - Run a spring groovy script
usage: spring run [options] <files> [--] [args]
Option Description
------ -----------
--autoconfigure [Boolean] Add autoconfigure compiler
transformations (default: true)
--classpath, -cp Additional classpath entries
-e, --edit Open the file with the default system
editor
--no-guess-dependencies Do not attempt to guess dependencies
--no-guess-imports Do not attempt to guess imports
-q, --quiet Quiet logging
-v, --verbose Verbose logging of dependency
resolution
--watch Watch the specified file for changes</span></span>
The version
command provides a quick way to check which version of Spring Boot you are using.
<span style="color:#333333"><span style="color:#000000">$ spring version
Spring CLI v1.3.7.RELEASE</span></span>
59.1 Running applications using the CLI
You can compile and run Groovy source code using the run
command. The Spring Boot CLI is completely self-contained so you don’t need any external Groovy installation.
Here is an example “hello world” web application written in Groovy:
hello.groovy.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RestController</span></em>
<span style="color:#7f0055"><strong>class</strong></span> WebApplication {
<em><span style="color:gray">@RequestMapping("/")</span></em>
String home() {
<span style="color:#2a00ff">"Hello World!"</span>
}
}</span></span>
To compile and run the application type:
<span style="color:#333333"><span style="color:#000000">$ spring run hello.groovy</span></span>
To pass command line arguments to the application, you need to use a --
to separate them from the “spring” command arguments, e.g.
<span style="color:#333333"><span style="color:#000000">$ spring run hello.groovy -- --server.port=9000</span></span>
To set JVM command line arguments you can use the JAVA_OPTS
environment variable, e.g.
<span style="color:#333333"><span style="color:#000000">$ JAVA_OPTS=-Xmx1024m spring run hello.groovy</span></span>
59.1.1 Deduced “grab” dependencies
Standard Groovy includes a @Grab
annotation which allows you to declare dependencies on a third-party libraries. This useful technique allows Groovy to download jars in the same way as Maven or Gradle would, but without requiring you to use a build tool.
Spring Boot extends this technique further, and will attempt to deduce which libraries to “grab” based on your code. For example, since the WebApplication
code above uses @RestController
annotations, “Tomcat” and “Spring MVC” will be grabbed.
The following items are used as “grab hints”:
Items | Grabs |
---|---|
| JDBC Application. |
| JMS Application. |
| Caching abstraction. |
| JUnit. |
| RabbitMQ. |
| Project Reactor. |
extends | Spock test. |
| Spring Batch. |
| Spring Integration. |
| Spring Mobile. |
| Spring MVC + Embedded Tomcat. |
| Spring Security. |
| Spring Transaction Management. |
See subclasses of |
59.1.2 Deduced “grab” coordinates
Spring Boot extends Groovy’s standard @Grab
support by allowing you to specify a dependency without a group or version, for example @Grab('freemarker')
. This will consult Spring Boot’s default dependency metadata to deduce the artifact’s group and version. Note that the default metadata is tied to the version of the CLI that you’re using – it will only change when you move to a new version of the CLI, putting you in control of when the versions of your dependencies may change. A table showing the dependencies and their versions that are included in the default metadata can be found in the appendix.
59.1.3 Default import statements
To help reduce the size of your Groovy code, several import
statements are automatically included. Notice how the example above refers to @Component
,@RestController
and @RequestMapping
without needing to use fully-qualified names or import
statements.
Many Spring annotations will work without using |
59.1.4 Automatic main method
Unlike the equivalent Java application, you do not need to include a public static void main(String[] args)
method with your Groovy
scripts. ASpringApplication
is automatically created, with your compiled code acting as the source
.
59.1.5 Custom dependency management
By default, the CLI uses the dependency management declared in spring-boot-dependencies
when resolving @Grab
dependencies. Additional dependency management, that will override the default dependency management, can be configured using the @DependencyManagementBom
annotation. The annotation’s value should specify the coordinates (groupId:artifactId:version
) of one or more Maven BOMs.
For example, the following declaration:
<span style="color:#333333"><span style="color:#000000">@DependencyManagementBom(<span style="color:#2a00ff">"com.example.custom-bom:1.0.0"</span>)</span></span>
Will pick up custom-bom-1.0.0.pom
in a Maven repository under com/example/custom-versions/1.0.0/
.
When multiple BOMs are specified they are applied in the order that they’re declared. For example:
<span style="color:#333333"><span style="color:#000000">@DependencyManagementBom([<span style="color:#2a00ff">"com.example.custom-bom:1.0.0"</span>,
<span style="color:#2a00ff">"com.example.another-bom:1.0.0"</span>])</span></span>
indicates that dependency management in another-bom
will override the dependency management in custom-bom
.
You can use @DependencyManagementBom
anywhere that you can use @Grab
, however, to ensure consistent ordering of the dependency management, you can only use @DependencyManagementBom
at most once in your application. A useful source of dependency management (that is a superset of Spring Boot’s dependency management) is the Spring IO Platform, e.g. @DependencyManagementBom('io.spring.platform:platform-bom:1.1.2.RELEASE')
.
59.2 Testing your code
The test
command allows you to compile and run tests for your application. Typical usage looks like this:
<span style="color:#333333"><span style="color:#000000">$ spring test app.groovy tests.groovy
Total: 1, Success: 1, : Failures: 0
Passed? true</span></span>
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):
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>class</strong></span> ApplicationTests {
<em><span style="color:gray">@Test</span></em>
<span style="color:#7f0055"><strong>void</strong></span> homeSaysHello() {
assertEquals(<span style="color:#2a00ff">"Hello World!"</span>, <span style="color:#7f0055"><strong>new</strong></span> WebApplication().home())
}
}</span></span>
If you have more than one test source files, you might prefer to organize them into a |
59.3 Applications with multiple source files
You can use “shell globbing” with all commands that accept file input. This allows you to easily use multiple files from a single directory, e.g.
<span style="color:#333333"><span style="color:#000000">$ spring run *.groovy</span></span>
This technique can also be useful if you want to segregate your “test” or “spec” code from the main application code:
<span style="color:#333333"><span style="color:#000000">$ spring test app/*.groovy test/*.groovy</span></span>
59.4 Packaging your application
You can use the jar
command to package your application into a self-contained executable jar file. For example:
<span style="color:#333333"><span style="color:#000000">$ spring jar my-app.jar *.groovy</span></span>
The resulting jar will contain the classes produced by compiling the application and all of the application’s dependencies so that it can then be run using java -jar
. The jar file will also contain entries from the application’s classpath. You can add explicit paths to the jar using --include
and --exclude
(both are comma-separated, and both accept prefixes to the values “+” and “-” to signify that they should be removed from the defaults). The default includes are
<span style="color:#333333"><span style="color:#000000">public/**, resources/**, static/**, templates/**, META-INF/**, *</span></span>
and the default excludes are
<span style="color:#333333"><span style="color:#000000">.*, repository/**, build/**, target/**, **/*.jar, **/*.groovy</span></span>
See the output of spring help jar
for more information.
59.5 Initialize a new project
The init
command allows you to create a new project using start.spring.io without leaving the shell. For example:
<span style="color:#333333"><span style="color:#000000">$ spring init --dependencies=web,data-jpa my-project
Using service at https://start.spring.io
Project extracted to '/Users/developer/example/my-project'</span></span>
This creates a my-project
directory with a Maven-based project using spring-boot-starter-web
and spring-boot-starter-data-jpa
. You can list the capabilities of the service using the --list
flag
<span style="color:#333333"><span style="color:#000000">$ 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)
...</span></span>
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:
<span style="color:#333333"><span style="color:#000000">$ 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'</span></span>
59.6 Using the embedded shell
Spring Boot includes command-line completion scripts for BASH and zsh shells. If you don’t use either of these shells (perhaps you are a Windows user) then you can use the shell
command to launch an integrated shell.
<span style="color:#333333"><span style="color:#000000">$ spring shell
<strong>Spring Boot</strong> (v1.3.7.RELEASE)
Hit TAB to complete. Type \'help' and hit RETURN for help, and \'exit' to quit.</span></span>
From inside the embedded shell you can run other commands directly:
<span style="color:#333333"><span style="color:#000000">$ version
Spring CLI v1.3.7.RELEASE</span></span>
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.
59.7 Adding extensions to the CLI
You can add extensions to the CLI using the install
command. The command takes one or more sets of artifact coordinates in the format group:artifact:version
. For example:
<span style="color:#333333"><span style="color:#000000">$ spring install com.example:spring-boot-cli-extension:1.0.0.RELEASE</span></span>
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:
<span style="color:#333333"><span style="color:#000000">$ spring uninstall com.example:spring-boot-cli-extension:1.0.0.RELEASE</span></span>
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:
<span style="color:#333333"><span style="color:#000000">$ spring uninstall --all</span></span>
60. Developing application with the Groovy beans DSL
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:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>class</strong></span> Application <span style="color:#7f0055"><strong>implements</strong></span> CommandLineRunner {
<em><span style="color:gray">@Autowired</span></em>
SharedService service
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>void</strong></span> run(String... args) {
println service.message
}
}
<span style="color:#7f0055"><strong>import</strong></span> my.company.SharedService
beans {
service(SharedService) {
message = <span style="color:#2a00ff">"Hello World"</span>
}
}</span></span>
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.
61. Configuring the CLI with settings.xml
The Spring Boot CLI uses Aether, Maven’s dependency resolution engine, to resolve dependencies. The CLI makes use of the Maven configuration found in ~/.m2/settings.xml
to configure Aether. The following configuration settings are honored by the CLI:
- Offline
- Mirrors
- Servers
- Proxies
-
Profiles
- Activation
- Repositories
- Active profiles
Please refer to Maven’s settings documentation for further information.
62. What to read next
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 Boot’s Build tool plugins that you can use with Gradle or Maven.
Part VIII. Build tool plugins
Spring Boot provides build tool plugins for Maven and Gradle. The plugins offer a variety of features, including the packaging of executable jars. This section provides more details on both plugins, as well as some help should you need to extend an unsupported build system. If you are just getting started, you might want to read “Chapter 13, Build systems” from the Part III, “Using Spring Boot” section first.
63. Spring Boot Maven plugin
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).
Refer to the Spring Boot Maven Plugin Site for complete plugin documentation. |
63.1 Including the plugin
To use the Spring Boot Maven Plugin simply include the appropriate XML in the plugins
section of your pom.xml
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><project</span> <span style="color:#7f007f">xmlns</span>=<span style="color:#2a00ff">"http://maven.apache.org/POM/4.0.0"</span> <span style="color:#7f007f">xmlns:xsi</span>=<span style="color:#2a00ff">"http://www.w3.org/2001/XMLSchema-instance"</span>
<span style="color:#7f007f">xsi:schemaLocation</span>=<span style="color:#2a00ff">"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><modelVersion></span>4.0.0<span style="color:#3f7f7f"></modelVersion></span>
<span style="color:#3f5f5f"><em><!-- ... --></em></span>
<span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>1.3.7.RELEASE<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"><executions></span>
<span style="color:#3f7f7f"><execution></span>
<span style="color:#3f7f7f"><goals></span>
<span style="color:#3f7f7f"><goal></span>repackage<span style="color:#3f7f7f"></goal></span>
<span style="color:#3f7f7f"></goals></span>
<span style="color:#3f7f7f"></execution></span>
<span style="color:#3f7f7f"></executions></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span>
<span style="color:#3f7f7f"></project></span></span></span>
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:
<span style="color:#333333"><span style="color:#000000">$ mvn package
$ ls target/*.jar
target/myproject-1.0.0.jar target/myproject-1.0.0.jar.original</span></span>
If you don’t include the <execution/>
configuration as above, you can run the plugin on its own (but only if the package goal is used as well). For example:
<span style="color:#333333"><span style="color:#000000">$ mvn package spring-boot:repackage
$ ls target/*.jar
target/myproject-1.0.0.jar target/myproject-1.0.0.jar.original</span></span>
If you are using a milestone or snapshot release you will also need to add appropriate pluginRepository
elements:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><pluginRepositories></span>
<span style="color:#3f7f7f"><pluginRepository></span>
<span style="color:#3f7f7f"><id></span>spring-snapshots<span style="color:#3f7f7f"></id></span>
<span style="color:#3f7f7f"><url></span>http://repo.spring.io/snapshot<span style="color:#3f7f7f"></url></span>
<span style="color:#3f7f7f"></pluginRepository></span>
<span style="color:#3f7f7f"><pluginRepository></span>
<span style="color:#3f7f7f"><id></span>spring-milestones<span style="color:#3f7f7f"></id></span>
<span style="color:#3f7f7f"><url></span>http://repo.spring.io/milestone<span style="color:#3f7f7f"></url></span>
<span style="color:#3f7f7f"></pluginRepository></span>
<span style="color:#3f7f7f"></pluginRepositories></span></span></span>
63.2 Packaging executable jar and war files
Once spring-boot-maven-plugin
has been included in your pom.xml
it will automatically attempt to rewrite archives to make them executable using the spring-boot:repackage
goal. You should configure your project to build a jar or war (as appropriate) using the usual packaging
element:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><project</span> <span style="color:#7f007f">xmlns</span>=<span style="color:#2a00ff">"http://maven.apache.org/POM/4.0.0"</span> <span style="color:#7f007f">xmlns:xsi</span>=<span style="color:#2a00ff">"http://www.w3.org/2001/XMLSchema-instance"</span>
<span style="color:#7f007f">xsi:schemaLocation</span>=<span style="color:#2a00ff">"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f5f5f"><em><!-- ... --></em></span>
<span style="color:#3f7f7f"><packaging></span>jar<span style="color:#3f7f7f"></packaging></span>
<span style="color:#3f5f5f"><em><!-- ... --></em></span>
<span style="color:#3f7f7f"></project></span></span></span>
Your existing archive will be enhanced by Spring Boot during the package
phase. The main class that you want to launch can either be specified using a configuration option, or by adding a Main-Class
attribute to the manifest in the usual way. If you don’t specify a main class the plugin will search for a class with a public static void main(String[] args)
method.
To build and run a project artifact, you can type the following:
<span style="color:#333333"><span style="color:#000000">$ mvn package
$ java -jar target/mymodule-0.0.1-SNAPSHOT.jar</span></span>
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:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><project</span> <span style="color:#7f007f">xmlns</span>=<span style="color:#2a00ff">"http://maven.apache.org/POM/4.0.0"</span> <span style="color:#7f007f">xmlns:xsi</span>=<span style="color:#2a00ff">"http://www.w3.org/2001/XMLSchema-instance"</span>
<span style="color:#7f007f">xsi:schemaLocation</span>=<span style="color:#2a00ff">"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f5f5f"><em><!-- ... --></em></span>
<span style="color:#3f7f7f"><packaging></span>war<span style="color:#3f7f7f"></packaging></span>
<span style="color:#3f5f5f"><em><!-- ... --></em></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-tomcat<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><scope></span>provided<span style="color:#3f7f7f"></scope></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f5f5f"><em><!-- ... --></em></span>
<span style="color:#3f7f7f"></dependencies></span>
<span style="color:#3f7f7f"></project></span></span></span>
See the “Section 80.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.
64. Spring Boot Gradle plugin
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 use the dependency management provided by spring-boot-dependencies
.
64.1 Including the plugin
To use the Spring Boot Gradle Plugin simply include a buildscript
dependency and apply the spring-boot
plugin:
<span style="color:#333333"><span style="color:#000000">buildscript {
dependencies {
classpath(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-gradle-plugin:1.3.7.RELEASE"</span>)
}
}
apply plugin: <span style="color:#2a00ff">'spring-boot'</span></span></span>
If you are using a milestone or snapshot release you will also need to add appropriate repositories
reference:
<span style="color:#333333"><span style="color:#000000">buildscript {
repositories {
maven.url <span style="color:#2a00ff">"http://repo.spring.io/snapshot"</span>
maven.url <span style="color:#2a00ff">"http://repo.spring.io/milestone"</span>
}
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
64.2 Gradle dependency management
The spring-boot
plugin automatically applies the Dependency Management Plugin and configures in to import the spring-boot-starter-parent
bom. This provides a similar dependency management experience to the one that is enjoyed by Maven users. For example, it allows you to omit version numbers when declaring dependencies that are managed in the bom. To make use of this functionality, simply declare dependencies in the usual way, but leave the version number empty:
<span style="color:#333333"><span style="color:#000000">dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-web"</span>)
compile(<span style="color:#2a00ff">"org.thymeleaf:thymeleaf-spring4"</span>)
compile(<span style="color:#2a00ff">"nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"</span>)
}</span></span>
The version of the |
The dependency management 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:
<span style="color:#333333"><span style="color:#000000">dependencies {
compile(<span style="color:#2a00ff">"org.thymeleaf:thymeleaf-spring4:2.1.1.RELEASE"</span>)
}</span></span>
To learn more about the capabilities of the Dependency Management Plugin, please refer to its documentation.
64.3 Packaging executable jar and war files
Once the spring-boot
plugin has been applied to your project it will automatically attempt to rewrite archives to make them executable using thebootRepackage
task. You should configure your project to build a jar or war (as appropriate) in the usual way.
The main class that you want to launch can either be specified using a configuration option, or by adding a Main-Class
attribute to the manifest. If you don’t specify a main class the plugin will search for a class with a public static void main(String[] args)
method.
Check Section 64.6, “Repackage configuration” for a full list of configuration options. |
To build and run a project artifact, you can type the following:
<span style="color:#333333"><span style="color:#000000">$ gradle build
$ java -jar build/libs/mymodule-0.0.1-SNAPSHOT.jar</span></span>
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:
<span style="color:#333333"><span style="color:#000000">...
apply plugin: <span style="color:#2a00ff">'war'</span>
war {
baseName = <span style="color:#2a00ff">'myapp'</span>
version = <span style="color:#2a00ff">'0.5.0'</span>
}
repositories {
jcenter()
maven { url <span style="color:#2a00ff">"http://repo.spring.io/libs-snapshot"</span> }
}
configurations {
providedRuntime
}
dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-web"</span>)
providedRuntime(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-tomcat"</span>)
...
}</span></span>
See the “Section 80.1, “Create a deployable war file”” section for more details on how to create a deployable war file. |
64.4 Running a project in-place
To run a project in place without building a jar first you can use the “bootRun” task:
<span style="color:#333333"><span style="color:#000000">$ gradle bootRun</span></span>
If devtools
has been added to your project it will automatically monitor your application for changes. Alternatively, you can also run the application so that your static classpath resources (i.e. in src/main/resources
by default) are reloadable in the live application, which can be helpful at development time.
<span style="color:#333333"><span style="color:#000000">bootRun {
addResources = true
}</span></span>
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.
64.5 Spring Boot plugin configuration
The gradle plugin automatically extends your build script DSL with a springBoot
element for global configuration of the Boot plugin. Set the appropriate properties as you would with any other Gradle extension (see below for a list of configuration options):
<span style="color:#333333"><span style="color:#000000">springBoot {
backupSource = false
}</span></span>
64.6 Repackage configuration
The plugin adds a bootRepackage
task which you can also configure directly, e.g.:
<span style="color:#333333"><span style="color:#000000">bootRepackage {
mainClass = <span style="color:#2a00ff">'demo.Application'</span>
}</span></span>
The following configuration options are available:
Name | Description |
---|---|
| Boolean flag to switch the repackager off (sometimes useful if you want the other Boot features but not this one) |
| The main class that should be run. If not specified, and you have applied the application plugin, the |
| A file name segment (before the extension) to add to the archive, so that the original is preserved in its original location. Defaults to null in which case the archive is repackaged in place. The default is convenient for many purposes, but if you want to use the original jar as a dependency in another project, it’s best to use an extension to define the executable archive. |
| The name or value of the |
| The name of the custom configuration which is used to populate the nested lib directory (without specifying this you get all compile and runtime dependencies). |
| Boolean flag to indicate if jar files are fully executable on Unix like operating systems. Defaults to |
| The embedded launch script to prepend to the front of the jar if it is fully executable. If not specified the 'Spring Boot' default script will be used. |
| Additional properties that to be expanded in the launch script. The default script supports a |
| Boolean flag to indicate if the devtools jar should be excluded from the repackaged archives. Defaults to |
64.7 Repackage with custom Gradle configuration
Sometimes it may be more appropriate to not package default dependencies resolved from compile
, runtime
and provided
scopes. If the created executable jar file is intended to be run as it is, you need to have all dependencies nested inside it; however, if the plan is to explode a jar file and run the main class manually, you may already have some of the libraries available via CLASSPATH
. This is a situation where you can repackage your jar with a different set of dependencies.
Using a custom configuration will automatically disable dependency resolving from compile
, runtime
and provided
scopes. Custom configuration can be either defined globally (inside the springBoot
section) or per task.
<span style="color:#333333"><span style="color:#000000">task clientJar(type: Jar) {
appendix = <span style="color:#2a00ff">'client'</span>
from sourceSets.main.output
exclude(<span style="color:#2a00ff">'**/*Something*'</span>)
}
task clientBoot(type: BootRepackage, dependsOn: clientJar) {
withJarTask = clientJar
customConfiguration = <span style="color:#2a00ff">"mycustomconfiguration"</span>
}</span></span>
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
.
<span style="color:#333333"><span style="color:#000000">configurations {
mycustomconfiguration.exclude group: <span style="color:#2a00ff">'log4j'</span>
}
dependencies {
mycustomconfiguration configurations.runtime
}</span></span>
The configuration that we are referring to in BootRepackage
is a normal Gradle configuration. In the above example we created a new configuration namedmycustomconfiguration
instructing it to derive from a runtime
and exclude the log4j
group. If the clientBoot
task is executed, the repackaged boot jar will have all dependencies from runtime
but no log4j
jars.
64.7.1 Configuration options
The following configuration options are available:
Name | Description |
---|---|
| The main class that should be run by the executable archive. |
| The name of the provided configuration (defaults to |
| If the original source archive should be backed-up before being repackaged (defaults to |
| The name of the custom configuration. |
| The type of archive, corresponding to how the dependencies are laid out inside (defaults to a guess based on the archive type). See available layouts for more details. |
| A list of dependencies (in the form “groupId:artifactId” that must be unpacked from fat jars in order to run. Items are still packaged into the fat jar, but they will be automatically unpacked when it runs. |
64.7.2 Available layouts
The layout
attribute configures the format of the archive and whether the bootstrap loader should be included or not. The following layouts are available:
Name | Description | Executable |
---|---|---|
| Regular executable JAR layout. | Yes |
| Executable WAR layout. | Yes |
| Similar to | Yes |
| Bundle dependencies (excluding those with | No |
| Bundle all dependencies and project resources. | No |
64.8 Understanding how the Gradle plugin works
When spring-boot
is applied to your Gradle project a default task named bootRepackage
is created automatically. The bootRepackage
task depends on Gradle assemble
task, and when executed, it tries to find all jar artifacts whose qualifier is empty (i.e. tests and sources jars are automatically skipped).
Due to the fact that bootRepackage
finds 'all' created jar artifacts, the order of Gradle task execution is important. Most projects only create a single jar file, so usually this is not an issue; however, if you are planning to create a more complex project setup, with custom Jar
and BootRepackage
tasks, there are few tweaks to consider.
If you are 'just' creating custom jar files from your project you can simply disable default jar
and bootRepackage
tasks:
<span style="color:#333333"><span style="color:#000000">jar.enabled = false
bootRepackage.enabled = false</span></span>
Another option is to instruct the default bootRepackage
task to only work with a default jar
task.
<span style="color:#333333"><span style="color:#000000">bootRepackage.withJarTask = jar</span></span>
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:
<span style="color:#333333"><span style="color:#000000">task bootJars
bootJars.dependsOn = [clientBoot1,clientBoot2,clientBoot3]
build.dependsOn(bootJars)</span></span>
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.
64.9 Publishing artifacts to a Maven repository using Gradle
If you are declaring dependencies without versions and you want to publish artifacts to a Maven repository you will need to configure the Maven publication with details of Spring Boot’s dependency management. This can be achieved by configuring it to publish poms that inherit from spring-boot-starter-parent
or that import dependency management from spring-boot-dependencies
. The exact details of this configuration depend on how you’re using Gradle and how you’re trying to publish the artifacts.
64.9.1 Configuring Gradle to produce a pom that inherits dependency management
The following is an example of configuring Gradle to generate a pom that inherits from spring-boot-starter-parent
. Please refer to the Gradle User Guidefor further information.
<span style="color:#333333"><span style="color:#000000">uploadArchives {
repositories {
mavenDeployer {
pom {
project {
parent {
groupId <span style="color:#2a00ff">"org.springframework.boot"</span>
artifactId <span style="color:#2a00ff">"spring-boot-starter-parent"</span>
version <span style="color:#2a00ff">"1.3.7.RELEASE"</span>
}
}
}
}
}
}</span></span>
64.9.2 Configuring Gradle to produce a pom that imports dependency management
The following is an example of configuring Gradle to generate a pom that imports the dependency management provided by spring-boot-dependencies
. Please refer to the Gradle User Guide for further information.
<span style="color:#333333"><span style="color:#000000">uploadArchives {
repositories {
mavenDeployer {
pom {
project {
dependencyManagement {
dependencies {
dependency {
groupId <span style="color:#2a00ff">"org.springframework.boot"</span>
artifactId <span style="color:#2a00ff">"spring-boot-dependencies"</span>
version <span style="color:#2a00ff">"1.3.7.RELEASE"</span>
type <span style="color:#2a00ff">"pom"</span>
scope <span style="color:#2a00ff">"import"</span>
}
}
}
}
}
}
}
}</span></span>
65. Spring Boot AntLib module
The Spring Boot AntLib module provides basic Spring Boot support for Apache Ant. You can use the module to create executable jars. To use the module you need to declare an additional spring-boot
namespace in your build.xml
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><project</span> <span style="color:#7f007f">xmlns:ivy</span>=<span style="color:#2a00ff">"antlib:org.apache.ivy.ant"</span>
<span style="color:#7f007f">xmlns:spring-boot</span>=<span style="color:#2a00ff">"antlib:org.springframework.boot.ant"</span>
<span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"myapp"</span> <span style="color:#7f007f">default</span>=<span style="color:#2a00ff">"build"</span><span style="color:#3f7f7f">></span>
...
<span style="color:#3f7f7f"></project></span></span></span>
You’ll need to remember to start Ant using the -lib
option, for example:
<span style="color:#333333"><span style="color:#000000">$ ant -lib <folder containing spring-boot-antlib-1.3.7.RELEASE.jar></span></span>
The “Using Spring Boot” section includes a more complete example of using Apache Ant with |
65.1 Spring Boot Ant tasks
Once the spring-boot-antlib
namespace has been declared, the following additional tasks are available.
65.1.1 spring-boot:exejar
The exejar
task can be used to creates a Spring Boot executable jar. The following attributes are supported by the task:
Attribute | Description | Required |
---|---|---|
| The destination jar file to create | Yes |
| The root directory of Java class files | Yes |
| The main application class to run | No (default is first class found declaring a |
The following nested elements can be used with the task:
Element | Description |
---|---|
| One or more Resource Collections describing a set of Resources that should be added to the content of the created jar file. |
| One or more Resource Collections that should be added to the set of jar libraries that make up the runtime dependency classpath of the application. |
65.1.2 Examples
Specify start-class.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><spring-boot:exejar</span> <span style="color:#7f007f">destfile</span>=<span style="color:#2a00ff">"target/my-application.jar"</span>
<span style="color:#7f007f">classes</span>=<span style="color:#2a00ff">"target/classes"</span> <span style="color:#7f007f">start-class</span>=<span style="color:#2a00ff">"com.foo.MyApplication"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><resources></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"src/main/resources"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></resources></span>
<span style="color:#3f7f7f"><lib></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"lib"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></lib></span>
<span style="color:#3f7f7f"></spring-boot:exejar></span></span></span>
Detect start-class.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><exejar</span> <span style="color:#7f007f">destfile</span>=<span style="color:#2a00ff">"target/my-application.jar"</span> <span style="color:#7f007f">classes</span>=<span style="color:#2a00ff">"target/classes"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><lib></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"lib"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></lib></span>
<span style="color:#3f7f7f"></exejar></span></span></span>
65.2 spring-boot:findmainclass
The findmainclass
task is used internally by exejar
to locate a class declaring a main
. You can also use this task directly in your build if needed. The following attributes are supported
Attribute | Description | Required |
---|---|---|
| The root directory of Java class files | Yes (unless |
| Can be used to short-circuit the | No |
| The Ant property that should be set with the result | No (result will be logged if unspecified) |
65.2.1 Examples
Find and log.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><findmainclass</span> <span style="color:#7f007f">classesroot</span>=<span style="color:#2a00ff">"target/classes"</span><span style="color:#3f7f7f"> /></span></span></span>
Find and set.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><findmainclass</span> <span style="color:#7f007f">classesroot</span>=<span style="color:#2a00ff">"target/classes"</span> <span style="color:#7f007f">property</span>=<span style="color:#2a00ff">"main-class"</span><span style="color:#3f7f7f"> /></span></span></span>
Override and set.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><findmainclass</span> <span style="color:#7f007f">mainclass</span>=<span style="color:#2a00ff">"com.foo.MainClass"</span> <span style="color:#7f007f">property</span>=<span style="color:#2a00ff">"main-class"</span><span style="color:#3f7f7f"> /></span></span></span>
66. Supporting other build systems
If you want to use a build tool other than Maven, Gradle or Ant, 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.
66.1 Repackaging archives
To repackage an existing archive so that it becomes a self-contained executable archive use org.springframework.boot.loader.tools.Repackager
. The Repackager
class takes a single constructor argument that refers to an existing jar or war archive. Use one of the two available repackage()
methods to either replace the original file or write to a new destination. Various settings can also be configured on the repackager before it is run.
66.2 Nested libraries
When repackaging an archive you can include references to dependency files using the org.springframework.boot.loader.tools.Libraries
interface. We don’t provide any concrete implementations of Libraries
here as they are usually build system specific.
If your archive already includes libraries you can use Libraries.NONE
.
66.3 Finding a main class
If you don’t use Repackager.setMainClass()
to specify a main class, the repackager will use ASM to read class files and attempt to find a suitable class with a public static void main(String[] args)
method. An exception is thrown if more than one candidate is found.
66.4 Example repackage implementation
Here is a typical example repackage:
<span style="color:#333333"><span style="color:#000000">Repackager repackager = <span style="color:#7f0055"><strong>new</strong></span> Repackager(sourceJarFile);
repackager.setBackupSource(false);
repackager.repackage(<span style="color:#7f0055"><strong>new</strong></span> Libraries() {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> doWithLibraries(LibraryCallback callback) <span style="color:#7f0055"><strong>throws</strong></span> IOException {
<span style="color:#3f5f5f"><em>// Build system specific implementation, callback for each dependency</em></span>
<span style="color:#3f5f5f"><em>// callback.library(new Library(nestedFile, LibraryScope.COMPILE));</em></span>
}
});</span></span>
67. What to read next
If you’re 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.
Part IX. ‘How-to’ guides
This section provides answers to some common ‘how do I do that…’ type of questions that often arise when using Spring Boot. This is by no means an exhaustive list, but it does cover quite a lot.
If you are having a specific problem that we don’t cover here, you might want to check out stackoverflow.com to see if someone has already provided an answer; this is also a great place to ask new questions (please use the spring-boot
tag).
We’re also more than happy to extend this section; If you want to add a ‘how-to’ you can send us a pull request.
68. Spring Boot application
68.1 Troubleshoot auto-configuration
The Spring Boot auto-configuration tries its best to ‘do the right thing’, but sometimes things fail and it can be hard to tell why.
There is a really useful ConditionEvaluationReport
available in any Spring Boot ApplicationContext
. You will see it if you enable DEBUG
logging output. If you use the spring-boot-actuator
there is also an autoconfig
endpoint that renders the report in JSON. Use that to debug the application and see what features have been added (and which not) by Spring Boot at runtime.
Many more questions can be answered by looking at the source code and the javadoc. Some rules of thumb:
- Look for classes called
*AutoConfiguration
and read their sources, in particular the@Conditional*
annotations to find out what features they enable and when. Add--debug
to the command line or a System property-Ddebug
to get a log on the console of all the auto-configuration decisions that were made in your app. In a running Actuator app look at theautoconfig
endpoint (‘/autoconfig’ or the JMX equivalent) for the same information. - Look for classes that are
@ConfigurationProperties
(e.g.ServerProperties
) and read from there the available external configuration options. The@ConfigurationProperties
has aname
attribute which acts as a prefix to external properties, thusServerProperties
hasprefix="server"
and its configuration properties areserver.port
,server.address
etc. In a running Actuator app look at theconfigprops
endpoint. - Look for use of
RelaxedPropertyResolver
to pull configuration values explicitly out of theEnvironment
. It often is used with a prefix. - Look for
@Value
annotations that bind directly to theEnvironment
. This is less flexible than theRelaxedPropertyResolver
approach, but does allow some relaxed binding, specifically for OS environment variables (soCAPITALS_AND_UNDERSCORES
are synonyms forperiod.separated
). - Look for
@ConditionalOnExpression
annotations that switch features on and off in response to SpEL expressions, normally evaluated with placeholders resolved from theEnvironment
.
68.2 Customize the Environment or ApplicationContext before it starts
A SpringApplication
has ApplicationListeners
and ApplicationContextInitializers
that are used to apply customizations to the context or environment. Spring Boot loads a number of such customizations for use internally from META-INF/spring.factories
. There is more than one way to register additional ones:
- Programmatically per application by calling the
addListeners
andaddInitializers
methods onSpringApplication
before you run it. - Declaratively per application by setting
context.initializer.classes
orcontext.listener.classes
. - Declaratively for all applications by adding a
META-INF/spring.factories
and packaging a jar file that the applications all use as a library.
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 23.4, “Application events and listeners” in the ‘Spring Boot features’ section for a complete list.
68.3 Build an ApplicationContext hierarchy (adding a parent or root context)
You can use the ApplicationBuilder
class to create parent/child ApplicationContext
hierarchies. See Section 23.3, “Fluent builder API” in the ‘Spring Boot features’ section for more information.
68.4 Create a non-web application
Not all Spring applications have to be web applications (or web services). If you want to execute some code in a main
method, but also bootstrap a Spring application to set up the infrastructure to use, then it’s easy with the SpringApplication
features of Spring Boot. A SpringApplication
changes its ApplicationContext
class depending on whether it thinks it needs a web application or not. The first thing you can do to help it is to just leave the servlet API dependencies off the classpath. If you can’t do that (e.g. you are running 2 applications from the same code base) then you can explicitly callsetWebEnvironment(false)
on your SpringApplication
instance, or set the applicationContextClass
property (through the Java API or with external properties). Application code that you want to run as your business logic can be implemented as a CommandLineRunner
and dropped into the context as a @Bean
definition.
69. Properties & configuration
69.1 Externalize the configuration of SpringApplication
A SpringApplication
has bean properties (mainly setters) so you can use its Java API as you create the application to modify its behavior. Or you can externalize the configuration using properties in spring.main.*
. E.g. in application.properties
you might have.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.main.web_environment</span>=false
<span style="color:#7f007f">spring.main.banner_mode</span>=off</span></span>
and then the Spring Boot banner will not be printed on startup, and the application will not be a web application.
The example above also demonstrates how flexible binding allows the use of underscores ( |
Properties defined in external configuration overrides the values specified via the Java API with the notable exception of the sources used to create the ApplicationContext
. Let’s consider this application
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>new</strong></span> SpringApplicationBuilder()
.bannerMode(Banner.Mode.OFF)
.sources(demo.MyApp.<span style="color:#7f0055"><strong>class</strong></span>)
.run(args);</span></span>
used with the following configuration:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.main.sources</span>=com.acme.Config,com.acme.ExtraConfig
<span style="color:#7f007f">spring.main.banner_mode</span>=console</span></span>
The actual application will now show the banner (as overridden by configuration) and use three sources for the ApplicationContext
(in that order): demo.MyApp
, com.acme.Config
, com.acme.ExtraConfig
.
69.2 Change the location of external properties of an application
By default properties from different sources are added to the Spring Environment
in a defined order (see Chapter 24, Externalized Configuration in the ‘Spring Boot features’ section for the exact order).
A nice way to augment and modify this is to add @PropertySource
annotations to your application sources. Classes passed to the SpringApplication
static convenience methods, and those added using setSources()
are inspected to see if they have @PropertySources
, and if they do, those properties are added to the Environment
early enough to be used in all phases of the ApplicationContext
lifecycle. Properties added in this way have lower priority than any added using the default locations (e.g. application.properties
), system properties, environment variables or the command line.
You can also provide System properties (or environment variables) to change the behavior:
spring.config.name
(SPRING_CONFIG_NAME
), defaults toapplication
as the root of the file name.spring.config.location
(SPRING_CONFIG_LOCATION
) is the file to load (e.g. a classpath resource or a URL). A separateEnvironment
property source is set up for this document and it can be overridden by system properties, environment variables or the command line.
No matter what you set in the environment, Spring Boot will always load application.properties
as described above. If YAML is used then files with the ‘.yml’ extension are also added to the list by default.
Spring Boot logs the configuration files that are loaded at DEBUG
level and the candidates it has not found at TRACE
level.
See ConfigFileApplicationListener
for more detail.
69.3 Use ‘short’ command line arguments
Some people like to use (for example) --port=9000
instead of --server.port=9000
to set configuration properties on the command line. You can easily enable this by using placeholders in application.properties
, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.port</span>=${port:8080}</span></span>
If you are inheriting from the |
In this specific case the port binding will work in a PaaS environment like Heroku and Cloud Foundry, since in those two platforms the |
69.4 Use YAML for external properties
YAML is a superset of JSON and as such is a very convenient syntax for storing external properties in a hierarchical format. E.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring</span>:
<span style="color:#7f007f"> application</span>:
<span style="color:#7f007f"> name</span>: cruncher
<span style="color:#7f007f"> datasource</span>:
<span style="color:#7f007f"> driverClassName</span>: com.mysql.jdbc.Driver
<span style="color:#7f007f"> url</span>: jdbc:mysql://localhost/test
<span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> port</span>: 9000</span></span>
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
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.application.name</span>=cruncher
<span style="color:#7f007f">spring.datasource.driverClassName</span>=com.mysql.jdbc.Driver
<span style="color:#7f007f">spring.datasource.url</span>=jdbc:mysql://localhost/test
<span style="color:#7f007f">server.port</span>=9000</span></span>
See Section 24.6, “Using YAML instead of Properties” in the ‘Spring Boot features’ section for more information about YAML.
69.5 Set the active Spring profiles
The Spring Environment
has an API for this, but normally you would set a System property (spring.profiles.active
) or an OS environment variable (SPRING_PROFILES_ACTIVE
). E.g. launch your application with a -D
argument (remember to put it before the main class or jar archive):
<span style="color:#333333"><span style="color:#000000">$ java -jar -Dspring.profiles.active=production demo-0.0.1-SNAPSHOT.jar</span></span>
In Spring Boot you can also set the active profile in application.properties
, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">spring.profiles.active</span>=production</span></span>
A value set this way is replaced by the System property or environment variable setting, but not by the SpringApplicationBuilder.profiles()
method. Thus the latter Java API can be used to augment the profiles without changing the defaults.
See Chapter 25, Profiles in the ‘Spring Boot features’ section for more information.
69.6 Change configuration depending on the environment
A YAML file is actually a sequence of documents separated by ---
lines, and each document is parsed separately to a flattened map.
If a YAML document contains a spring.profiles
key, then the profiles value (comma-separated list of profiles) is fed into the SpringEnvironment.acceptsProfiles()
and if any of those profiles is active that document is included in the final merge (otherwise not).
Example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> port</span>: 9000
<span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">spring</span>:
<span style="color:#7f007f"> profiles</span>: development
<span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> port</span>: 9001
<span style="color:#3f5f5f"><em>---</em></span>
<span style="color:#7f007f">spring</span>:
<span style="color:#7f007f"> profiles</span>: production
<span style="color:#7f007f">server</span>:
<span style="color:#7f007f"> port</span>: 0</span></span>
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.
69.7 Discover built-in options for external properties
Spring Boot binds external properties from application.properties
(or .yml
) (and other places) into an application at runtime. There is not (and technically cannot be) an exhaustive list of all supported properties in a single location because contributions can come from additional jar files on your classpath.
A running application with the Actuator features has a configprops
endpoint that shows all the bound and bindable properties available through @ConfigurationProperties
.
The appendix includes an application.properties
example with a list of the most common properties supported by Spring Boot. The definitive list comes from searching the source code for @ConfigurationProperties
and @Value
annotations, as well as the occasional use of RelaxedPropertyResolver
.
70. Embedded servlet containers
70.1 Add a Servlet, Filter or Listener to an application
There are two ways to add Servlet
, Filter
, ServletContextListener
and the other listeners supported by the Servlet spec to your application. You can either provide Spring beans for them, or enable scanning for Servlet components.
70.1.1 Add a Servlet, Filter or Listener using a Spring bean
To add a Servlet
, Filter
, or Servlet *Listener
provide a @Bean
definition for it. This can be very useful when you want to inject configuration or dependencies. However, you must be very careful that they don’t cause eager initialization of too many other beans because they have to be installed in the container very early in the application lifecycle (e.g. it’s not a good idea to have them depend on your DataSource
or JPA configuration). You can work around restrictions like that by initializing them lazily when first used instead of on initialization.
In the case of Filters
and Servlets
you can also add mappings and init parameters by adding a FilterRegistrationBean
or ServletRegistrationBean
instead of or as well as the underlying component.
If no If you are migrating a filter that has no |
Disable registration of a Servlet or Filter
As described above any Servlet
or Filter
beans will be registered with the servlet container automatically. To disable registration of a particular Filter
or Servlet
bean create a registration bean for it and mark it as disabled. For example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> FilterRegistrationBean registration(MyFilter filter) {
FilterRegistrationBean registration = <span style="color:#7f0055"><strong>new</strong></span> FilterRegistrationBean(filter);
registration.setEnabled(false);
<span style="color:#7f0055"><strong>return</strong></span> registration;
}</span></span>
70.1.2 Add Servlets, Filters, and Listeners using classpath scanning
@WebServlet
, @WebFilter
, and @WebListener
annotated classes can be automatically registered with an embedded servlet container by annotating a @Configuration
class with @ServletComponentScan
and specifying the package(s) containing the components that you want to register. By default, @ServletComponentScan
will scan from the package of the annotated class.
70.2 Change the HTTP port
In a standalone application the main HTTP port defaults to 8080
, but can be set with server.port
(e.g. in application.properties
or as a System property). Thanks to relaxed binding of Environment
values you can also use SERVER_PORT
(e.g. as an OS environment variable).
To switch off the HTTP endpoints completely, but still create a WebApplicationContext
, use server.port=-1
(this is sometimes useful for testing).
For more details look at Section 27.3.4, “Customizing embedded servlet containers” in the ‘Spring Boot features’ section, or the ServerProperties
source code.
70.3 Use a random unassigned HTTP port
To scan for a free port (using OS natives to prevent clashes) use server.port=0
.
70.4 Discover the HTTP port at runtime
You can access the port the server is running on from log output or from the EmbeddedWebApplicationContext
via its EmbeddedServletContainer
. The best way to get that and be sure that it has initialized is to add a @Bean
of type ApplicationListener<EmbeddedServletContainerInitializedEvent>
and pull the container out of the event when it is published.
A useful practice for use with @WebIntegrationTest
is to set server.port=0
and then inject the actual (‘local’) port as a @Value
. For example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RunWith(SpringJUnit4ClassRunner.class)</span></em>
<em><span style="color:gray">@SpringApplicationConfiguration(SampleDataJpaApplication.class)</span></em>
<em><span style="color:gray">@WebIntegrationTest("server.port:0")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> CityRepositoryIntegrationTests {
<em><span style="color:gray">@Autowired</span></em>
EmbeddedWebApplicationContext server;
<em><span style="color:gray">@Value("${local.server.port}")</span></em>
<span style="color:#7f0055"><strong>int</strong></span> port;
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
Don’t try to inject the port with |
70.5 Configure SSL
SSL can be configured declaratively by setting the various server.ssl.*
properties, typically in application.properties
or application.yml
. For example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.port</span>=8443
<span style="color:#7f007f">server.ssl.key-store</span>=classpath:keystore.jks
<span style="color:#7f007f">server.ssl.key-store-password</span>=secret
<span style="color:#7f007f">server.ssl.key-password</span>=another-secret</span></span>
See Ssl
for details of all of the supported properties.
Using configuration like the example above means the application will no longer support plain HTTP connector at port 8080. Spring Boot doesn’t support the configuration of both an HTTP connector and an HTTPS connector via application.properties
. If you want to have both then you’ll need to configure one of them programmatically. It’s recommended to use application.properties
to configure HTTPS as the HTTP connector is the easier of the two to configure programmatically. See the spring-boot-sample-tomcat-multi-connectors
sample project for an example.
70.6 Configure Access Logging
Access logs can be configured for Tomcat and Undertow via their respective namespaces.
For instance, the following logs access on Tomcat with a custom pattern.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.tomcat.basedir</span>=my-tomcat
<span style="color:#7f007f">server.tomcat.accesslog.enabled</span>=true
<span style="color:#7f007f">server.tomcat.accesslog.pattern</span>=%t %a "%r" %s (%D ms)</span></span>
The default location for logs is a |
Access logging for undertow can be configured in a similar fashion
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.undertow.accesslog.enabled</span>=true
<span style="color:#7f007f">server.undertow.accesslog.pattern</span>=%t %a "%r" %s (%D ms)</span></span>
Logs are stored in a logs
directory relative to the working directory of the application. This can be customized via server.undertow.accesslog.directory
.
70.7 Use behind a front-end proxy server
Your application might need to send 302
redirects or render content with absolute links back to itself. When running behind a proxy, the caller wants a link to the proxy, and not to the physical address of the machine hosting your app. Typically such situations are handled via a contract with the proxy, which will add headers to tell the back end how to construct links to itself.
If the proxy adds conventional X-Forwarded-For
and X-Forwarded-Proto
headers (most do this out of the box) the absolute links should be rendered correctly as long as server.use-forward-headers
is set to true
in your application.properties
.
If your application is running in Cloud Foundry or Heroku the |
70.7.1 Customize Tomcat’s proxy configuration
If you are using Tomcat you can additionally configure the names of the headers used to carry “forwarded” information:
<span style="color:#333333"><span style="color:#000000">server.tomcat.remote-ip-header=x-your-remote-ip-header
server.tomcat.protocol-header=x-your-protocol-header</span></span>
Tomcat is also configured with a default regular expression that matches internal proxies that are to be trusted. By default, IP addresses in 10/8
, 192.168/16
, 169.254/16
and 127/8
are trusted. You can customize the valve’s configuration by adding an entry to application.properties
, e.g.
<span style="color:#333333"><span style="color:#000000">server.tomcat.internal-proxies=192\\.168\\.\\d{1,3}\\.\\d{1,3}</span></span>
The double backslashes are only required when you’re using a properties file for configuration. If you are using YAML, single backslashes are sufficient and a value that’s equivalent to the one shown above would be |
You can trust all proxies by setting the |
You can take complete control of the configuration of Tomcat’s RemoteIpValve
by switching the automatic one off (i.e. set server.use-forward-headers=false
) and adding a new valve instance in a TomcatEmbeddedServletContainerFactory
bean.
70.8 Configure Tomcat
Generally you can follow the advice from Section 69.7, “Discover built-in options for external properties” about @ConfigurationProperties
(ServerProperties
is the main one here), but also look at EmbeddedServletContainerCustomizer
and various Tomcat-specific *Customizers
that you can add in one of those. The Tomcat APIs are quite rich so once you have access to the TomcatEmbeddedServletContainerFactory
you can modify it in a number of ways. Or the nuclear option is to add your own TomcatEmbeddedServletContainerFactory
.
70.9 Enable Multiple Connectors with Tomcat
Add a org.apache.catalina.connector.Connector
to the TomcatEmbeddedServletContainerFactory
which can allow multiple connectors, e.g. HTTP and HTTPS connector:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> EmbeddedServletContainerFactory servletContainer() {
TomcatEmbeddedServletContainerFactory tomcat = <span style="color:#7f0055"><strong>new</strong></span> TomcatEmbeddedServletContainerFactory();
tomcat.addAdditionalTomcatConnectors(createSslConnector());
<span style="color:#7f0055"><strong>return</strong></span> tomcat;
}
<span style="color:#7f0055"><strong>private</strong></span> Connector createSslConnector() {
Connector connector = <span style="color:#7f0055"><strong>new</strong></span> Connector(<span style="color:#2a00ff">"org.apache.coyote.http11.Http11NioProtocol"</span>);
Http11NioProtocol protocol = (Http11NioProtocol) connector.getProtocolHandler();
<span style="color:#7f0055"><strong>try</strong></span> {
File keystore = <span style="color:#7f0055"><strong>new</strong></span> ClassPathResource(<span style="color:#2a00ff">"keystore"</span>).getFile();
File truststore = <span style="color:#7f0055"><strong>new</strong></span> ClassPathResource(<span style="color:#2a00ff">"keystore"</span>).getFile();
connector.setScheme(<span style="color:#2a00ff">"https"</span>);
connector.setSecure(true);
connector.setPort(8443);
protocol.setSSLEnabled(true);
protocol.setKeystoreFile(keystore.getAbsolutePath());
protocol.setKeystorePass(<span style="color:#2a00ff">"changeit"</span>);
protocol.setTruststoreFile(truststore.getAbsolutePath());
protocol.setTruststorePass(<span style="color:#2a00ff">"changeit"</span>);
protocol.setKeyAlias(<span style="color:#2a00ff">"apitester"</span>);
<span style="color:#7f0055"><strong>return</strong></span> connector;
}
<span style="color:#7f0055"><strong>catch</strong></span> (IOException ex) {
<span style="color:#7f0055"><strong>throw</strong></span> <span style="color:#7f0055"><strong>new</strong></span> IllegalStateException(<span style="color:#2a00ff">"can't access keystore: ["</span> + <span style="color:#2a00ff">"keystore"</span>
+ <span style="color:#2a00ff">"] or truststore: ["</span> + <span style="color:#2a00ff">"keystore"</span> + <span style="color:#2a00ff">"]"</span>, ex);
}
}</span></span>
70.10 Use Jetty instead of Tomcat
The Spring Boot starters (spring-boot-starter-web
in particular) use Tomcat as an embedded container by default. You need to exclude those dependencies and include the Jetty one instead. Spring Boot provides Tomcat and Jetty dependencies bundled together as separate starters to help make this process as easy as possible.
Example in Maven:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><exclusions></span>
<span style="color:#3f7f7f"><exclusion></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-tomcat<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></exclusion></span>
<span style="color:#3f7f7f"></exclusions></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-jetty<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
Example in Gradle:
<span style="color:#333333"><span style="color:#000000">configurations {
compile.exclude module: <span style="color:#2a00ff">"spring-boot-starter-tomcat"</span>
}
dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-web:1.3.7.RELEASE"</span>)
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-jetty:1.3.7.RELEASE"</span>)
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
70.11 Configure Jetty
Generally you can follow the advice from Section 69.7, “Discover built-in options for external properties” about @ConfigurationProperties
(ServerProperties
is the main one here), but also look at EmbeddedServletContainerCustomizer
. The Jetty APIs are quite rich so once you have access to the JettyEmbeddedServletContainerFactory
you can modify it in a number of ways. Or the nuclear option is to add your own JettyEmbeddedServletContainerFactory
.
70.12 Use Undertow instead of Tomcat
Using Undertow instead of Tomcat is very similar to using Jetty instead of Tomcat. You need to exclude the Tomcat dependencies and include the Undertow starter instead.
Example in Maven:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><exclusions></span>
<span style="color:#3f7f7f"><exclusion></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-tomcat<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></exclusion></span>
<span style="color:#3f7f7f"></exclusions></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-undertow<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
Example in Gradle:
<span style="color:#333333"><span style="color:#000000">configurations {
compile.exclude module: <span style="color:#2a00ff">"spring-boot-starter-tomcat"</span>
}
dependencies {
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-web:1.3.7.RELEASE"</span>)
compile(<span style="color:#2a00ff">"org.springframework.boot:spring-boot-starter-undertow:1.3.7.RELEASE"</span>)
<span style="color:#3f5f5f"><em>// ...</em></span>
}</span></span>
70.13 Configure Undertow
Generally you can follow the advice from Section 69.7, “Discover built-in options for external properties” about @ConfigurationProperties
(ServerProperties
and ServerProperties.Undertow
are the main ones here), but also look at EmbeddedServletContainerCustomizer
. Once you have access to the UndertowEmbeddedServletContainerFactory
you can use an UndertowBuilderCustomizer
to modify Undertow’s configuration to meet your needs. Or the nuclear option is to add your own UndertowEmbeddedServletContainerFactory
.
70.14 Enable Multiple Listeners with Undertow
Add an UndertowBuilderCustomizer
to the UndertowEmbeddedServletContainerFactory
and add a listener to the Builder
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> UndertowEmbeddedServletContainerFactory embeddedServletContainerFactory() {
UndertowEmbeddedServletContainerFactory factory = <span style="color:#7f0055"><strong>new</strong></span> UndertowEmbeddedServletContainerFactory();
factory.addBuilderCustomizers(<span style="color:#7f0055"><strong>new</strong></span> UndertowBuilderCustomizer() {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> customize(Builder builder) {
builder.addHttpListener(8080, <span style="color:#2a00ff">"0.0.0.0"</span>);
}
});
<span style="color:#7f0055"><strong>return</strong></span> factory;
}</span></span>
70.15 Use Tomcat 7
Tomcat 7 works with Spring Boot, but the default is to use Tomcat 8. If you cannot use Tomcat 8 (for example, because you are using Java 1.6) you will need to change your classpath to reference Tomcat 7 .
70.15.1 Use Tomcat 7 with Maven
If you are using the starter poms and parent you can just change the Tomcat version property, e.g. for a simple webapp or service:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><properties></span>
<span style="color:#3f7f7f"><tomcat.version></span>7.0.59<span style="color:#3f7f7f"></tomcat.version></span>
<span style="color:#3f7f7f"></properties></span>
<span style="color:#3f7f7f"><dependencies></span>
...
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span>
...
<span style="color:#3f7f7f"></dependencies></span></span></span>
70.15.2 Use Tomcat 7 with Gradle
You can change the Tomcat version by setting the tomcat.version
property:
<span style="color:#333333"><span style="color:#000000">ext[<span style="color:#2a00ff">'tomcat.version'</span>] = <span style="color:#2a00ff">'7.0.59'</span>
dependencies {
compile <span style="color:#2a00ff">'org.springframework.boot:spring-boot-starter-web'</span>
}</span></span>
70.16 Use Jetty 8
Jetty 8 works with Spring Boot, but the default is to use Jetty 9. If you cannot use Jetty 9 (for example, because you are using Java 1.6) you will need to change your classpath to reference Jetty 8. You will also need to exclude Jetty’s WebSocket-related dependencies.
70.16.1 Use Jetty 8 with Maven
If you are using the starter poms and parent you can just add the Jetty starter with the required WebSocket exclusion and change the version properties, e.g. for a simple webapp or service:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><properties></span>
<span style="color:#3f7f7f"><jetty.version></span>8.1.15.v20140411<span style="color:#3f7f7f"></jetty.version></span>
<span style="color:#3f7f7f"><jetty-jsp.version></span>2.2.0.v201112011158<span style="color:#3f7f7f"></jetty-jsp.version></span>
<span style="color:#3f7f7f"></properties></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><exclusions></span>
<span style="color:#3f7f7f"><exclusion></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-tomcat<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></exclusion></span>
<span style="color:#3f7f7f"></exclusions></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-jetty<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><exclusions></span>
<span style="color:#3f7f7f"><exclusion></span>
<span style="color:#3f7f7f"><groupId></span>org.eclipse.jetty.websocket<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>*<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></exclusion></span>
<span style="color:#3f7f7f"></exclusions></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span></span></span>
70.16.2 Use Jetty 8 with Gradle
You can set the jetty.version
property and exclude the WebSocket dependency, e.g. for a simple webapp or service:
<span style="color:#333333"><span style="color:#000000">ext[<span style="color:#2a00ff">'jetty.version'</span>] = <span style="color:#2a00ff">'8.1.15.v20140411'</span>
dependencies {
compile (<span style="color:#2a00ff">'org.springframework.boot:spring-boot-starter-web'</span>) {
exclude group: <span style="color:#2a00ff">'org.springframework.boot'</span>, module: <span style="color:#2a00ff">'spring-boot-starter-tomcat'</span>
}
compile (<span style="color:#2a00ff">'org.springframework.boot:spring-boot-starter-jetty'</span>) {
exclude group: <span style="color:#2a00ff">'org.eclipse.jetty.websocket'</span>
}
}</span></span>
70.17 Create WebSocket endpoints using @ServerEndpoint
If you want to use @ServerEndpoint
in a Spring Boot application that used an embedded container, you must declare a single ServerEndpointExporter
@Bean
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> ServerEndpointExporter serverEndpointExporter() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> ServerEndpointExporter();
}</span></span>
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.
70.18 Enable HTTP response compression
HTTP response compression is supported by Jetty, Tomcat, and Undertow. It can be enabled via application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.compression.enabled</span>=true</span></span>
By default, responses must be at least 2048 bytes in length for compression to be performed. This can be configured using the server.compression.min-response-size
property.
By default, responses will only be compressed if their content type is one of the following:
text/html
text/xml
text/plain
text/css
This can be configured using the server.compression.mime-types
property.
71. Spring MVC
71.1 Write a JSON REST service
Any Spring @RestController
in a Spring Boot application should render JSON response by default as long as Jackson2 is on the classpath. For example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@RestController</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyController {
<em><span style="color:gray">@RequestMapping("/thing")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> MyThing thing() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> MyThing();
}
}</span></span>
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.
71.2 Write an XML REST service
If you have the Jackson XML extension (jackson-dataformat-xml
) on the classpath, it will be used to render XML responses and the very same example as we used for JSON would work. To use it, add the following dependency to your project:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>com.fasterxml.jackson.dataformat<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>jackson-dataformat-xml<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
You may also want to add a dependency on Woodstox. It’s faster than the default StAX implementation provided by the JDK and also adds pretty print support and improved namespace handling:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.codehaus.woodstox<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>woodstox-core-asl<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
If Jackson’s 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
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@XmlRootElement</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyThing {
<span style="color:#7f0055"><strong>private</strong></span> String name;
<span style="color:#3f5f5f"><em>// .. getters and setters</em></span>
}</span></span>
To get the server to render XML instead of JSON you might have to send an Accept: text/xml
header (or use a browser).
71.3 Customize the Jackson ObjectMapper
Spring MVC (client and server side) uses HttpMessageConverters
to negotiate content conversion in an HTTP exchange. If Jackson is on the classpath you already get the default converter(s) provided by Jackson2ObjectMapperBuilder
.
The ObjectMapper
(or XmlMapper
for Jackson XML converter) instance created by default have the following customized properties:
MapperFeature.DEFAULT_VIEW_INCLUSION
is disabledDeserializationFeature.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 six enums in Jackson which map onto properties in the environment:
Jackson enum | Environment property |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
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
doesn’t 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 71.4, “Customize the @ResponseBody rendering” section and the WebMvcAutoConfiguration
source code for more details.
71.4 Customize the @ResponseBody rendering
Spring uses HttpMessageConverters
to render @ResponseBody
(or responses from @RestController
). You can contribute additional converters by simply adding beans of that type in a Spring Boot context. If a bean you add is of a type that would have been included by default anyway (like MappingJackson2HttpMessageConverter
for JSON conversions) then it will replace the default value. 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 (useful, for example if you want to manually inject them into a custom RestTemplate
).
As in normal MVC usage, any WebMvcConfigurerAdapter
beans that you provide can also contribute converters by overriding the configureMessageConverters
method, but unlike with normal MVC, you can supply only additional converters that you need (because Spring Boot uses the same mechanism to contribute its defaults). Finally, if you opt-out of the Spring Boot default MVC configuration by providing your own @EnableWebMvc
configuration, then you can take control completely and do everything manually using getMessageConverters
from WebMvcConfigurationSupport
.
See the WebMvcAutoConfiguration
source code for more details.
71.5 Handling Multipart File Uploads
Spring Boot embraces the Servlet 3 javax.servlet.http.Part
API to support uploading files. By default Spring Boot configures Spring MVC with a maximum file of 1Mb per file and a maximum of 10Mb of file data in a single request. You may override these values, as well as the location to which intermediate data is stored (e.g., to the /tmp
directory) and the threshold past which data is flushed to disk by using the properties exposed in the MultipartProperties
class. If you want to specify that files be unlimited, for example, set the multipart.maxFileSize
property to -1
.
The multipart support is helpful when you want to receive multipart encoded file data as a @RequestParam
-annotated parameter of type MultipartFile
in a Spring MVC controller handler method.
See the MultipartAutoConfiguration
source for more details.
71.6 Switch off the Spring MVC DispatcherServlet
Spring Boot wants to serve all content from the root of your application /
down. If you would rather map your own servlet to that URL you can do it, but of course you may lose some of the other Boot MVC features. To add your own servlet and map it to the root resource just declare a @Bean
of type Servlet
and give it the special bean name dispatcherServlet
(You can also create a bean of a different type with that name if you want to switch it off and not replace it).
71.7 Switch off the Default MVC configuration
The easiest way to take complete control over MVC configuration is to provide your own @Configuration
with the @EnableWebMvc
annotation. This will leave all MVC configuration in your hands.
71.8 Customize ViewResolvers
A ViewResolver
is a core component of Spring MVC, translating view names in @Controller
to actual View
implementations. Note that ViewResolvers
are mainly used in UI applications, rather than REST-style services (a View
is not used to render a @ResponseBody
). There are many implementations of ViewResolver
to choose from, and Spring on its own is not opinionated about which ones you should use. Spring Boot, on the other hand, installs one or two for you depending on what it finds on the classpath and in the application context. The DispatcherServlet
uses all the resolvers it finds in the application context, trying each one in turn until it gets a result, so if you are adding your own you have to be aware of the order and in which position your resolver is added.
WebMvcAutoConfiguration
adds the following ViewResolvers
to your context:
- An
InternalResourceViewResolver
with bean id ‘defaultViewResolver’. This one locates physical resources that can be rendered using theDefaultServlet
(e.g. static resources and JSP pages if you are using those). It applies a prefix and a suffix to the view name and then looks for a physical resource with that path in the servlet context (defaults are both empty, but accessible for external configuration viaspring.mvc.view.prefix
andspring.mvc.view.suffix
). It can be overridden by providing a bean of the same type. - A
BeanNameViewResolver
with id ‘beanNameViewResolver’. This is a useful member of the view resolver chain and will pick up any beans with the same name as theView
being resolved. It shouldn’t be necessary to override or replace it. - A
ContentNegotiatingViewResolver
with id ‘viewResolver’ is only added if there are actually beans of typeView
present. This is a ‘master’ resolver, delegating to all the others and attempting to find a match to the ‘Accept’ HTTP header sent by the client. There is a useful blog aboutContentNegotiatingViewResolver
that you might like to study to learn more, and also look at the source code for detail. You can switch off the auto-configuredContentNegotiatingViewResolver
by defining a bean named ‘viewResolver’. - If you use Thymeleaf you will also have a
ThymeleafViewResolver
with id ‘thymeleafViewResolver’. It looks for resources by surrounding the view name with a prefix and suffix (externalized tospring.thymeleaf.prefix
andspring.thymeleaf.suffix
, defaults ‘classpath:/templates/’ and ‘.html’ respectively). It can be overridden by providing a bean of the same name. - If you use FreeMarker you will also have a
FreeMarkerViewResolver
with id ‘freeMarkerViewResolver’. It looks for resources in a loader path (externalized tospring.freemarker.templateLoaderPath
, default ‘classpath:/templates/’) by surrounding the view name with a prefix and suffix (externalized tospring.freemarker.prefix
andspring.freemarker.suffix
, with empty and ‘.ftl’ defaults respectively). It can be overridden by providing a bean of the same name. - If you use Groovy templates (actually if groovy-templates is on your classpath) you will also have a
GroovyMarkupViewResolver
with id ‘groovyMarkupViewResolver’. It looks for resources in a loader path by surrounding the view name with a prefix and suffix (externalized tospring.groovy.template.prefix
andspring.groovy.template.suffix
, defaults ‘classpath:/templates/’ and ‘.tpl’ respectively). It can be overridden by providing a bean of the same name. - If you use Velocity you will also have a
VelocityViewResolver
with id ‘velocityViewResolver’. It looks for resources in a loader path (externalized tospring.velocity.resourceLoaderPath
, default ‘classpath:/templates/’) by surrounding the view name with a prefix and suffix (externalized tospring.velocity.prefix
andspring.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
andVelocityAutoConfiguration
71.9 Velocity
By default, Spring Boot configures a VelocityViewResolver
. If you need a VelocityLayoutViewResolver
instead, you can easily configure your own by creating a bean with name velocityViewResolver
. You can also inject the VelocityProperties
instance to apply the base defaults to your custom view resolver.
The following example replaces the auto-configured velocity view resolver with a VelocityLayoutViewResolver
defining a customized layoutUrl
and all settings that would have been applied from the auto-configuration:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean(name = "velocityViewResolver")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> VelocityLayoutViewResolver velocityViewResolver(VelocityProperties properties) {
VelocityLayoutViewResolver resolver = <span style="color:#7f0055"><strong>new</strong></span> VelocityLayoutViewResolver();
properties.applyToViewResolver(resolver);
resolver.setLayoutUrl(<span style="color:#2a00ff">"layout/default.vm"</span>);
<span style="color:#7f0055"><strong>return</strong></span> resolver;
}</span></span>
72. Logging
Spring Boot has no mandatory logging dependency, except for the commons-logging
API, of which there are many implementations to choose from. To use Logback you need to include it, and 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:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
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.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">logging.level.org.springframework.web</span>=DEBUG
<span style="color:#7f007f">logging.level.org.hibernate</span>=ERROR</span></span>
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.
72.1 Configure Logback for logging
If you put a logback.xml
in the root of your classpath it will be picked up from there (or logback-spring.xml
to take advantage of the templating features provided by Boot). Spring Boot provides a default base configuration that you can include if you just want to set levels, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><include</span> <span style="color:#7f007f">resource</span>=<span style="color:#2a00ff">"org/springframework/boot/logging/logback/base.xml"</span><span style="color:#3f7f7f">/></span>
<span style="color:#3f7f7f"><logger</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"org.springframework.web"</span> <span style="color:#7f007f">level</span>=<span style="color:#2a00ff">"DEBUG"</span><span style="color:#3f7f7f">/></span>
<span style="color:#3f7f7f"></configuration></span></span></span>
If you look at that base.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}
iflogging.file
was set in Boot’s external configuration.${LOG_PATH}
iflogging.path
was set (representing a directory for log files to live in).${LOG_EXCEPTION_CONVERSION_WORD}
iflogging.exception-conversion-word
was set in Boot’s external configuration.
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).
72.1.1 Configure logback for file only output
If you want to disable console logging and write output only to a file you need a custom logback-spring.xml
that imports file-appender.xml
but not console-appender.xml
:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><include</span> <span style="color:#7f007f">resource</span>=<span style="color:#2a00ff">"org/springframework/boot/logging/logback/defaults.xml"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><property</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"LOG_FILE"</span> <span style="color:#7f007f">value</span>=<span style="color:#2a00ff">"${LOG_FILE:-${LOG_PATH:-${LOG_TEMP:-${java.io.tmpdir:-/tmp}}/}spring.log}"</span><span style="color:#3f7f7f">/></span>
<span style="color:#3f7f7f"><include</span> <span style="color:#7f007f">resource</span>=<span style="color:#2a00ff">"org/springframework/boot/logging/logback/file-appender.xml"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><root</span> <span style="color:#7f007f">level</span>=<span style="color:#2a00ff">"INFO"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><appender-ref</span> <span style="color:#7f007f">ref</span>=<span style="color:#2a00ff">"FILE"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></root></span>
<span style="color:#3f7f7f"></configuration></span></span></span>
You also need to add logging.file
to your application.properties
:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">logging.file</span>=myapplication.log</span></span>
72.2 Configure Log4j for logging
Spring Boot also supports either Log4j or Log4j 2 for logging configuration, but only if one of them is on the classpath. If you are using the starter poms for assembling dependencies that means you have to exclude Logback and then include your chosen version of Log4j instead. If you aren’t using the starter poms then you need to provide commons-logging
(at least) in addition to your chosen version of Log4j.
The simplest path is probably through the starter poms, even though it requires some jiggling with excludes, .e.g. in Maven:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-web<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><exclusions></span>
<span style="color:#3f7f7f"><exclusion></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-logging<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></exclusion></span>
<span style="color:#3f7f7f"></exclusions></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-log4j<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
To use Log4j 2, simply depend on spring-boot-starter-log4j2
rather than spring-boot-starter-log4j
.
The use of one of the Log4j starters gathers together the dependencies for common logging requirements (e.g. including having Tomcat use |
72.2.1 Use YAML or JSON to configure Log4j 2
In addition to its default XML configuration format, Log4j 2 also supports YAML and JSON configuration files. To configure Log4j 2 to use an alternative configuration file format, add the appropriate dependencies to the classpath and name your configuration files to match your chosen file format:
Format | Dependencies | File names |
---|---|---|
YAML |
|
|
JSON |
|
|
73. Data Access
73.1 Configure a DataSource
To override the default settings just define a @Bean
of your own of type DataSource
. Spring Boot provides a utility builder class DataSourceBuilder
that can be used to create one of the standard ones (if it is on the classpath), or you can just create your own, and bind it to a set of Environment
properties as explained in Section 24.7.1, “Third-party configuration”, e.g.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="datasource.mine")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> DataSource dataSource() {
<span style="color:#7f0055"><strong>return</strong></span> <span style="color:#7f0055"><strong>new</strong></span> FancyDataSource();
}</span></span>
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">datasource.mine.jdbcUrl</span>=jdbc:h2:mem:mydb
<span style="color:#7f007f">datasource.mine.user</span>=sa
<span style="color:#7f007f">datasource.mine.poolSize</span>=30</span></span>
See Section 29.1, “Configure a DataSource” in the ‘Spring Boot features’ section and the DataSourceAutoConfiguration
class for more details.
73.2 Configure Two DataSources
Creating more than one data source works the same as creating the first one. You might want to mark one of them as @Primary
if you are using the default auto-configuration for JDBC or JPA (then that one will be picked up by any @Autowired
injections).
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Bean</span></em>
<em><span style="color:gray">@Primary</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="datasource.primary")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> DataSource primaryDataSource() {
<span style="color:#7f0055"><strong>return</strong></span> DataSourceBuilder.create().build();
}
<em><span style="color:gray">@Bean</span></em>
<em><span style="color:gray">@ConfigurationProperties(prefix="datasource.secondary")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> DataSource secondaryDataSource() {
<span style="color:#7f0055"><strong>return</strong></span> DataSourceBuilder.create().build();
}</span></span>
73.3 Use Spring Data repositories
Spring Data can create implementations for you of @Repository
interfaces of various flavors. Spring Boot will handle all of that for you as long as those @Repositories
are included in the same package (or a sub-package) of your @EnableAutoConfiguration
class.
For many applications all you will need is to put the right Spring Data dependencies on your classpath (there is a spring-boot-starter-data-jpa
for JPA and a spring-boot-starter-data-mongodb
for Mongodb), create some repository interfaces to handle your @Entity
objects. Examples are in the JPA sample or the Mongodb sample.
Spring Boot tries to guess the location of your @Repository
definitions, based on the @EnableAutoConfiguration
it finds. To get more control, use the @EnableJpaRepositories
annotation (from Spring Data JPA).
73.4 Separate @Entity definitions from Spring configuration
Spring Boot tries to guess the location of your @Entity
definitions, based on the @EnableAutoConfiguration
it finds. To get more control, you can use the @EntityScan
annotation, e.g.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableAutoConfiguration</span></em>
<em><span style="color:gray">@EntityScan(basePackageClasses=City.class)</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Application {
<span style="color:#3f5f5f"><em>//...</em></span>
}</span></span>
73.5 Configure JPA properties
Spring Data JPA already provides some vendor-independent configuration options (e.g. for SQL logging) and Spring Boot exposes those, and a few more for hibernate as external configuration properties. The most common options to set are:
<span style="color:#333333"><span style="color:#000000">spring.jpa.hibernate.ddl-auto: create-drop
spring.jpa.hibernate.naming_strategy: org.hibernate.cfg.ImprovedNamingStrategy
spring.jpa.database: H2
spring.jpa.show-sql: true</span></span>
(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.
73.6 Use a custom EntityManagerFactory
To take full control of the configuration of the EntityManagerFactory
, you need to add a @Bean
named ‘entityManagerFactory’. Spring Boot auto-configuration switches off its entity manager based on the presence of a bean of that type.
73.7 Use Two EntityManagers
Even if the default EntityManagerFactory
works fine, you will need to define a new one because otherwise the presence of the second bean of that type will switch off the default. To make it easy to do that you can use the convenient EntityManagerBuilder
provided by Spring Boot, or if you prefer you can just use the LocalContainerEntityManagerFactoryBean
directly from Spring ORM.
Example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em>// add two data sources configured as above</em></span>
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> LocalContainerEntityManagerFactoryBean customerEntityManagerFactory(
EntityManagerFactoryBuilder builder) {
<span style="color:#7f0055"><strong>return</strong></span> builder
.dataSource(customerDataSource())
.packages(Customer.<span style="color:#7f0055"><strong>class</strong></span>)
.persistenceUnit(<span style="color:#2a00ff">"customers"</span>)
.build();
}
<em><span style="color:gray">@Bean</span></em>
<span style="color:#7f0055"><strong>public</strong></span> LocalContainerEntityManagerFactoryBean orderEntityManagerFactory(
EntityManagerFactoryBuilder builder) {
<span style="color:#7f0055"><strong>return</strong></span> builder
.dataSource(orderDataSource())
.packages(Order.<span style="color:#7f0055"><strong>class</strong></span>)
.persistenceUnit(<span style="color:#2a00ff">"orders"</span>)
.build();
}</span></span>
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.
If you are using Spring Data, you need to configure @EnableJpaRepositories
accordingly:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableJpaRepositories(basePackageClasses = Customer.class,
entityManagerFactoryRef = "customerEntityManagerFactory")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> CustomerConfiguration {
...
}
<em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableJpaRepositories(basePackageClasses = Order.class,
entityManagerFactoryRef = "orderEntityManagerFactory")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> OrderConfiguration {
...
}</span></span>
73.8 Use a traditional persistence.xml
Spring doesn’t require the use of XML to configure the JPA provider, and Spring Boot assumes you want to take advantage of that feature. If you prefer to use persistence.xml
then you need to define your own @Bean
of type LocalEntityManagerFactoryBean
(with id ‘entityManagerFactory’, and set the persistence unit name there.
See JpaBaseConfiguration
for the default settings.
73.9 Use Spring Data JPA and Mongo repositories
Spring Data JPA and Spring Data Mongo can both create Repository
implementations for you automatically. If they are both present on the classpath, you might have to do some extra configuration to tell Spring Boot which one (or both) you want to create repositories for you. The most explicit way to do that is to use the standard Spring Data @Enable*Repositories
and tell it the location of your Repository
interfaces (where ‘*’ is ‘Jpa’ or ‘Mongo’ or both).
There are also flags spring.data.*.repositories.enabled
that you can use to switch the auto-configured repositories on and off in external configuration. This is useful for instance in case you want to switch off the Mongo repositories and still use the auto-configured MongoTemplate
.
The same obstacle and the same features exist for other auto-configured Spring Data repository types (Elasticsearch, Solr). Just change the names of the annotations and flags respectively.
73.10 Expose Spring Data repositories as REST endpoint
Spring Data REST can expose the Repository
implementations as REST endpoints for you as long as Spring MVC has been enabled for the application.
Spring Boot exposes as set of useful properties from the spring.data.rest
namespace that customize the RepositoryRestConfiguration
. If you need to provide additional customization, you should use a RepositoryRestConfigurer
bean.
74. Database initialization
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.
74.1 Initialize a database using JPA
JPA has features for DDL generation, and these can be set up to run on startup against the database. This is controlled through two external properties:
spring.jpa.generate-ddl
(boolean) switches the feature on and off and is vendor independent.spring.jpa.hibernate.ddl-auto
(enum) is a Hibernate feature that controls the behavior in a more fine-grained way. See below for more detail.
74.2 Initialize a database using Hibernate
You can set spring.jpa.hibernate.ddl-auto
explicitly and the standard Hibernate property values are none
, validate
, update
, create
, create-drop
. Spring Boot chooses a default value for you based on whether it thinks your database is embedded (default create-drop
) or not (default none
). An embedded database is detected by looking at the Connection
type: hsqldb
, h2
and derby
are embedded, the rest are not. Be careful when switching from in-memory to a ‘real’ database that you don’t make assumptions about the existence of the tables and data in the new platform. You either have to set ddl-auto
explicitly, or use one of the other mechanisms to initialize the database.
You can output the schema creation by enabling the |
In addition, a file named import.sql
in the root of the classpath will be executed on startup. This can be useful for demos and for testing if you are careful, but probably not something you want to be on the classpath in production. It is a Hibernate feature (nothing to do with Spring).
74.3 Initialize a database using Spring JDBC
Spring JDBC has a DataSource
initializer feature. Spring Boot enables it by default and loads SQL from the standard locations schema.sql
and data.sql
(in the root of the classpath). In addition Spring Boot will load the schema-${platform}.sql
and data-${platform}.sql
files (if present), where platform
is the value of spring.datasource.platform
, e.g. you might choose to set it to the vendor name of the database (hsqldb
, h2
, oracle
, mysql
,postgresql
etc.). Spring Boot enables the fail-fast feature of the Spring JDBC initializer by default, so if the scripts cause exceptions the application will fail to start. The script locations can be changed by setting spring.datasource.schema
and spring.datasource.data
, and neither location will be processed ifspring.datasource.initialize=false
.
To disable the fail-fast you can set spring.datasource.continueOnError=true
. This can be useful once an application has matured and been deployed a few times, since the scripts can act as ‘poor man’s migrations’ — inserts that fail mean that the data is already there, so there would be no need to prevent the application from running, for instance.
If you want to use the schema.sql
initialization in a JPA app (with Hibernate) then ddl-auto=create-drop
will lead to errors if Hibernate tries to create the same tables. To avoid those errors set ddl-auto
explicitly to "" (preferable) or "none". Whether or not you use ddl-auto=create-drop
you can always use data.sql
to initialize new data.
74.4 Initialize a Spring Batch database
If you are using Spring Batch then it comes pre-packaged with SQL initialization scripts for most popular database platforms. Spring Boot will detect your database type, and execute those scripts by default, 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
.
74.5 Use a higher level database migration tool
Spring Boot works fine with higher level migration tools Flyway (SQL-based) and Liquibase (XML). In general we prefer Flyway because it is easier on the eyes, and it isn’t very common to need platform independence: usually only one or at most couple of platforms is needed.
74.5.1 Execute Flyway database migrations on startup
To automatically run Flyway database migrations on startup, add the org.flywaydb:flyway-core
to your classpath.
The migrations are scripts in the form V<VERSION>__<NAME>.sql
(with <VERSION>
an underscore-separated version, e.g. ‘1’ or ‘2_1’). By default they live in a folder classpath:db/migration
but you can modify that using flyway.locations
(a list). See the Flyway class from flyway-core for details of available settings like schemas etc. In addition Spring Boot provides a small set of properties in FlywayProperties
that can be used to disable the migrations, or switch off the location checking.
If you want to make use of Flyway callbacks, those scripts should also live in the |
By default Flyway will autowire the (@Primary
) DataSource
in your context and use that for migrations. If you like to use a different DataSource
you can create one and mark its @Bean
as @FlywayDataSource
- if you do that remember to create another one and mark it as @Primary
if you want two data sources. Or you can use Flyway’s native DataSource
by setting flyway.[url,user,password]
in external properties.
There is a Flyway sample so you can see how to set things up.
74.5.2 Execute Liquibase database migrations on startup
To automatically run Liquibase database migrations on startup, add the org.liquibase:liquibase-core
to your classpath.
The master change log is by default read from db/changelog/db.changelog-master.yaml
but can be set using liquibase.change-log
. SeeLiquibaseProperties
for details of available settings like contexts, default schema etc.
There is a Liquibase sample so you can see how to set things up.
75. Batch applications
75.1 Execute Spring Batch jobs on startup
Spring Batch auto-configuration is enabled by adding @EnableBatchProcessing
(from Spring Batch) somewhere in your context.
By default it executes all Jobs
in the application context on startup (see JobLauncherCommandLineRunner for details). You can narrow down to a specific job or jobs by specifying spring.batch.job.names
(comma-separated job name patterns).
If the application context includes a JobRegistry
then the jobs in spring.batch.job.names
are looked up in the registry instead of being autowired from the context. This is a common pattern with more complex systems where multiple jobs are defined in child contexts and registered centrally.
See BatchAutoConfiguration and @EnableBatchProcessing for more details.
76. Actuator
76.1 Change the HTTP port or address of the actuator endpoints
In a standalone application the Actuator HTTP port defaults to the same as the main HTTP port. To make the application listen on a different port set the external property management.port
. To listen on a completely different network address (e.g. if you have an internal network for management and an external one for user applications) you can also set management.address
to a valid IP address that the server is able to bind to.
For more detail look at the ManagementServerProperties
source code and Section 46.3, “Customizing the management server port” in the ‘Production-ready features’ section.
76.2 Customize the ‘whitelabel’ error page
Spring Boot installs a ‘whitelabel’ error page that you will see in browser client if you encounter a server error (machine clients consuming JSON and other media types should see a sensible response with the right error code). To switch it off you can set server.error.whitelabel.enabled=false
, but normally in addition or alternatively to that you will want to add your own error page replacing the whitelabel one. Exactly how you do this depends on the templating technology that you are using. For example, if you are using Thymeleaf you would add an error.html
template and if you are using FreeMarker you would add an error.ftl
template. In general what you need is a View
that resolves with a name of error
, and/or a @Controller
that handles the /error
path. Unless you replaced some of the default configuration you should find a BeanNameViewResolver
in your ApplicationContext
so a @Bean
with id error
would be a simple way of doing that. Look at ErrorMvcAutoConfiguration
for more options.
See also the section on Error Handling for details of how to register handlers in the servlet container.
76.3 Actuator and Jersey
Actuator HTTP endpoints are only available for Spring MVC-based applications. If you want to use Jersey and still use the actuator you will need to enable Spring MVC (by depending on spring-boot-starter-web
, for example). By default, both Jersey and the Spring MVC dispatcher servlet are mapped to the same path (/
). You will need to change the path for one of them (by configuring server.servlet-path
for Spring MVC orspring.jersey.application-path
for Jersey). For example, if you add server.servlet-path=/system
into application.properties
, the actuator HTTP endpoints will be available under /system
.
77. Security
77.1 Switch off the Spring Boot security configuration
If you define a @Configuration
with @EnableWebSecurity
anywhere in your application it will switch off the default webapp security settings in Spring Boot. To tweak the defaults try setting properties in security.*
(see SecurityProperties
for details of available settings) and SECURITY
section of Common application properties.
77.2 Change the AuthenticationManager and add user accounts
If you provide a @Bean
of type AuthenticationManager
the default one will not be created, so you have the full feature set of Spring Security available (e.g.various authentication options).
Spring Security also provides a convenient AuthenticationManagerBuilder
which can be used to build an AuthenticationManager
with common options. The recommended way to use this in a webapp is to inject it into a void method in a WebSecurityConfigurerAdapter
, e.g.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> SecurityConfiguration <span style="color:#7f0055"><strong>extends</strong></span> WebSecurityConfigurerAdapter {
<em><span style="color:gray">@Autowired</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> configureGlobal(AuthenticationManagerBuilder auth) <span style="color:#7f0055"><strong>throws</strong></span> Exception {
auth.inMemoryAuthentication()
.withUser(<span style="color:#2a00ff">"barry"</span>).password(<span style="color:#2a00ff">"password"</span>).roles(<span style="color:#2a00ff">"USER"</span>); <span style="color:#3f5f5f"><em>// ... etc.</em></span>
}
<span style="color:#3f5f5f"><em>// ... other stuff for application security</em></span>
}</span></span>
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.
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> AuthenticationManagerConfiguration <span style="color:#7f0055"><strong>extends</strong></span>
GlobalAuthenticationConfigurerAdapter {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> init(AuthenticationManagerBuilder auth) {
auth.inMemoryAuthentication() <span style="color:#3f5f5f"><em>// ... etc.</em></span>
}
}</span></span>
77.3 Enable HTTPS when running behind a proxy server
Ensuring that all your main endpoints are only available over HTTPS is an important chore for any application. If you are using Tomcat as a servlet container, then Spring Boot will add Tomcat’s own RemoteIpValve
automatically if it detects some environment settings, and you should be able to rely on the HttpServletRequest
to report whether it is secure or not (even downstream of a proxy server that handles the real SSL termination). The standard behavior is determined by the presence or absence of certain request headers (x-forwarded-for
and x-forwarded-proto
), whose names are conventional, so it should work with most front end proxies. You can switch on the valve by adding some entries to application.properties
, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.tomcat.remote_ip_header</span>=x-forwarded-for
<span style="color:#7f007f">server.tomcat.protocol_header</span>=x-forwarded-proto</span></span>
(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 setsecurity.require_ssl
to true
in application.properties
.
78. Hot swapping
78.1 Reload static content
There are several options for hot reloading. The recommended approach is to use spring-boot-devtools
as it provides additional development-time features such as support for fast application restarts and LiveReload as well as sensible development-time configuration (e.g. template caching).
Alternatively, running in an IDE (especially with debugging on) is a good way to do development (all modern IDEs allow reloading of static resources and usually also hot-swapping of Java class changes).
Finally, the Maven and Gradle plugins can be configured (see the addResources
property) to support running from the command line with reloading of static files. You can use that with an external css/js compiler process if you are writing that code with higher level tools.
78.2 Reload templates without restarting the container
Most of the templating technologies supported by Spring Boot include a configuration option to disable caching (see below for details). If you’re using thespring-boot-devtools
module these properties will be automatically configured for you at development time.
78.2.1 Thymeleaf templates
If you are using Thymeleaf, then set spring.thymeleaf.cache
to false
. See ThymeleafAutoConfiguration
for other Thymeleaf customization options.
78.2.2 FreeMarker templates
If you are using FreeMarker, then set spring.freemarker.cache
to false
. See FreeMarkerAutoConfiguration
for other FreeMarker customization options.
78.2.3 Groovy templates
If you are using Groovy templates, then set spring.groovy.template.cache
to false
. See GroovyTemplateAutoConfiguration
for other Groovy customization options.
78.2.4 Velocity templates
If you are using Velocity, then set spring.velocity.cache
to false
. See VelocityAutoConfiguration
for other Velocity customization options.
78.3 Fast application restarts
The spring-boot-devtools
module includes support for automatic application restarts. Whilst not as fast a technologies such as JRebel or Spring Loadedit’s usually significantly faster than a “cold start”. You should probably give it a try before investigating some of the more complex reload options discussed below.
For more details see the Chapter 20, Developer tools section.
78.4 Reload Java classes without restarting the container
Modern IDEs (Eclipse, IDEA, etc.) all support hot swapping of bytecode, so if you make a change that doesn’t affect class or method signatures it should reload cleanly with no side effects.
Spring Loaded goes a little further in that it can reload class definitions with changes in the method signatures. With some customization it can force an ApplicationContext
to refresh itself (but there is no general mechanism to ensure that would be safe for a running application anyway, so it would only ever be a development time trick probably).
78.4.1 Configuring Spring Loaded for use with Maven
To use Spring Loaded with the Maven command line, just add it as a dependency in the Spring Boot plugin declaration, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>springloaded<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>1.2.0.RELEASE<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></dependencies></span>
<span style="color:#3f7f7f"></plugin></span></span></span>
This normally works pretty well with Eclipse and IntelliJ IDEA as long as they have their build configuration aligned with the Maven defaults (Eclipse m2e does this out of the box).
78.4.2 Configuring Spring Loaded for use with Gradle and IntelliJ IDEA
You need to jump through a few hoops if you want to use Spring Loaded in combination with Gradle and IntelliJ IDEA. By default, IntelliJ IDEA will compile classes into a different location than Gradle, causing Spring Loaded monitoring to fail.
To configure IntelliJ IDEA correctly you can use the idea
Gradle plugin:
<span style="color:#333333"><span style="color:#000000">buildscript {
repositories { jcenter() }
dependencies {
classpath <span style="color:#2a00ff">"org.springframework.boot:spring-boot-gradle-plugin:1.3.7.RELEASE"</span>
classpath <span style="color:#2a00ff">'org.springframework:springloaded:1.2.0.RELEASE'</span>
}
}
apply plugin: <span style="color:#2a00ff">'idea'</span>
idea {
module {
inheritOutputDirs = false
outputDir = file(<span style="color:#2a00ff">"$buildDir/classes/main/"</span>)
}
}
<span style="color:#3f5f5f"><em>// ...</em></span></span></span>
IntelliJ IDEA must be configured to use the same Java version as the command line Gradle task and |
You can also additionally enable ‘Make Project Automatically’ inside IntelliJ IDEA to automatically compile your code whenever a file is saved.
79. Build
79.1 Customize dependency versions
If you use a Maven build that inherits directly or indirectly from spring-boot-dependencies
(for instance spring-boot-starter-parent
) but you want to override a specific third-party dependency you can add appropriate <properties>
elements. Browse the spring-boot-dependencies
POM for a complete list of properties. For example, to pick a different slf4j
version you would add the following:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><properties></span>
<span style="color:#3f7f7f"><slf4j.version></span>1.7.5<span style="color:#3f7f7f"><slf4j.version></span>
<span style="color:#3f7f7f"></properties></span></span></span>
This only works if your Maven project inherits (directly or indirectly) from |
Each Spring Boot release is designed and tested against a specific set of third-party dependencies. Overriding versions may cause compatibility issues. |
To override dependency versions in Gradle, you can specify a version as shown below:
<span style="color:#333333"><span style="color:#000000">ext[<span style="color:#2a00ff">'slf4j.version'</span>] = <span style="color:#2a00ff">'1.7.5'</span></span></span>
For additional information, please refer to the Gradle Dependency Management Plugin documentation.
79.2 Create an executable JAR with Maven
The spring-boot-maven-plugin
can be used to create an executable ‘fat’ JAR. If you are using the spring-boot-starter-parent
POM you can simply declare the plugin and your jars will be repackaged:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
If you are not using the parent POM you can still use the plugin, however, you must additionally add an <executions>
section:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><version></span>1.3.7.RELEASE<span style="color:#3f7f7f"></version></span>
<span style="color:#3f7f7f"><executions></span>
<span style="color:#3f7f7f"><execution></span>
<span style="color:#3f7f7f"><goals></span>
<span style="color:#3f7f7f"><goal></span>repackage<span style="color:#3f7f7f"></goal></span>
<span style="color:#3f7f7f"></goals></span>
<span style="color:#3f7f7f"></execution></span>
<span style="color:#3f7f7f"></executions></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
See the plugin documentation for full usage details.
79.3 Create an additional executable JAR
If you want to use your project as a library jar for other projects to depend on, and in addition have an executable (e.g. demo) version of it, you will want to configure the build in a slightly different way.
For Maven the normal JAR plugin and the Spring Boot plugin both have a ‘classifier’ configuration that you can add to create an additional JAR. Example (using the Spring Boot Starter Parent to manage the plugin versions and other configuration defaults):
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><classifier></span>exec<span style="color:#3f7f7f"></classifier></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
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:
<span style="color:#333333"><span style="color:#000000">bootRepackage {
classifier = <span style="color:#2a00ff">'exec'</span>
}</span></span>
79.4 Extract specific libraries when an executable jar runs
Most nested libraries in an executable jar do not need to be unpacked in order to run, however, certain libraries can have problems. For example, JRuby includes its own nested jar support which assumes that the jruby-complete.jar
is always directly available as a file in its own right.
To deal with any problematic libraries, you can flag that specific nested jars should be automatically unpacked to the ‘temp folder’ when the executable jar first runs.
For example, to indicate that JRuby should be flagged for unpack using the Maven Plugin you would add the following configuration:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><requiresUnpack></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.jruby<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>jruby-complete<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f7f7f"></requiresUnpack></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
And to do that same with Gradle:
<span style="color:#333333"><span style="color:#000000">springBoot {
requiresUnpack = [<span style="color:#2a00ff">'org.jruby:jruby-complete'</span>]
}</span></span>
79.5 Create a non-executable JAR with exclusions
Often if you have an executable and a non-executable jar as build products, the executable version will have additional configuration files that are not needed in a library jar. E.g. the application.yml
configuration file might excluded from the non-executable JAR.
Here’s how to do that in Maven:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><build></span>
<span style="color:#3f7f7f"><plugins></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-maven-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><classifier></span>exec<span style="color:#3f7f7f"></classifier></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"><plugin></span>
<span style="color:#3f7f7f"><artifactId></span>maven-jar-plugin<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><executions></span>
<span style="color:#3f7f7f"><execution></span>
<span style="color:#3f7f7f"><id></span>exec<span style="color:#3f7f7f"></id></span>
<span style="color:#3f7f7f"><phase></span>package<span style="color:#3f7f7f"></phase></span>
<span style="color:#3f7f7f"><goals></span>
<span style="color:#3f7f7f"><goal></span>jar<span style="color:#3f7f7f"></goal></span>
<span style="color:#3f7f7f"></goals></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f7f7f"><classifier></span>exec<span style="color:#3f7f7f"></classifier></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></execution></span>
<span style="color:#3f7f7f"><execution></span>
<span style="color:#3f7f7f"><phase></span>package<span style="color:#3f7f7f"></phase></span>
<span style="color:#3f7f7f"><goals></span>
<span style="color:#3f7f7f"><goal></span>jar<span style="color:#3f7f7f"></goal></span>
<span style="color:#3f7f7f"></goals></span>
<span style="color:#3f7f7f"><configuration></span>
<span style="color:#3f5f5f"><em><!-- Need this to ensure application.yml is excluded --></em></span>
<span style="color:#3f7f7f"><forceCreation></span>true<span style="color:#3f7f7f"></forceCreation></span>
<span style="color:#3f7f7f"><excludes></span>
<span style="color:#3f7f7f"><exclude></span>application.yml<span style="color:#3f7f7f"></exclude></span>
<span style="color:#3f7f7f"></excludes></span>
<span style="color:#3f7f7f"></configuration></span>
<span style="color:#3f7f7f"></execution></span>
<span style="color:#3f7f7f"></executions></span>
<span style="color:#3f7f7f"></plugin></span>
<span style="color:#3f7f7f"></plugins></span>
<span style="color:#3f7f7f"></build></span></span></span>
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:
<span style="color:#333333"><span style="color:#000000">jar {
baseName = <span style="color:#2a00ff">'spring-boot-sample-profile'</span>
version = <span style="color:#2a00ff">'0.0.0'</span>
excludes = [<span style="color:#2a00ff">'**/application.yml'</span>]
}
task(<span style="color:#2a00ff">'execJar'</span>, type:Jar, dependsOn: <span style="color:#2a00ff">'jar'</span>) {
baseName = <span style="color:#2a00ff">'spring-boot-sample-profile'</span>
version = <span style="color:#2a00ff">'0.0.0'</span>
classifier = <span style="color:#2a00ff">'exec'</span>
from sourceSets.main.output
}
bootRepackage {
withJarTask = tasks[<span style="color:#2a00ff">'execJar'</span>]
}</span></span>
79.6 Remote debug a Spring Boot application started with Maven
To attach a remote debugger to a Spring Boot application started with Maven you can use the jvmArguments
property of the maven plugin.
Check this example for more details.
79.7 Remote debug a Spring Boot application started with Gradle
To attach a remote debugger to a Spring Boot application started with Gradle you can use the applicationDefaultJvmArgs
in build.gradle
or --debug-jvm
command line option.
build.gradle
:
<span style="color:#333333"><span style="color:#000000">applicationDefaultJvmArgs = [
<span style="color:#2a00ff">"-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005"</span>
]</span></span>
Command line:
<span style="color:#333333"><span style="color:#000000">$ gradle run --debug-jvm</span></span>
Check Gradle Application Plugin for more details.
79.8 Build an executable archive from Ant without using spring-boot-antlib
To build with Ant you need to grab dependencies, compile and then create a jar or war archive as normal. To make it executable you can either use the spring-boot-antlib
module, or you can follow these instructions:
- Use the appropriate launcher as a
Main-Class
, e.g.JarLauncher
for a jar file, and specify the other properties it needs as manifest entries, principally aStart-Class
. - Add the runtime dependencies in a nested ‘lib’ directory (for a jar) and the
provided
(embedded container) dependencies in a nestedlib-provided
directory. Remember not to compress the entries in the archive. - Add the
spring-boot-loader
classes at the root of the archive (so theMain-Class
is available).
Example:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><target</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"build"</span> <span style="color:#7f007f">depends</span>=<span style="color:#2a00ff">"compile"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><copy</span> <span style="color:#7f007f">todir</span>=<span style="color:#2a00ff">"target/classes/lib"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"lib/runtime"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></copy></span>
<span style="color:#3f7f7f"><jar</span> <span style="color:#7f007f">destfile</span>=<span style="color:#2a00ff">"target/spring-boot-sample-actuator-${spring-boot.version}.jar"</span> <span style="color:#7f007f">compress</span>=<span style="color:#2a00ff">"false"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"target/classes"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><fileset</span> <span style="color:#7f007f">dir</span>=<span style="color:#2a00ff">"src/main/resources"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><zipfileset</span> <span style="color:#7f007f">src</span>=<span style="color:#2a00ff">"lib/loader/spring-boot-loader-jar-${spring-boot.version}.jar"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><manifest></span>
<span style="color:#3f7f7f"><attribute</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"Main-Class"</span> <span style="color:#7f007f">value</span>=<span style="color:#2a00ff">"org.springframework.boot.loader.JarLauncher"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"><attribute</span> <span style="color:#7f007f">name</span>=<span style="color:#2a00ff">"Start-Class"</span> <span style="color:#7f007f">value</span>=<span style="color:#2a00ff">"${start-class}"</span><span style="color:#3f7f7f"> /></span>
<span style="color:#3f7f7f"></manifest></span>
<span style="color:#3f7f7f"></jar></span>
<span style="color:#3f7f7f"></target></span></span></span>
The Actuator Sample has a build.xml
that should work if you run it with
<span style="color:#333333"><span style="color:#000000">$ ant -lib <folder containing ivy-2.2.jar></span></span>
after which you can run the application with
<span style="color:#333333"><span style="color:#000000">$ java -jar target/*.jar</span></span>
79.9 How to use Java 6
If you want to use Spring Boot with Java 6 there are a small number of configuration changes that you will have to make. The exact changes depend on your application’s functionality.
79.9.1 Embedded servlet container compatibility
If you are using one of Boot’s embedded Servlet containers you will have to use a Java 6-compatible container. Both Tomcat 7 and Jetty 8 are Java 6 compatible. See Section 70.15, “Use Tomcat 7” and Section 70.16, “Use Jetty 8” for details.
79.9.2 JTA API compatibility
While the Java Transaction API itself doesn’t require Java 7 the official API jar contains classes that have been built to require Java 7. If you are using JTA then you will need to replace the official JTA 1.2 API jar with one that has been built to work on Java 6. To do so, exclude any transitive dependencies onjavax.transaction:javax.transaction-api
and replace them with a dependency onorg.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.0.Final
80. Traditional deployment
80.1 Create a deployable war file
The first step in producing a deployable war file is to provide a SpringBootServletInitializer
subclass and override its configure
method. This makes use of Spring Framework’s Servlet 3.0 support and allows you to configure your application when it’s launched by the servlet container. Typically, you update your application’s main class to extend SpringBootServletInitializer
:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@SpringBootApplication</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Application <span style="color:#7f0055"><strong>extends</strong></span> SpringBootServletInitializer {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>protected</strong></span> SpringApplicationBuilder configure(SpringApplicationBuilder application) {
<span style="color:#7f0055"><strong>return</strong></span> application.sources(Application.<span style="color:#7f0055"><strong>class</strong></span>);
}
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) <span style="color:#7f0055"><strong>throws</strong></span> Exception {
SpringApplication.run(Application.<span style="color:#7f0055"><strong>class</strong></span>, args);
}
}</span></span>
The next step is to update your build configuration so that your project produces a war file rather than a jar file. If you’re using Maven and using spring-boot-starter-parent
(which configures Maven’s war plugin for you) all you need to do is modify pom.xml
to change the packaging to war:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><packaging></span>war<span style="color:#3f7f7f"></packaging></span></span></span>
If you’re using Gradle, you need to modify build.gradle
to apply the war plugin to the project:
<span style="color:#333333"><span style="color:#000000">apply plugin: <span style="color:#2a00ff">'war'</span></span></span>
The final step in the process is to ensure that the embedded servlet container doesn’t 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 you’re using Maven:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependencies></span>
<span style="color:#3f5f5f"><em><!-- … --></em></span>
<span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-starter-tomcat<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><scope></span>provided<span style="color:#3f7f7f"></scope></span>
<span style="color:#3f7f7f"></dependency></span>
<span style="color:#3f5f5f"><em><!-- … --></em></span>
<span style="color:#3f7f7f"></dependencies></span></span></span>
And if you’re using Gradle:
<span style="color:#333333"><span style="color:#000000">dependencies {
<span style="color:#3f5f5f"><em>// …</em></span>
providedRuntime <span style="color:#2a00ff">'org.springframework.boot:spring-boot-starter-tomcat'</span>
<span style="color:#3f5f5f"><em>// …</em></span>
}</span></span>
If you’re 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 lib-provided
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.
Take a look at Spring Boot’s sample applications for a Maven-based example of the above-described configuration. |
80.2 Create a deployable war file for older servlet containers
Older Servlet containers don’t have support for the ServletContextInitializer
bootstrap process used in Servlet 3.0. You can still use Spring and Spring Boot in these containers but you are going to need to add a web.xml
to your application and configure it to load an ApplicationContext
via a DispatcherServlet
.
80.3 Convert an existing application to Spring Boot
For a non-web application it should be easy (throw away the code that creates your ApplicationContext
and replace it with calls to SpringApplication
orSpringApplicationBuilder
). Spring MVC web applications are generally amenable to first creating a deployable war application, and then migrating it later to an executable war and/or jar. Useful reading is in the Getting Started Guide on Converting a jar to a war.
Create a deployable war by extending SpringBootServletInitializer
(e.g. in a class called Application
), and add the Spring Boot @EnableAutoConfiguration
annotation. Example:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@Configuration</span></em>
<em><span style="color:gray">@EnableAutoConfiguration</span></em>
<em><span style="color:gray">@ComponentScan</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Application <span style="color:#7f0055"><strong>extends</strong></span> SpringBootServletInitializer {
<em><span style="color:gray">@Override</span></em>
<span style="color:#7f0055"><strong>protected</strong></span> SpringApplicationBuilder configure(SpringApplicationBuilder application) {
<span style="color:#3f5f5f"><em>// Customize the application or call application.sources(...) to add sources</em></span>
<span style="color:#3f5f5f"><em>// Since our example is itself a @Configuration class we actually don't</em></span>
<span style="color:#3f5f5f"><em>// need to override this method.</em></span>
<span style="color:#7f0055"><strong>return</strong></span> application;
}
}</span></span>
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 typeServlet
orServletRegistrationBean
installs that bean in the container as if it was a<servlet/>
and<servlet-mapping/>
inweb.xml
. - A
@Bean
of typeFilter
orFilterRegistrationBean
behaves similarly (like a<filter/>
and<filter-mapping/>
. - An
ApplicationContext
in an XML file can be added to an@Import
in yourApplication
. Or simple cases where annotation configuration is heavily used already can be recreated in a few lines as@Bean
definitions.
Once the war is working we make it executable by adding a main
method to our Application
, e.g.
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>void</strong></span> main(String[] args) {
SpringApplication.run(Application.<span style="color:#7f0055"><strong>class</strong></span>, args);
}</span></span>
Applications can fall into more than one category:
- Servlet 3.0+ applications with no
web.xml
. - Applications with a
web.xml
. - Applications with a context hierarchy.
- Applications without a context hierarchy.
All of these should be amenable to translation, but each might require slightly different tricks.
Servlet 3.0+ applications might translate pretty easily if they already use the Spring Servlet 3.0+ initializer support classes. Normally all the code from an existing WebApplicationInitializer
can be moved into a SpringBootServletInitializer
. If your existing application has more than one ApplicationContext
(e.g. if it uses AbstractDispatcherServletInitializer
) then you might be able to squash all your context sources into a single SpringApplication
. The main complication you might encounter is if that doesn’t work and you need to maintain the context hierarchy. See the entry on building a hierarchy for examples. An existing parent context that contains web-specific features will usually need to be broken up so that all the ServletContextAware
components are in the child context.
Applications that are not already Spring applications might be convertible to a Spring Boot application, and the guidance above might help, but your mileage may vary.
80.4 Deploying a WAR to WebLogic
To deploy a Spring Boot application to WebLogic you must ensure that your servlet initializer directly implements WebApplicationInitializer
(even if you extend from a base class that already implements it).
A typical initializer for WebLogic would be something like this:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.autoconfigure.SpringBootApplication;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.boot.context.web.SpringBootServletInitializer;
<span style="color:#7f0055"><strong>import</strong></span> org.springframework.web.WebApplicationInitializer;
<em><span style="color:gray">@SpringBootApplication</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> MyApplication <span style="color:#7f0055"><strong>extends</strong></span> SpringBootServletInitializer <span style="color:#7f0055"><strong>implements</strong></span> WebApplicationInitializer {
}</span></span>
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:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><wls:weblogic-web-app</span>
<span style="color:#7f007f">xmlns:wls</span>=<span style="color:#2a00ff">"http://xmlns.oracle.com/weblogic/weblogic-web-app"</span>
<span style="color:#7f007f">xmlns:xsi</span>=<span style="color:#2a00ff">"http://www.w3.org/2001/XMLSchema-instance"</span>
<span style="color:#7f007f">xsi:schemaLocation</span>=<span style="color:#2a00ff">"http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/ejb-jar_3_0.xsd
http://xmlns.oracle.com/weblogic/weblogic-web-app
http://xmlns.oracle.com/weblogic/weblogic-web-app/1.4/weblogic-web-app.xsd"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><wls:container-descriptor></span>
<span style="color:#3f7f7f"><wls:prefer-application-packages></span>
<span style="color:#3f7f7f"><wls:package-name></span>org.slf4j<span style="color:#3f7f7f"></wls:package-name></span>
<span style="color:#3f7f7f"></wls:prefer-application-packages></span>
<span style="color:#3f7f7f"></wls:container-descriptor></span>
<span style="color:#3f7f7f"></wls:weblogic-web-app></span></span></span>
80.5 Deploying a WAR in an Old (Servlet 2.5) Container
Spring Boot uses Servlet 3.0 APIs to initialize the ServletContext
(register Servlets
etc.) so you can’t use the same application out of the box in a Servlet 2.5 container. It is however possible to run a Spring Boot application on an older container with some special tools. If you include org.springframework.boot:spring-boot-legacy
as a dependency (maintained separately to the core of Spring Boot and currently available at 1.0.0.RELEASE), all you should need to do is create a web.xml
and declare a context listener to create the application context and your filters and servlets. The context listener is a special purpose one for Spring Boot, but the rest of it is normal for a Spring application in Servlet 2.5. Example:
<span style="color:#333333"><span style="color:#000000"><span style="color:maroon"><?xml version="1.0" encoding="UTF-8"?></span>
<span style="color:#3f7f7f"><web-app</span> <span style="color:#7f007f">version</span>=<span style="color:#2a00ff">"2.5"</span> <span style="color:#7f007f">xmlns</span>=<span style="color:#2a00ff">"http://java.sun.com/xml/ns/javaee"</span>
<span style="color:#7f007f">xmlns:xsi</span>=<span style="color:#2a00ff">"http://www.w3.org/2001/XMLSchema-instance"</span>
<span style="color:#7f007f">xsi:schemaLocation</span>=<span style="color:#2a00ff">"http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"</span><span style="color:#3f7f7f">></span>
<span style="color:#3f7f7f"><context-param></span>
<span style="color:#3f7f7f"><param-name></span>contextConfigLocation<span style="color:#3f7f7f"></param-name></span>
<span style="color:#3f7f7f"><param-value></span>demo.Application<span style="color:#3f7f7f"></param-value></span>
<span style="color:#3f7f7f"></context-param></span>
<span style="color:#3f7f7f"><listener></span>
<span style="color:#3f7f7f"><listener-class></span>org.springframework.boot.legacy.context.web.SpringBootContextLoaderListener<span style="color:#3f7f7f"></listener-class></span>
<span style="color:#3f7f7f"></listener></span>
<span style="color:#3f7f7f"><filter></span>
<span style="color:#3f7f7f"><filter-name></span>metricFilter<span style="color:#3f7f7f"></filter-name></span>
<span style="color:#3f7f7f"><filter-class></span>org.springframework.web.filter.DelegatingFilterProxy<span style="color:#3f7f7f"></filter-class></span>
<span style="color:#3f7f7f"></filter></span>
<span style="color:#3f7f7f"><filter-mapping></span>
<span style="color:#3f7f7f"><filter-name></span>metricFilter<span style="color:#3f7f7f"></filter-name></span>
<span style="color:#3f7f7f"><url-pattern></span>/*<span style="color:#3f7f7f"></url-pattern></span>
<span style="color:#3f7f7f"></filter-mapping></span>
<span style="color:#3f7f7f"><servlet></span>
<span style="color:#3f7f7f"><servlet-name></span>appServlet<span style="color:#3f7f7f"></servlet-name></span>
<span style="color:#3f7f7f"><servlet-class></span>org.springframework.web.servlet.DispatcherServlet<span style="color:#3f7f7f"></servlet-class></span>
<span style="color:#3f7f7f"><init-param></span>
<span style="color:#3f7f7f"><param-name></span>contextAttribute<span style="color:#3f7f7f"></param-name></span>
<span style="color:#3f7f7f"><param-value></span>org.springframework.web.context.WebApplicationContext.ROOT<span style="color:#3f7f7f"></param-value></span>
<span style="color:#3f7f7f"></init-param></span>
<span style="color:#3f7f7f"><load-on-startup></span>1<span style="color:#3f7f7f"></load-on-startup></span>
<span style="color:#3f7f7f"></servlet></span>
<span style="color:#3f7f7f"><servlet-mapping></span>
<span style="color:#3f7f7f"><servlet-name></span>appServlet<span style="color:#3f7f7f"></servlet-name></span>
<span style="color:#3f7f7f"><url-pattern></span>/<span style="color:#3f7f7f"></url-pattern></span>
<span style="color:#3f7f7f"></servlet-mapping></span>
<span style="color:#3f7f7f"></web-app></span></span></span>
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).
Part X. Appendices
Appendix A. Common application properties
Various properties can be specified inside your application.properties
/application.yml
file or as command line switches. This section provides a list common Spring Boot properties and references to the underlying classes that consume them.
Property contributions can come from additional jar files on your classpath so you should not consider this an exhaustive list. It is also perfectly legit to define your own properties. |
This sample file is meant as a guide only. Do not copy/paste the entire content into your application; rather pick only the properties that you need. |
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f5f5f"><em># ===================================================================</em></span>
<span style="color:#3f5f5f"><em># COMMON SPRING BOOT PROPERTIES</em></span>
<span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#3f5f5f"><em># This sample file is provided as a guideline. Do NOT copy it in its</em></span>
<span style="color:#3f5f5f"><em># entirety to your own application. ^^^</em></span>
<span style="color:#3f5f5f"><em># ===================================================================</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># CORE PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># BANNER</em></span>
<span style="color:#7f007f">banner.charset</span>=UTF-8 <span style="color:#3f5f5f"><em># Banner file encoding.</em></span>
<span style="color:#7f007f">banner.location</span>=classpath:banner.txt <span style="color:#3f5f5f"><em># Banner file location.</em></span>
<span style="color:#3f5f5f"><em># LOGGING</em></span>
<span style="color:#7f007f">logging.config</span>= <span style="color:#3f5f5f"><em># Location of the logging configuration file. For instance `classpath:logback.xml` for Logback</em></span>
<span style="color:#7f007f">logging.exception-conversion-word</span>=%wEx <span style="color:#3f5f5f"><em># Conversion word used when logging exceptions.</em></span>
<span style="color:#7f007f">logging.file</span>= <span style="color:#3f5f5f"><em># Log file name. For instance `myapp.log`</em></span>
<span style="color:#7f007f">logging.level.*</span>= <span style="color:#3f5f5f"><em># Log levels severity mapping. For instance `logging.level.org.springframework=DEBUG`</em></span>
<span style="color:#7f007f">logging.path</span>= <span style="color:#3f5f5f"><em># Location of the log file. For instance `/var/log`</em></span>
<span style="color:#7f007f">logging.pattern.console</span>= <span style="color:#3f5f5f"><em># Appender pattern for output to the console. Only supported with the default logback setup.</em></span>
<span style="color:#7f007f">logging.pattern.file</span>= <span style="color:#3f5f5f"><em># Appender pattern for output to the file. Only supported with the default logback setup.</em></span>
<span style="color:#7f007f">logging.pattern.level</span>= <span style="color:#3f5f5f"><em># Appender pattern for log level (default %5p). Only supported with the default logback setup.</em></span>
<span style="color:#7f007f">logging.register-shutdown-hook</span>=false <span style="color:#3f5f5f"><em># Register a shutdown hook for the logging system when it is initialized.</em></span>
<span style="color:#3f5f5f"><em># AOP</em></span>
<span style="color:#7f007f">spring.aop.auto</span>=true <span style="color:#3f5f5f"><em># Add @EnableAspectJAutoProxy.</em></span>
<span style="color:#7f007f">spring.aop.proxy-target-class</span>=false <span style="color:#3f5f5f"><em># Whether subclass-based (CGLIB) proxies are to be created (true) as opposed to standard Java interface-based proxies (false).</em></span>
<span style="color:#3f5f5f"><em># IDENTITY (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/context/ContextIdApplicationContextInitializer.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/context/ContextIdApplicationContextInitializer.java" class="link">ContextIdApplicationContextInitializer</a>)
<span style="color:#7f007f">spring.application.index</span>= <span style="color:#3f5f5f"><em># Application index.</em></span>
<span style="color:#7f007f">spring.application.name</span>= <span style="color:#3f5f5f"><em># Application name.</em></span>
<span style="color:#3f5f5f"><em># ADMIN (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/admin/SpringApplicationAdminJmxAutoConfiguration.java" class="link">SpringApplicationAdminJmxAutoConfiguration</a>)
<span style="color:#7f007f">spring.application.admin.enabled</span>=false <span style="color:#3f5f5f"><em># Enable admin features for the application.</em></span>
<span style="color:#7f007f">spring.application.admin.jmx-name</span>=org.springframework.boot:type=Admin,name=SpringApplication <span style="color:#3f5f5f"><em># JMX name of the application admin MBean.</em></span>
<span style="color:#3f5f5f"><em># AUTO-CONFIGURATION</em></span>
<span style="color:#7f007f">spring.autoconfigure.exclude</span>= <span style="color:#3f5f5f"><em># Auto-configuration classes to exclude.</em></span>
<span style="color:#3f5f5f"><em># SPRING CORE</em></span>
<span style="color:#7f007f">spring.beaninfo.ignore</span>=true <span style="color:#3f5f5f"><em># Skip search of BeanInfo classes.</em></span>
<span style="color:#3f5f5f"><em># SPRING CACHE (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheProperties.java" class="link">CacheProperties</a>)
<span style="color:#7f007f">spring.cache.cache-names</span>= <span style="color:#3f5f5f"><em># Comma-separated list of cache names to create if supported by the underlying cache manager.</em></span>
<span style="color:#7f007f">spring.cache.ehcache.config</span>= <span style="color:#3f5f5f"><em># The location of the configuration file to use to initialize EhCache.</em></span>
<span style="color:#7f007f">spring.cache.guava.spec</span>= <span style="color:#3f5f5f"><em># The spec to use to create caches. Check CacheBuilderSpec for more details on the spec format.</em></span>
<span style="color:#7f007f">spring.cache.hazelcast.config</span>= <span style="color:#3f5f5f"><em># The location of the configuration file to use to initialize Hazelcast.</em></span>
<span style="color:#7f007f">spring.cache.infinispan.config</span>= <span style="color:#3f5f5f"><em># The location of the configuration file to use to initialize Infinispan.</em></span>
<span style="color:#7f007f">spring.cache.jcache.config</span>= <span style="color:#3f5f5f"><em># The location of the configuration file to use to initialize the cache manager.</em></span>
<span style="color:#7f007f">spring.cache.jcache.provider</span>= <span style="color:#3f5f5f"><em># Fully qualified name of the CachingProvider implementation to use to retrieve the JSR-107 compliant cache manager. Only needed if more than one JSR-107 implementation is available on the classpath.</em></span>
<span style="color:#7f007f">spring.cache.type</span>= <span style="color:#3f5f5f"><em># Cache type, auto-detected according to the environment by default.</em></span>
<span style="color:#3f5f5f"><em># SPRING CONFIG - using environment property only (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigFileApplicationListener.java" class="link">ConfigFileApplicationListener</a>)
<span style="color:#7f007f">spring.config.location</span>= <span style="color:#3f5f5f"><em># Config file locations.</em></span>
<span style="color:#7f007f">spring.config.name</span>=application <span style="color:#3f5f5f"><em># Config file name.</em></span>
<span style="color:#3f5f5f"><em># HAZELCAST (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/hazelcast/HazelcastProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/hazelcast/HazelcastProperties.java" class="link">HazelcastProperties</a>)
<span style="color:#7f007f">spring.hazelcast.config</span>= <span style="color:#3f5f5f"><em># The location of the configuration file to use to initialize Hazelcast.</em></span>
<span style="color:#3f5f5f"><em># JMX</em></span>
<span style="color:#7f007f">spring.jmx.default-domain</span>= <span style="color:#3f5f5f"><em># JMX domain name.</em></span>
<span style="color:#7f007f">spring.jmx.enabled</span>=true <span style="color:#3f5f5f"><em># Expose management beans to the JMX domain.</em></span>
<span style="color:#7f007f">spring.jmx.server</span>=mbeanServer <span style="color:#3f5f5f"><em># MBeanServer bean name.</em></span>
<span style="color:#3f5f5f"><em># Email (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mail/MailProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mail/MailProperties.java" class="link">MailProperties</a>)
<span style="color:#7f007f">spring.mail.default-encoding</span>=UTF-8 <span style="color:#3f5f5f"><em># Default MimeMessage encoding.</em></span>
<span style="color:#7f007f">spring.mail.host</span>= <span style="color:#3f5f5f"><em># SMTP server host. For instance `smtp.example.com`</em></span>
<span style="color:#7f007f">spring.mail.jndi-name</span>= <span style="color:#3f5f5f"><em># Session JNDI name. When set, takes precedence to others mail settings.</em></span>
<span style="color:#7f007f">spring.mail.password</span>= <span style="color:#3f5f5f"><em># Login password of the SMTP server.</em></span>
<span style="color:#7f007f">spring.mail.port</span>= <span style="color:#3f5f5f"><em># SMTP server port.</em></span>
<span style="color:#7f007f">spring.mail.properties.*</span>= <span style="color:#3f5f5f"><em># Additional JavaMail session properties.</em></span>
<span style="color:#7f007f">spring.mail.protocol</span>=smtp <span style="color:#3f5f5f"><em># Protocol used by the SMTP server.</em></span>
<span style="color:#7f007f">spring.mail.test-connection</span>=false <span style="color:#3f5f5f"><em># Test that the mail server is available on startup.</em></span>
<span style="color:#7f007f">spring.mail.username</span>= <span style="color:#3f5f5f"><em># Login user of the SMTP server.</em></span>
<span style="color:#3f5f5f"><em># APPLICATION SETTINGS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java" class="link">SpringApplication</a>)
<span style="color:#7f007f">spring.main.banner-mode</span>=console <span style="color:#3f5f5f"><em># Mode used to display the banner when the application runs.</em></span>
<span style="color:#7f007f">spring.main.sources</span>= <span style="color:#3f5f5f"><em># Sources (class name, package name or XML resource location) to include in the ApplicationContext.</em></span>
<span style="color:#7f007f">spring.main.web-environment</span>= <span style="color:#3f5f5f"><em># Run the application in a web environment (auto-detected by default).</em></span>
<span style="color:#3f5f5f"><em># FILE ENCODING (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/context/FileEncodingApplicationListener.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot/src/main/java/org/springframework/boot/context/FileEncodingApplicationListener.java" class="link">FileEncodingApplicationListener</a>)
<span style="color:#7f007f">spring.mandatory-file-encoding</span>= <span style="color:#3f5f5f"><em># Expected character encoding the application must use.</em></span>
<span style="color:#3f5f5f"><em># INTERNATIONALIZATION (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/MessageSourceAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/MessageSourceAutoConfiguration.java" class="link">MessageSourceAutoConfiguration</a>)
<span style="color:#7f007f">spring.messages.basename</span>=messages <span style="color:#3f5f5f"><em># Comma-separated list of basenames, each following the ResourceBundle convention.</em></span>
<span style="color:#7f007f">spring.messages.cache-seconds</span>=-1 <span style="color:#3f5f5f"><em># Loaded resource bundle files cache expiration, in seconds. When set to -1, bundles are cached forever.</em></span>
<span style="color:#7f007f">spring.messages.encoding</span>=UTF-8 <span style="color:#3f5f5f"><em># Message bundles encoding.</em></span>
<span style="color:#7f007f">spring.messages.fallback-to-system-locale</span>=true <span style="color:#3f5f5f"><em># Set whether to fall back to the system Locale if no files for a specific Locale have been found.</em></span>
<span style="color:#3f5f5f"><em># OUTPUT</em></span>
<span style="color:#7f007f">spring.output.ansi.enabled</span>=detect <span style="color:#3f5f5f"><em># Configure the ANSI output (can be "detect", "always", "never").</em></span>
<span style="color:#3f5f5f"><em># PID FILE (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/ApplicationPidFileWriter.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/ApplicationPidFileWriter.java" class="link">ApplicationPidFileWriter</a>)
<span style="color:#7f007f">spring.pid.fail-on-write-error</span>= <span style="color:#3f5f5f"><em># Fail if ApplicationPidFileWriter is used but it cannot write the PID file.</em></span>
<span style="color:#7f007f">spring.pid.file</span>= <span style="color:#3f5f5f"><em># Location of the PID file to write (if ApplicationPidFileWriter is used).</em></span>
<span style="color:#3f5f5f"><em># PROFILES</em></span>
<span style="color:#7f007f">spring.profiles.active</span>= <span style="color:#3f5f5f"><em># Comma-separated list of </em></span><a data-cke-saved-href="https://docs.spring.io/spring-boot/docs/1.3.7.RELEASE/reference/htmlsingle/#howto-set-active-spring-profiles" href="https://docs.spring.io/spring-boot/docs/1.3.7.RELEASE/reference/htmlsingle/#howto-set-active-spring-profiles" class="link">active profiles</a>.
<span style="color:#7f007f">spring.profiles.include</span>= <span style="color:#3f5f5f"><em># Unconditionally activate the specified comma separated profiles.</em></span>
<span style="color:#3f5f5f"><em># SENDGRID (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/sendgrid/SendGridAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/sendgrid/SendGridAutoConfiguration.java" class="link">SendGridAutoConfiguration</a>)
<span style="color:#7f007f">spring.sendgrid.username</span>= <span style="color:#3f5f5f"><em># SendGrid account username</em></span>
<span style="color:#7f007f">spring.sendgrid.password</span>= <span style="color:#3f5f5f"><em># SendGrid account password</em></span>
<span style="color:#7f007f">spring.sendgrid.proxy.host</span>= <span style="color:#3f5f5f"><em># SendGrid proxy host</em></span>
<span style="color:#7f007f">spring.sendgrid.proxy.port</span>= <span style="color:#3f5f5f"><em># SendGrid proxy port</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># WEB PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># MULTIPART (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/MultipartProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/MultipartProperties.java" class="link">MultipartProperties</a>)
<span style="color:#7f007f">multipart.enabled</span>=true <span style="color:#3f5f5f"><em># Enable support of multi-part uploads.</em></span>
<span style="color:#7f007f">multipart.file-size-threshold</span>=0 <span style="color:#3f5f5f"><em># Threshold after which files will be written to disk. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.</em></span>
<span style="color:#7f007f">multipart.location</span>= <span style="color:#3f5f5f"><em># Intermediate location of uploaded files.</em></span>
<span style="color:#7f007f">multipart.max-file-size</span>=1Mb <span style="color:#3f5f5f"><em># Max file size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.</em></span>
<span style="color:#7f007f">multipart.max-request-size</span>=10Mb <span style="color:#3f5f5f"><em># Max request size. Values can use the suffixed "MB" or "KB" to indicate a Megabyte or Kilobyte size.</em></span>
<span style="color:#3f5f5f"><em># EMBEDDED SERVER CONFIGURATION (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ServerProperties.java" class="link">ServerProperties</a>)
<span style="color:#7f007f">server.address</span>= <span style="color:#3f5f5f"><em># Network address to which the server should bind to.</em></span>
<span style="color:#7f007f">server.compression.enabled</span>=false <span style="color:#3f5f5f"><em># If response compression is enabled.</em></span>
<span style="color:#7f007f">server.compression.excluded-user-agents</span>= <span style="color:#3f5f5f"><em># List of user-agents to exclude from compression.</em></span>
<span style="color:#7f007f">server.compression.mime-types</span>= <span style="color:#3f5f5f"><em># Comma-separated list of MIME types that should be compressed. For instance `text/html,text/css,application/json`</em></span>
<span style="color:#7f007f">server.compression.min-response-size</span>= <span style="color:#3f5f5f"><em># Minimum response size that is required for compression to be performed. For instance 2048</em></span>
<span style="color:#7f007f">server.context-parameters.*</span>= <span style="color:#3f5f5f"><em># Servlet context init parameters. For instance `server.context-parameters.a=alpha`</em></span>
<span style="color:#7f007f">server.context-path</span>= <span style="color:#3f5f5f"><em># Context path of the application.</em></span>
<span style="color:#7f007f">server.display-name</span>=application <span style="color:#3f5f5f"><em># Display name of the application.</em></span>
<span style="color:#7f007f">server.error.include-stacktrace</span>=never <span style="color:#3f5f5f"><em># When to include a "stacktrace" attribute.</em></span>
<span style="color:#7f007f">server.error.path</span>=/error <span style="color:#3f5f5f"><em># Path of the error controller.</em></span>
<span style="color:#7f007f">server.error.whitelabel.enabled</span>=true <span style="color:#3f5f5f"><em># Enable the default error page displayed in browsers in case of a server error.</em></span>
<span style="color:#7f007f">server.jsp-servlet.class-name</span>=org.apache.jasper.servlet.JspServlet <span style="color:#3f5f5f"><em># The class name of the JSP servlet.</em></span>
<span style="color:#7f007f">server.jsp-servlet.init-parameters.*</span>= <span style="color:#3f5f5f"><em># Init parameters used to configure the JSP servlet</em></span>
<span style="color:#7f007f">server.jsp-servlet.registered</span>=true <span style="color:#3f5f5f"><em># Whether or not the JSP servlet is registered</em></span>
<span style="color:#7f007f">server.port</span>=8080 <span style="color:#3f5f5f"><em># Server HTTP port.</em></span>
<span style="color:#7f007f">server.server-header</span>= <span style="color:#3f5f5f"><em># The value sent in the server response header (uses servlet container default if empty)</em></span>
<span style="color:#7f007f">server.servlet-path</span>=/ <span style="color:#3f5f5f"><em># Path of the main dispatcher servlet.</em></span>
<span style="color:#7f007f">server.session.cookie.comment</span>= <span style="color:#3f5f5f"><em># Comment for the session cookie.</em></span>
<span style="color:#7f007f">server.session.cookie.domain</span>= <span style="color:#3f5f5f"><em># Domain for the session cookie.</em></span>
<span style="color:#7f007f">server.session.cookie.http-only</span>= <span style="color:#3f5f5f"><em># "HttpOnly" flag for the session cookie.</em></span>
<span style="color:#7f007f">server.session.cookie.max-age</span>= <span style="color:#3f5f5f"><em># Maximum age of the session cookie in seconds.</em></span>
<span style="color:#7f007f">server.session.cookie.name</span>= <span style="color:#3f5f5f"><em># Session cookie name.</em></span>
<span style="color:#7f007f">server.session.cookie.path</span>= <span style="color:#3f5f5f"><em># Path of the session cookie.</em></span>
<span style="color:#7f007f">server.session.cookie.secure</span>= <span style="color:#3f5f5f"><em># "Secure" flag for the session cookie.</em></span>
<span style="color:#7f007f">server.session.persistent</span>=false <span style="color:#3f5f5f"><em># Persist session data between restarts.</em></span>
<span style="color:#7f007f">server.session.store-dir</span>= <span style="color:#3f5f5f"><em># Directory used to store session data.</em></span>
<span style="color:#7f007f">server.session.timeout</span>= <span style="color:#3f5f5f"><em># Session timeout in seconds.</em></span>
<span style="color:#7f007f">server.session.tracking-modes</span>= <span style="color:#3f5f5f"><em># Session tracking modes (one or more of the following: "cookie", "url", "ssl").</em></span>
<span style="color:#7f007f">server.ssl.ciphers</span>= <span style="color:#3f5f5f"><em># Supported SSL ciphers.</em></span>
<span style="color:#7f007f">server.ssl.client-auth</span>= <span style="color:#3f5f5f"><em># Whether client authentication is wanted ("want") or needed ("need"). Requires a trust store.</em></span>
<span style="color:#7f007f">server.ssl.enabled</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.key-alias</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.key-password</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.key-store</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.key-store-password</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.key-store-provider</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.key-store-type</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.protocol</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.trust-store</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.trust-store-password</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.trust-store-provider</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.ssl.trust-store-type</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">server.tomcat.accesslog.directory</span>=logs <span style="color:#3f5f5f"><em># Directory in which log files are created. Can be relative to the tomcat base dir or absolute.</em></span>
<span style="color:#7f007f">server.tomcat.accesslog.enabled</span>=false <span style="color:#3f5f5f"><em># Enable access log.</em></span>
<span style="color:#7f007f">server.tomcat.accesslog.pattern</span>=common <span style="color:#3f5f5f"><em># Format pattern for access logs.</em></span>
<span style="color:#7f007f">server.tomcat.accesslog.prefix</span>=access_log <span style="color:#3f5f5f"><em># Log file name prefix.</em></span>
<span style="color:#7f007f">server.tomcat.accesslog.suffix</span>=.log <span style="color:#3f5f5f"><em># Log file name suffix.</em></span>
<span style="color:#7f007f">server.tomcat.background-processor-delay</span>=30 <span style="color:#3f5f5f"><em># Delay in seconds between the invocation of backgroundProcess methods.</em></span>
<span style="color:#7f007f">server.tomcat.basedir</span>= <span style="color:#3f5f5f"><em># Tomcat base directory. If not specified a temporary directory will be used.</em></span>
<span style="color:#7f007f">server.tomcat.internal-proxies</span>=10\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
192\\.168\\.\\d{1,3}\\.\\d{1,3}|\\
169\\.254\\.\\d{1,3}\\.\\d{1,3}|\\
127\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.1[6-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.2[0-9]{1}\\.\\d{1,3}\\.\\d{1,3}|\\
172\\.3[0-1]{1}\\.\\d{1,3}\\.\\d{1,3} <span style="color:#3f5f5f"><em># regular expression matching trusted IP addresses.</em></span>
<span style="color:#7f007f">server.tomcat.max-http-header-size</span>=0 <span style="color:#3f5f5f"><em># Maximum size in bytes of the HTTP message header.</em></span>
<span style="color:#7f007f">server.tomcat.max-threads</span>=0 <span style="color:#3f5f5f"><em># Maximum amount of worker threads.</em></span>
<span style="color:#7f007f">server.tomcat.port-header</span>=X-Forwarded-Port <span style="color:#3f5f5f"><em># Name of the HTTP header used to override the original port value.</em></span>
<span style="color:#7f007f">server.tomcat.protocol-header</span>= <span style="color:#3f5f5f"><em># Header that holds the incoming protocol, usually named "X-Forwarded-Proto".</em></span>
<span style="color:#7f007f">server.tomcat.protocol-header-https-value</span>=https <span style="color:#3f5f5f"><em># Value of the protocol header that indicates that the incoming request uses SSL.</em></span>
<span style="color:#7f007f">server.tomcat.remote-ip-header</span>= <span style="color:#3f5f5f"><em># Name of the http header from which the remote ip is extracted. For instance `X-FORWARDED-FOR`</em></span>
<span style="color:#7f007f">server.tomcat.uri-encoding</span>=UTF-8 <span style="color:#3f5f5f"><em># Character encoding to use to decode the URI.</em></span>
<span style="color:#7f007f">server.undertow.accesslog.dir</span>= <span style="color:#3f5f5f"><em># Undertow access log directory.</em></span>
<span style="color:#7f007f">server.undertow.accesslog.enabled</span>=false <span style="color:#3f5f5f"><em># Enable access log.</em></span>
<span style="color:#7f007f">server.undertow.accesslog.pattern</span>=common <span style="color:#3f5f5f"><em># Format pattern for access logs.</em></span>
<span style="color:#7f007f">server.undertow.buffer-size</span>= <span style="color:#3f5f5f"><em># Size of each buffer in bytes.</em></span>
<span style="color:#7f007f">server.undertow.buffers-per-region</span>= <span style="color:#3f5f5f"><em># Number of buffer per region.</em></span>
<span style="color:#7f007f">server.undertow.direct-buffers</span>= <span style="color:#3f5f5f"><em># Allocate buffers outside the Java heap.</em></span>
<span style="color:#7f007f">server.undertow.io-threads</span>= <span style="color:#3f5f5f"><em># Number of I/O threads to create for the worker.</em></span>
<span style="color:#7f007f">server.undertow.worker-threads</span>= <span style="color:#3f5f5f"><em># Number of worker threads.</em></span>
<span style="color:#7f007f">server.use-forward-headers</span>= <span style="color:#3f5f5f"><em># If X-Forwarded-* headers should be applied to the HttpRequest.</em></span>
<span style="color:#3f5f5f"><em># FREEMARKER (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/freemarker/FreeMarkerAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/freemarker/FreeMarkerAutoConfiguration.java" class="link">FreeMarkerAutoConfiguration</a>)
<span style="color:#7f007f">spring.freemarker.allow-request-override</span>=false <span style="color:#3f5f5f"><em># Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.</em></span>
<span style="color:#7f007f">spring.freemarker.allow-session-override</span>=false <span style="color:#3f5f5f"><em># Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.</em></span>
<span style="color:#7f007f">spring.freemarker.cache</span>=false <span style="color:#3f5f5f"><em># Enable template caching.</em></span>
<span style="color:#7f007f">spring.freemarker.charset</span>=UTF-8 <span style="color:#3f5f5f"><em># Template encoding.</em></span>
<span style="color:#7f007f">spring.freemarker.check-template-location</span>=true <span style="color:#3f5f5f"><em># Check that the templates location exists.</em></span>
<span style="color:#7f007f">spring.freemarker.content-type</span>=text/html <span style="color:#3f5f5f"><em># Content-Type value.</em></span>
<span style="color:#7f007f">spring.freemarker.enabled</span>=true <span style="color:#3f5f5f"><em># Enable MVC view resolution for this technology.</em></span>
<span style="color:#7f007f">spring.freemarker.expose-request-attributes</span>=false <span style="color:#3f5f5f"><em># Set whether all request attributes should be added to the model prior to merging with the template.</em></span>
<span style="color:#7f007f">spring.freemarker.expose-session-attributes</span>=false <span style="color:#3f5f5f"><em># Set whether all HttpSession attributes should be added to the model prior to merging with the template.</em></span>
<span style="color:#7f007f">spring.freemarker.expose-spring-macro-helpers</span>=true <span style="color:#3f5f5f"><em># Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".</em></span>
<span style="color:#7f007f">spring.freemarker.prefer-file-system-access</span>=true <span style="color:#3f5f5f"><em># Prefer file system access for template loading. File system access enables hot detection of template changes.</em></span>
<span style="color:#7f007f">spring.freemarker.prefix</span>= <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.freemarker.request-context-attribute</span>= <span style="color:#3f5f5f"><em># Name of the RequestContext attribute for all views.</em></span>
<span style="color:#7f007f">spring.freemarker.settings.*</span>= <span style="color:#3f5f5f"><em># Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.</em></span>
<span style="color:#7f007f">spring.freemarker.suffix</span>= <span style="color:#3f5f5f"><em># Suffix that gets appended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.freemarker.template-loader-path</span>=classpath:/templates/ <span style="color:#3f5f5f"><em># Comma-separated list of template paths.</em></span>
<span style="color:#7f007f">spring.freemarker.view-names</span>= <span style="color:#3f5f5f"><em># White list of view names that can be resolved.</em></span>
<span style="color:#3f5f5f"><em># GROOVY TEMPLATES (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/groovy/template/GroovyTemplateAutoConfiguration.java" class="link">GroovyTemplateAutoConfiguration</a>)
<span style="color:#7f007f">spring.groovy.template.allow-request-override</span>=false <span style="color:#3f5f5f"><em># Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.</em></span>
<span style="color:#7f007f">spring.groovy.template.allow-session-override</span>=false <span style="color:#3f5f5f"><em># Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.</em></span>
<span style="color:#7f007f">spring.groovy.template.cache</span>= <span style="color:#3f5f5f"><em># Enable template caching.</em></span>
<span style="color:#7f007f">spring.groovy.template.charset</span>=UTF-8 <span style="color:#3f5f5f"><em># Template encoding.</em></span>
<span style="color:#7f007f">spring.groovy.template.check-template-location</span>=true <span style="color:#3f5f5f"><em># Check that the templates location exists.</em></span>
<span style="color:#7f007f">spring.groovy.template.configuration.*</span>= <span style="color:#3f5f5f"><em># See GroovyMarkupConfigurer</em></span>
<span style="color:#7f007f">spring.groovy.template.content-type</span>=test/html <span style="color:#3f5f5f"><em># Content-Type value.</em></span>
<span style="color:#7f007f">spring.groovy.template.enabled</span>=true <span style="color:#3f5f5f"><em># Enable MVC view resolution for this technology.</em></span>
<span style="color:#7f007f">spring.groovy.template.expose-request-attributes</span>=false <span style="color:#3f5f5f"><em># Set whether all request attributes should be added to the model prior to merging with the template.</em></span>
<span style="color:#7f007f">spring.groovy.template.expose-session-attributes</span>=false <span style="color:#3f5f5f"><em># Set whether all HttpSession attributes should be added to the model prior to merging with the template.</em></span>
<span style="color:#7f007f">spring.groovy.template.expose-spring-macro-helpers</span>=true <span style="color:#3f5f5f"><em># Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".</em></span>
<span style="color:#7f007f">spring.groovy.template.prefix</span>= <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.groovy.template.request-context-attribute</span>= <span style="color:#3f5f5f"><em># Name of the RequestContext attribute for all views.</em></span>
<span style="color:#7f007f">spring.groovy.template.resource-loader-path</span>=classpath:/templates/ <span style="color:#3f5f5f"><em># Template path.</em></span>
<span style="color:#7f007f">spring.groovy.template.suffix</span>=.tpl <span style="color:#3f5f5f"><em># Suffix that gets appended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.groovy.template.view-names</span>= <span style="color:#3f5f5f"><em># White list of view names that can be resolved.</em></span>
<span style="color:#3f5f5f"><em># SPRING HATEOAS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/hateoas/HateoasProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/hateoas/HateoasProperties.java" class="link">HateoasProperties</a>)
<span style="color:#7f007f">spring.hateoas.use-hal-as-default-json-media-type</span>=true <span style="color:#3f5f5f"><em># Specify if application/hal+json responses should be sent to requests that accept application/json.</em></span>
<span style="color:#3f5f5f"><em># HTTP message conversion</em></span>
<span style="color:#7f007f">spring.http.converters.preferred-json-mapper</span>=jackson <span style="color:#3f5f5f"><em># Preferred JSON mapper to use for HTTP message conversion. Set to "gson" to force the use of Gson when both it and Jackson are on the classpath.</em></span>
<span style="color:#3f5f5f"><em># HTTP encoding (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/HttpEncodingProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/HttpEncodingProperties.java" class="link">HttpEncodingProperties</a>)
<span style="color:#7f007f">spring.http.encoding.charset</span>=UTF-8 <span style="color:#3f5f5f"><em># Charset of HTTP requests and responses. Added to the "Content-Type" header if not set explicitly.</em></span>
<span style="color:#7f007f">spring.http.encoding.enabled</span>=true <span style="color:#3f5f5f"><em># Enable http encoding support.</em></span>
<span style="color:#7f007f">spring.http.encoding.force</span>=true <span style="color:#3f5f5f"><em># Force the encoding to the configured charset on HTTP requests and responses.</em></span>
<span style="color:#3f5f5f"><em># JACKSON (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonProperties.java" class="link">JacksonProperties</a>)
<span style="color:#7f007f">spring.jackson.date-format</span>= <span style="color:#3f5f5f"><em># Date format string or a fully-qualified date format class name. For instance `yyyy-MM-dd HH:mm:ss`.</em></span>
<span style="color:#7f007f">spring.jackson.deserialization.*</span>= <span style="color:#3f5f5f"><em># Jackson on/off features that affect the way Java objects are deserialized.</em></span>
<span style="color:#7f007f">spring.jackson.generator.*</span>= <span style="color:#3f5f5f"><em># Jackson on/off features for generators.</em></span>
<span style="color:#7f007f">spring.jackson.joda-date-time-format</span>= <span style="color:#3f5f5f"><em># Joda date time format string. If not configured, "date-format" will be used as a fallback if it is configured with a format string.</em></span>
<span style="color:#7f007f">spring.jackson.locale</span>= <span style="color:#3f5f5f"><em># Locale used for formatting.</em></span>
<span style="color:#7f007f">spring.jackson.mapper.*</span>= <span style="color:#3f5f5f"><em># Jackson general purpose on/off features.</em></span>
<span style="color:#7f007f">spring.jackson.parser.*</span>= <span style="color:#3f5f5f"><em># Jackson on/off features for parsers.</em></span>
<span style="color:#7f007f">spring.jackson.property-naming-strategy</span>= <span style="color:#3f5f5f"><em># One of the constants on Jackson's PropertyNamingStrategy. Can also be a fully-qualified class name of a PropertyNamingStrategy subclass.</em></span>
<span style="color:#7f007f">spring.jackson.serialization.*</span>= <span style="color:#3f5f5f"><em># Jackson on/off features that affect the way Java objects are serialized.</em></span>
<span style="color:#7f007f">spring.jackson.serialization-inclusion</span>= <span style="color:#3f5f5f"><em># Controls the inclusion of properties during serialization. Configured with one of the values in Jackson's JsonInclude.Include enumeration.</em></span>
<span style="color:#7f007f">spring.jackson.time-zone</span>= <span style="color:#3f5f5f"><em># Time zone used when formatting dates. For instance `America/Los_Angeles`</em></span>
<span style="color:#3f5f5f"><em># JERSEY (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jersey/JerseyProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jersey/JerseyProperties.java" class="link">JerseyProperties</a>)
<span style="color:#7f007f">spring.jersey.application-path</span>= <span style="color:#3f5f5f"><em># Path that serves as the base URI for the application. Overrides the value of "@ApplicationPath" if specified.</em></span>
<span style="color:#7f007f">spring.jersey.filter.order</span>=0 <span style="color:#3f5f5f"><em># Jersey filter chain order.</em></span>
<span style="color:#7f007f">spring.jersey.init.*</span>= <span style="color:#3f5f5f"><em># Init parameters to pass to Jersey via the servlet or filter.</em></span>
<span style="color:#7f007f">spring.jersey.type</span>=servlet <span style="color:#3f5f5f"><em># Jersey integration type. Can be either "servlet" or "filter".</em></span>
<span style="color:#3f5f5f"><em># SPRING MOBILE DEVICE VIEWS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mobile/DeviceDelegatingViewResolverAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mobile/DeviceDelegatingViewResolverAutoConfiguration.java" class="link">DeviceDelegatingViewResolverAutoConfiguration</a>)
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.enable-fallback</span>=false <span style="color:#3f5f5f"><em># Enable support for fallback resolution.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.enabled</span>=false <span style="color:#3f5f5f"><em># Enable device view resolver.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.mobile-prefix</span>=mobile/ <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names for mobile devices.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.mobile-suffix</span>= <span style="color:#3f5f5f"><em># Suffix that gets appended to view names for mobile devices.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.normal-prefix</span>= <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names for normal devices.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.normal-suffix</span>= <span style="color:#3f5f5f"><em># Suffix that gets appended to view names for normal devices.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.tablet-prefix</span>=tablet/ <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names for tablet devices.</em></span>
<span style="color:#7f007f">spring.mobile.devicedelegatingviewresolver.tablet-suffix</span>= <span style="color:#3f5f5f"><em># Suffix that gets appended to view names for tablet devices.</em></span>
<span style="color:#3f5f5f"><em># SPRING MOBILE SITE PREFERENCE (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mobile/SitePreferenceAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mobile/SitePreferenceAutoConfiguration.java" class="link">SitePreferenceAutoConfiguration</a>)
<span style="color:#7f007f">spring.mobile.sitepreference.enabled</span>=true <span style="color:#3f5f5f"><em># Enable SitePreferenceHandler.</em></span>
<span style="color:#3f5f5f"><em># MUSTACHE TEMPLATES (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mustache/MustacheAutoConfiguration.java" class="link">MustacheAutoConfiguration</a>)
<span style="color:#7f007f">spring.mustache.cache</span>=false <span style="color:#3f5f5f"><em># Enable template caching.</em></span>
<span style="color:#7f007f">spring.mustache.charset</span>=UTF-8 <span style="color:#3f5f5f"><em># Template encoding.</em></span>
<span style="color:#7f007f">spring.mustache.check-template-location</span>=true <span style="color:#3f5f5f"><em># Check that the templates location exists.</em></span>
<span style="color:#7f007f">spring.mustache.content-type</span>=text/html <span style="color:#3f5f5f"><em># Content-Type value.</em></span>
<span style="color:#7f007f">spring.mustache.enabled</span>=true <span style="color:#3f5f5f"><em># Enable MVC view resolution for this technology.</em></span>
<span style="color:#7f007f">spring.mustache.prefix</span>=classpath:/templates/ <span style="color:#3f5f5f"><em># Prefix to apply to template names.</em></span>
<span style="color:#7f007f">spring.mustache.suffix</span>=.html <span style="color:#3f5f5f"><em># Suffix to apply to template names.</em></span>
<span style="color:#7f007f">spring.mustache.view-names</span>= <span style="color:#3f5f5f"><em># White list of view names that can be resolved.</em></span>
<span style="color:#3f5f5f"><em># SPRING MVC (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebMvcProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/WebMvcProperties.java" class="link">WebMvcProperties</a>)
<span style="color:#7f007f">spring.mvc.async.request-timeout</span>= <span style="color:#3f5f5f"><em># Amount of time (in milliseconds) before asynchronous request handling times out.</em></span>
<span style="color:#7f007f">spring.mvc.date-format</span>= <span style="color:#3f5f5f"><em># Date format to use. For instance `dd/MM/yyyy`.</em></span>
<span style="color:#7f007f">spring.mvc.dispatch-trace-request</span>=false <span style="color:#3f5f5f"><em># Dispatch TRACE requests to the FrameworkServlet doService method.</em></span>
<span style="color:#7f007f">spring.mvc.dispatch-options-request</span>=false <span style="color:#3f5f5f"><em># Dispatch OPTIONS requests to the FrameworkServlet doService method.</em></span>
<span style="color:#7f007f">spring.mvc.favicon.enabled</span>=true <span style="color:#3f5f5f"><em># Enable resolution of favicon.ico.</em></span>
<span style="color:#7f007f">spring.mvc.ignore-default-model-on-redirect</span>=true <span style="color:#3f5f5f"><em># If the content of the "default" model should be ignored during redirect scenarios.</em></span>
<span style="color:#7f007f">spring.mvc.locale</span>= <span style="color:#3f5f5f"><em># Locale to use.</em></span>
<span style="color:#7f007f">spring.mvc.media-types.*</span>= <span style="color:#3f5f5f"><em># Maps file extensions to media types for content negotiation.</em></span>
<span style="color:#7f007f">spring.mvc.message-codes-resolver-format</span>= <span style="color:#3f5f5f"><em># Formatting strategy for message codes. For instance `PREFIX_ERROR_CODE`.</em></span>
<span style="color:#7f007f">spring.mvc.static-path-pattern</span>=/** <span style="color:#3f5f5f"><em># Path pattern used for static resources.</em></span>
<span style="color:#7f007f">spring.mvc.throw-exception-if-no-handler-found</span>=false <span style="color:#3f5f5f"><em># If a "NoHandlerFoundException" should be thrown if no Handler was found to process a request.</em></span>
<span style="color:#7f007f">spring.mvc.view.prefix</span>= <span style="color:#3f5f5f"><em># Spring MVC view prefix.</em></span>
<span style="color:#7f007f">spring.mvc.view.suffix</span>= <span style="color:#3f5f5f"><em># Spring MVC view suffix.</em></span>
<span style="color:#3f5f5f"><em># SPRING RESOURCES HANDLING (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ResourceProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/ResourceProperties.java" class="link">ResourceProperties</a>)
<span style="color:#7f007f">spring.resources.add-mappings</span>=true <span style="color:#3f5f5f"><em># Enable default resource handling.</em></span>
<span style="color:#7f007f">spring.resources.cache-period</span>= <span style="color:#3f5f5f"><em># Cache period for the resources served by the resource handler, in seconds.</em></span>
<span style="color:#7f007f">spring.resources.chain.cache</span>=true <span style="color:#3f5f5f"><em># Enable caching in the Resource chain.</em></span>
<span style="color:#7f007f">spring.resources.chain.enabled</span>= <span style="color:#3f5f5f"><em># Enable the Spring Resource Handling chain. Disabled by default unless at least one strategy has been enabled.</em></span>
<span style="color:#7f007f">spring.resources.chain.html-application-cache</span>=false <span style="color:#3f5f5f"><em># Enable HTML5 application cache manifest rewriting.</em></span>
<span style="color:#7f007f">spring.resources.chain.strategy.content.enabled</span>=false <span style="color:#3f5f5f"><em># Enable the content Version Strategy.</em></span>
<span style="color:#7f007f">spring.resources.chain.strategy.content.paths</span>=/** <span style="color:#3f5f5f"><em># Comma-separated list of patterns to apply to the Version Strategy.</em></span>
<span style="color:#7f007f">spring.resources.chain.strategy.fixed.enabled</span>=false <span style="color:#3f5f5f"><em># Enable the fixed Version Strategy.</em></span>
<span style="color:#7f007f">spring.resources.chain.strategy.fixed.paths</span>= <span style="color:#3f5f5f"><em># Comma-separated list of patterns to apply to the Version Strategy.</em></span>
<span style="color:#7f007f">spring.resources.chain.strategy.fixed.version</span>= <span style="color:#3f5f5f"><em># Version string to use for the Version Strategy.</em></span>
<span style="color:#7f007f">spring.resources.static-locations</span>=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/ <span style="color:#3f5f5f"><em># Locations of static resources.</em></span>
<span style="color:#3f5f5f"><em># SPRING SOCIAL (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/SocialWebAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/SocialWebAutoConfiguration.java" class="link">SocialWebAutoConfiguration</a>)
<span style="color:#7f007f">spring.social.auto-connection-views</span>=false <span style="color:#3f5f5f"><em># Enable the connection status view for supported providers.</em></span>
<span style="color:#3f5f5f"><em># SPRING SOCIAL FACEBOOK (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/FacebookAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/FacebookAutoConfiguration.java" class="link">FacebookAutoConfiguration</a>)
<span style="color:#7f007f">spring.social.facebook.app-id</span>= <span style="color:#3f5f5f"><em># your application's Facebook App ID</em></span>
<span style="color:#7f007f">spring.social.facebook.app-secret</span>= <span style="color:#3f5f5f"><em># your application's Facebook App Secret</em></span>
<span style="color:#3f5f5f"><em># SPRING SOCIAL LINKEDIN (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/LinkedInAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/LinkedInAutoConfiguration.java" class="link">LinkedInAutoConfiguration</a>)
<span style="color:#7f007f">spring.social.linkedin.app-id</span>= <span style="color:#3f5f5f"><em># your application's LinkedIn App ID</em></span>
<span style="color:#7f007f">spring.social.linkedin.app-secret</span>= <span style="color:#3f5f5f"><em># your application's LinkedIn App Secret</em></span>
<span style="color:#3f5f5f"><em># SPRING SOCIAL TWITTER (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/TwitterAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/social/TwitterAutoConfiguration.java" class="link">TwitterAutoConfiguration</a>)
<span style="color:#7f007f">spring.social.twitter.app-id</span>= <span style="color:#3f5f5f"><em># your application's Twitter App ID</em></span>
<span style="color:#7f007f">spring.social.twitter.app-secret</span>= <span style="color:#3f5f5f"><em># your application's Twitter App Secret</em></span>
<span style="color:#3f5f5f"><em># THYMELEAF (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java" class="link">ThymeleafAutoConfiguration</a>)
<span style="color:#7f007f">spring.thymeleaf.cache</span>=true <span style="color:#3f5f5f"><em># Enable template caching.</em></span>
<span style="color:#7f007f">spring.thymeleaf.check-template-location</span>=true <span style="color:#3f5f5f"><em># Check that the templates location exists.</em></span>
<span style="color:#7f007f">spring.thymeleaf.content-type</span>=text/html <span style="color:#3f5f5f"><em># Content-Type value.</em></span>
<span style="color:#7f007f">spring.thymeleaf.enabled</span>=true <span style="color:#3f5f5f"><em># Enable MVC Thymeleaf view resolution.</em></span>
<span style="color:#7f007f">spring.thymeleaf.encoding</span>=UTF-8 <span style="color:#3f5f5f"><em># Template encoding.</em></span>
<span style="color:#7f007f">spring.thymeleaf.excluded-view-names</span>= <span style="color:#3f5f5f"><em># Comma-separated list of view names that should be excluded from resolution.</em></span>
<span style="color:#7f007f">spring.thymeleaf.mode</span>=HTML5 <span style="color:#3f5f5f"><em># Template mode to be applied to templates. See also StandardTemplateModeHandlers.</em></span>
<span style="color:#7f007f">spring.thymeleaf.prefix</span>=classpath:/templates/ <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.thymeleaf.suffix</span>=.html <span style="color:#3f5f5f"><em># Suffix that gets appended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.thymeleaf.template-resolver-order</span>= <span style="color:#3f5f5f"><em># Order of the template resolver in the chain.</em></span>
<span style="color:#7f007f">spring.thymeleaf.view-names</span>= <span style="color:#3f5f5f"><em># Comma-separated list of view names that can be resolved.</em></span>
<span style="color:#3f5f5f"><em># VELOCITY TEMPLATES (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/velocity/VelocityAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/velocity/VelocityAutoConfiguration.java" class="link">VelocityAutoConfiguration</a>)
<span style="color:#7f007f">spring.velocity.allow-request-override</span>=false <span style="color:#3f5f5f"><em># Set whether HttpServletRequest attributes are allowed to override (hide) controller generated model attributes of the same name.</em></span>
<span style="color:#7f007f">spring.velocity.allow-session-override</span>=false <span style="color:#3f5f5f"><em># Set whether HttpSession attributes are allowed to override (hide) controller generated model attributes of the same name.</em></span>
<span style="color:#7f007f">spring.velocity.cache</span>= <span style="color:#3f5f5f"><em># Enable template caching.</em></span>
<span style="color:#7f007f">spring.velocity.charset</span>=UTF-8 <span style="color:#3f5f5f"><em># Template encoding.</em></span>
<span style="color:#7f007f">spring.velocity.check-template-location</span>=true <span style="color:#3f5f5f"><em># Check that the templates location exists.</em></span>
<span style="color:#7f007f">spring.velocity.content-type</span>=text/html <span style="color:#3f5f5f"><em># Content-Type value.</em></span>
<span style="color:#7f007f">spring.velocity.date-tool-attribute</span>= <span style="color:#3f5f5f"><em># Name of the DateTool helper object to expose in the Velocity context of the view.</em></span>
<span style="color:#7f007f">spring.velocity.enabled</span>=true <span style="color:#3f5f5f"><em># Enable MVC view resolution for this technology.</em></span>
<span style="color:#7f007f">spring.velocity.expose-request-attributes</span>=false <span style="color:#3f5f5f"><em># Set whether all request attributes should be added to the model prior to merging with the template.</em></span>
<span style="color:#7f007f">spring.velocity.expose-session-attributes</span>=false <span style="color:#3f5f5f"><em># Set whether all HttpSession attributes should be added to the model prior to merging with the template.</em></span>
<span style="color:#7f007f">spring.velocity.expose-spring-macro-helpers</span>=true <span style="color:#3f5f5f"><em># Set whether to expose a RequestContext for use by Spring's macro library, under the name "springMacroRequestContext".</em></span>
<span style="color:#7f007f">spring.velocity.number-tool-attribute</span>= <span style="color:#3f5f5f"><em># Name of the NumberTool helper object to expose in the Velocity context of the view.</em></span>
<span style="color:#7f007f">spring.velocity.prefer-file-system-access</span>=true <span style="color:#3f5f5f"><em># Prefer file system access for template loading. File system access enables hot detection of template changes.</em></span>
<span style="color:#7f007f">spring.velocity.prefix</span>= <span style="color:#3f5f5f"><em># Prefix that gets prepended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.velocity.properties.*</span>= <span style="color:#3f5f5f"><em># Additional velocity properties.</em></span>
<span style="color:#7f007f">spring.velocity.request-context-attribute</span>= <span style="color:#3f5f5f"><em># Name of the RequestContext attribute for all views.</em></span>
<span style="color:#7f007f">spring.velocity.resource-loader-path</span>=classpath:/templates/ <span style="color:#3f5f5f"><em># Template path.</em></span>
<span style="color:#7f007f">spring.velocity.suffix</span>=.vm <span style="color:#3f5f5f"><em># Suffix that gets appended to view names when building a URL.</em></span>
<span style="color:#7f007f">spring.velocity.toolbox-config-location</span>= <span style="color:#3f5f5f"><em># Velocity Toolbox config location. For instance `/WEB-INF/toolbox.xml`</em></span>
<span style="color:#7f007f">spring.velocity.view-names</span>= <span style="color:#3f5f5f"><em># White list of view names that can be resolved.</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># SECURITY PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># SECURITY (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/SecurityProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/SecurityProperties.java" class="link">SecurityProperties</a>)
<span style="color:#7f007f">security.basic.authorize-mode</span>=role <span style="color:#3f5f5f"><em># Security authorize mode to apply.</em></span>
<span style="color:#7f007f">security.basic.enabled</span>=true <span style="color:#3f5f5f"><em># Enable basic authentication.</em></span>
<span style="color:#7f007f">security.basic.path</span>=/** <span style="color:#3f5f5f"><em># Comma-separated list of paths to secure.</em></span>
<span style="color:#7f007f">security.basic.realm</span>=Spring <span style="color:#3f5f5f"><em># HTTP basic realm name.</em></span>
<span style="color:#7f007f">security.enable-csrf</span>=false <span style="color:#3f5f5f"><em># Enable Cross Site Request Forgery support.</em></span>
<span style="color:#7f007f">security.filter-order</span>=0 <span style="color:#3f5f5f"><em># Security filter chain order.</em></span>
<span style="color:#7f007f">security.filter-dispatcher-types</span>=ASYNC, FORWARD, INCLUDE, REQUEST <span style="color:#3f5f5f"><em># Security filter chain dispatcher types.</em></span>
<span style="color:#7f007f">security.headers.cache</span>=true <span style="color:#3f5f5f"><em># Enable cache control HTTP headers.</em></span>
<span style="color:#7f007f">security.headers.content-type</span>=true <span style="color:#3f5f5f"><em># Enable "X-Content-Type-Options" header.</em></span>
<span style="color:#7f007f">security.headers.frame</span>=true <span style="color:#3f5f5f"><em># Enable "X-Frame-Options" header.</em></span>
<span style="color:#7f007f">security.headers.hsts</span>= <span style="color:#3f5f5f"><em># HTTP Strict Transport Security (HSTS) mode (none, domain, all).</em></span>
<span style="color:#7f007f">security.headers.xss</span>=true <span style="color:#3f5f5f"><em># Enable cross site scripting (XSS) protection.</em></span>
<span style="color:#7f007f">security.ignored</span>= <span style="color:#3f5f5f"><em># Comma-separated list of paths to exclude from the default secured paths.</em></span>
<span style="color:#7f007f">security.require-ssl</span>=false <span style="color:#3f5f5f"><em># Enable secure channel for all requests.</em></span>
<span style="color:#7f007f">security.sessions</span>=stateless <span style="color:#3f5f5f"><em># Session creation policy (always, never, if_required, stateless).</em></span>
<span style="color:#7f007f">security.user.name</span>=user <span style="color:#3f5f5f"><em># Default user name.</em></span>
<span style="color:#7f007f">security.user.password</span>= <span style="color:#3f5f5f"><em># Password for the default user name. A random password is logged on startup by default.</em></span>
<span style="color:#7f007f">security.user.role</span>=USER <span style="color:#3f5f5f"><em># Granted roles for the default user name.</em></span>
<span style="color:#3f5f5f"><em># SECURITY OAUTH2 CLIENT (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/OAuth2ClientProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/OAuth2ClientProperties.java" class="link">OAuth2ClientProperties</a>
<span style="color:#7f007f">security.oauth2.client.client-id</span>= <span style="color:#3f5f5f"><em># OAuth2 client id.</em></span>
<span style="color:#7f007f">security.oauth2.client.client-secret</span>= <span style="color:#3f5f5f"><em># OAuth2 client secret. A random secret is generated by default</em></span>
<span style="color:#3f5f5f"><em># SECURITY OAUTH2 RESOURCES (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/resource/ResourceServerProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/resource/ResourceServerProperties.java" class="link">ResourceServerProperties</a>
<span style="color:#7f007f">security.oauth2.resource.id</span>= <span style="color:#3f5f5f"><em># Identifier of the resource.</em></span>
<span style="color:#7f007f">security.oauth2.resource.jwt.key-uri</span>= <span style="color:#3f5f5f"><em># The URI of the JWT token. Can be set if the value is not available and the key is public.</em></span>
<span style="color:#7f007f">security.oauth2.resource.jwt.key-value</span>= <span style="color:#3f5f5f"><em># The verification key of the JWT token. Can either be a symmetric secret or PEM-encoded RSA public key.</em></span>
<span style="color:#7f007f">security.oauth2.resource.prefer-token-info</span>=true <span style="color:#3f5f5f"><em># Use the token info, can be set to false to use the user info.</em></span>
<span style="color:#7f007f">security.oauth2.resource.service-id</span>=resource <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">security.oauth2.resource.token-info-uri</span>= <span style="color:#3f5f5f"><em># URI of the token decoding endpoint.</em></span>
<span style="color:#7f007f">security.oauth2.resource.token-type</span>= <span style="color:#3f5f5f"><em># The token type to send when using the userInfoUri.</em></span>
<span style="color:#7f007f">security.oauth2.resource.user-info-uri</span>= <span style="color:#3f5f5f"><em># URI of the user endpoint.</em></span>
<span style="color:#3f5f5f"><em># SECURITY OAUTH2 SSO (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/OAuth2SsoProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/security/oauth2/client/OAuth2SsoProperties.java" class="link">OAuth2SsoProperties</a>
<span style="color:#7f007f">security.oauth2.sso.filter-order</span>= <span style="color:#3f5f5f"><em># Filter order to apply if not providing an explicit WebSecurityConfigurerAdapter</em></span>
<span style="color:#7f007f">security.oauth2.sso.login-path</span>=/login <span style="color:#3f5f5f"><em># Path to the login page, i.e. the one that triggers the redirect to the OAuth2 Authorization Server</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># DATA PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># FLYWAY (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayProperties.java" class="link">FlywayProperties</a>)
<span style="color:#7f007f">flyway.baseline-description</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.baseline-version</span>=1 <span style="color:#3f5f5f"><em># version to start migration</em></span>
<span style="color:#7f007f">flyway.baseline-on-migrate</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.check-location</span>=false <span style="color:#3f5f5f"><em># Check that migration scripts location exists.</em></span>
<span style="color:#7f007f">flyway.clean-on-validation-error</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.enabled</span>=true <span style="color:#3f5f5f"><em># Enable flyway.</em></span>
<span style="color:#7f007f">flyway.encoding</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.ignore-failed-future-migration</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.init-sqls</span>= <span style="color:#3f5f5f"><em># SQL statements to execute to initialize a connection immediately after obtaining it.</em></span>
<span style="color:#7f007f">flyway.locations</span>=classpath:db/migration <span style="color:#3f5f5f"><em># locations of migrations scripts</em></span>
<span style="color:#7f007f">flyway.out-of-order</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.password</span>= <span style="color:#3f5f5f"><em># JDBC password if you want Flyway to create its own DataSource</em></span>
<span style="color:#7f007f">flyway.placeholder-prefix</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.placeholder-replacement</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.placeholder-suffix</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.placeholders.*</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.schemas</span>= <span style="color:#3f5f5f"><em># schemas to update</em></span>
<span style="color:#7f007f">flyway.sql-migration-prefix</span>=V <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.sql-migration-separator</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.sql-migration-suffix</span>=.sql <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.table</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">flyway.url</span>= <span style="color:#3f5f5f"><em># JDBC url of the database to migrate. If not set, the primary configured data source is used.</em></span>
<span style="color:#7f007f">flyway.user</span>= <span style="color:#3f5f5f"><em># Login user of the database to migrate.</em></span>
<span style="color:#7f007f">flyway.validate-on-migrate</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#3f5f5f"><em># LIQUIBASE (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseProperties.java" class="link">LiquibaseProperties</a>)
<span style="color:#7f007f">liquibase.change-log</span>=classpath:/db/changelog/db.changelog-master.yaml <span style="color:#3f5f5f"><em># Change log configuration path.</em></span>
<span style="color:#7f007f">liquibase.check-change-log-location</span>=true <span style="color:#3f5f5f"><em># Check the change log location exists.</em></span>
<span style="color:#7f007f">liquibase.contexts</span>= <span style="color:#3f5f5f"><em># Comma-separated list of runtime contexts to use.</em></span>
<span style="color:#7f007f">liquibase.default-schema</span>= <span style="color:#3f5f5f"><em># Default database schema.</em></span>
<span style="color:#7f007f">liquibase.drop-first</span>=false <span style="color:#3f5f5f"><em># Drop the database schema first.</em></span>
<span style="color:#7f007f">liquibase.enabled</span>=true <span style="color:#3f5f5f"><em># Enable liquibase support.</em></span>
<span style="color:#7f007f">liquibase.labels</span>= <span style="color:#3f5f5f"><em># Comma-separated list of runtime labels to use.</em></span>
<span style="color:#7f007f">liquibase.parameters.*</span>= <span style="color:#3f5f5f"><em># Change log parameters.</em></span>
<span style="color:#7f007f">liquibase.password</span>= <span style="color:#3f5f5f"><em># Login password of the database to migrate.</em></span>
<span style="color:#7f007f">liquibase.url</span>= <span style="color:#3f5f5f"><em># JDBC url of the database to migrate. If not set, the primary configured data source is used.</em></span>
<span style="color:#7f007f">liquibase.user</span>= <span style="color:#3f5f5f"><em># Login user of the database to migrate.</em></span>
<span style="color:#3f5f5f"><em># DAO (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/dao/PersistenceExceptionTranslationAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/dao/PersistenceExceptionTranslationAutoConfiguration.java" class="link">PersistenceExceptionTranslationAutoConfiguration</a>)
<span style="color:#7f007f">spring.dao.exceptiontranslation.enabled</span>=true <span style="color:#3f5f5f"><em># Enable the PersistenceExceptionTranslationPostProcessor.</em></span>
<span style="color:#3f5f5f"><em># CASSANDRA (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cassandra/CassandraProperties.java" class="link">CassandraProperties</a>)
<span style="color:#7f007f">spring.data.cassandra.cluster-name</span>= <span style="color:#3f5f5f"><em># Name of the Cassandra cluster.</em></span>
<span style="color:#7f007f">spring.data.cassandra.compression</span>= <span style="color:#3f5f5f"><em># Compression supported by the Cassandra binary protocol.</em></span>
<span style="color:#7f007f">spring.data.cassandra.connect-timeout-millis</span>= <span style="color:#3f5f5f"><em># Socket option: connection time out.</em></span>
<span style="color:#7f007f">spring.data.cassandra.consistency-level</span>= <span style="color:#3f5f5f"><em># Queries consistency level.</em></span>
<span style="color:#7f007f">spring.data.cassandra.contact-points</span>=localhost <span style="color:#3f5f5f"><em># Comma-separated list of cluster node addresses.</em></span>
<span style="color:#7f007f">spring.data.cassandra.fetch-size</span>= <span style="color:#3f5f5f"><em># Queries default fetch size.</em></span>
<span style="color:#7f007f">spring.data.cassandra.keyspace-name</span>= <span style="color:#3f5f5f"><em># Keyspace name to use.</em></span>
<span style="color:#7f007f">spring.data.cassandra.load-balancing-policy</span>= <span style="color:#3f5f5f"><em># Class name of the load balancing policy.</em></span>
<span style="color:#7f007f">spring.data.cassandra.port</span>= <span style="color:#3f5f5f"><em># Port of the Cassandra server.</em></span>
<span style="color:#7f007f">spring.data.cassandra.password</span>= <span style="color:#3f5f5f"><em># Login password of the server.</em></span>
<span style="color:#7f007f">spring.data.cassandra.read-timeout-millis</span>= <span style="color:#3f5f5f"><em># Socket option: read time out.</em></span>
<span style="color:#7f007f">spring.data.cassandra.reconnection-policy</span>= <span style="color:#3f5f5f"><em># Reconnection policy class.</em></span>
<span style="color:#7f007f">spring.data.cassandra.retry-policy</span>= <span style="color:#3f5f5f"><em># Class name of the retry policy.</em></span>
<span style="color:#7f007f">spring.data.cassandra.serial-consistency-level</span>= <span style="color:#3f5f5f"><em># Queries serial consistency level.</em></span>
<span style="color:#7f007f">spring.data.cassandra.ssl</span>=false <span style="color:#3f5f5f"><em># Enable SSL support.</em></span>
<span style="color:#7f007f">spring.data.cassandra.username</span>= <span style="color:#3f5f5f"><em># Login user of the server.</em></span>
<span style="color:#3f5f5f"><em># ELASTICSEARCH (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/elasticsearch/ElasticsearchProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/elasticsearch/ElasticsearchProperties.java" class="link">ElasticsearchProperties</a>)
<span style="color:#7f007f">spring.data.elasticsearch.cluster-name</span>=elasticsearch <span style="color:#3f5f5f"><em># Elasticsearch cluster name.</em></span>
<span style="color:#7f007f">spring.data.elasticsearch.cluster-nodes</span>= <span style="color:#3f5f5f"><em># Comma-separated list of cluster node addresses. If not specified, starts a client node.</em></span>
<span style="color:#7f007f">spring.data.elasticsearch.properties.*</span>= <span style="color:#3f5f5f"><em># Additional properties used to configure the client.</em></span>
<span style="color:#7f007f">spring.data.elasticsearch.repositories.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Elasticsearch repositories.</em></span>
<span style="color:#3f5f5f"><em># MONGODB (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/MongoProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/MongoProperties.java" class="link">MongoProperties</a>)
<span style="color:#7f007f">spring.data.mongodb.authentication-database</span>= <span style="color:#3f5f5f"><em># Authentication database name.</em></span>
<span style="color:#7f007f">spring.data.mongodb.database</span>=test <span style="color:#3f5f5f"><em># Database name.</em></span>
<span style="color:#7f007f">spring.data.mongodb.field-naming-strategy</span>= <span style="color:#3f5f5f"><em># Fully qualified name of the FieldNamingStrategy to use.</em></span>
<span style="color:#7f007f">spring.data.mongodb.grid-fs-database</span>= <span style="color:#3f5f5f"><em># GridFS database name.</em></span>
<span style="color:#7f007f">spring.data.mongodb.host</span>=localhost <span style="color:#3f5f5f"><em># Mongo server host.</em></span>
<span style="color:#7f007f">spring.data.mongodb.password</span>= <span style="color:#3f5f5f"><em># Login password of the mongo server.</em></span>
<span style="color:#7f007f">spring.data.mongodb.port</span>=27017 <span style="color:#3f5f5f"><em># Mongo server port.</em></span>
<span style="color:#7f007f">spring.data.mongodb.repositories.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Mongo repositories.</em></span>
<span style="color:#7f007f">spring.data.mongodb.uri</span>=mongodb://localhost/test <span style="color:#3f5f5f"><em># Mongo database URI. When set, host and port are ignored.</em></span>
<span style="color:#7f007f">spring.data.mongodb.username</span>= <span style="color:#3f5f5f"><em># Login user of the mongo server.</em></span>
<span style="color:#3f5f5f"><em># DATA REST (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/rest/RepositoryRestProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/rest/RepositoryRestProperties.java" class="link">RepositoryRestProperties</a>)
<span style="color:#7f007f">spring.data.rest.base-path</span>= <span style="color:#3f5f5f"><em># Base path to be used by Spring Data REST to expose repository resources.</em></span>
<span style="color:#7f007f">spring.data.rest.default-page-size</span>= <span style="color:#3f5f5f"><em># Default size of pages.</em></span>
<span style="color:#7f007f">spring.data.rest.enable-enum-translation</span>= <span style="color:#3f5f5f"><em># Enable enum value translation via the Spring Data REST default resource bundle.</em></span>
<span style="color:#7f007f">spring.data.rest.limit-param-name</span>= <span style="color:#3f5f5f"><em># Name of the URL query string parameter that indicates how many results to return at once.</em></span>
<span style="color:#7f007f">spring.data.rest.max-page-size</span>= <span style="color:#3f5f5f"><em># Maximum size of pages.</em></span>
<span style="color:#7f007f">spring.data.rest.page-param-name</span>= <span style="color:#3f5f5f"><em># Name of the URL query string parameter that indicates what page to return.</em></span>
<span style="color:#7f007f">spring.data.rest.return-body-on-create</span>= <span style="color:#3f5f5f"><em># Return a response body after creating an entity.</em></span>
<span style="color:#7f007f">spring.data.rest.return-body-on-update</span>= <span style="color:#3f5f5f"><em># Return a response body after updating an entity.</em></span>
<span style="color:#7f007f">spring.data.rest.sort-param-name</span>= <span style="color:#3f5f5f"><em># Name of the URL query string parameter that indicates what direction to sort results.</em></span>
<span style="color:#3f5f5f"><em># SOLR (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/solr/SolrProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/solr/SolrProperties.java" class="link">SolrProperties</a>)
<span style="color:#7f007f">spring.data.solr.host</span>=http://127.0.0.1:8983/solr <span style="color:#3f5f5f"><em># Solr host. Ignored if "zk-host" is set.</em></span>
<span style="color:#7f007f">spring.data.solr.repositories.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Solr repositories.</em></span>
<span style="color:#7f007f">spring.data.solr.zk-host</span>= <span style="color:#3f5f5f"><em># ZooKeeper host address in the form HOST:PORT.</em></span>
<span style="color:#3f5f5f"><em># DATASOURCE (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceAutoConfiguration.java" class="link">DataSourceAutoConfiguration</a> & <a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jdbc/DataSourceProperties.java" class="link">DataSourceProperties</a>)
<span style="color:#7f007f">spring.datasource.continue-on-error</span>=false <span style="color:#3f5f5f"><em># Do not stop if an error occurs while initializing the database.</em></span>
<span style="color:#7f007f">spring.datasource.data</span>= <span style="color:#3f5f5f"><em># Data (DML) script resource reference.</em></span>
<span style="color:#7f007f">spring.datasource.driver-class-name</span>= <span style="color:#3f5f5f"><em># Fully qualified name of the JDBC driver. Auto-detected based on the URL by default.</em></span>
<span style="color:#7f007f">spring.datasource.initialize</span>=true <span style="color:#3f5f5f"><em># Populate the database using 'data.sql'.</em></span>
<span style="color:#7f007f">spring.datasource.jmx-enabled</span>=false <span style="color:#3f5f5f"><em># Enable JMX support (if provided by the underlying pool).</em></span>
<span style="color:#7f007f">spring.datasource.jndi-name</span>= <span style="color:#3f5f5f"><em># JNDI location of the datasource. Class, url, username & password are ignored when set.</em></span>
<span style="color:#7f007f">spring.datasource.max-active</span>= <span style="color:#3f5f5f"><em># For instance 100</em></span>
<span style="color:#7f007f">spring.datasource.max-idle</span>= <span style="color:#3f5f5f"><em># For instance 8</em></span>
<span style="color:#7f007f">spring.datasource.max-wait</span>=
<span style="color:#7f007f">spring.datasource.min-evictable-idle-time-millis</span>=
<span style="color:#7f007f">spring.datasource.min-idle</span>=8
<span style="color:#7f007f">spring.datasource.name</span>=testdb <span style="color:#3f5f5f"><em># Name of the datasource.</em></span>
<span style="color:#7f007f">spring.datasource.password</span>= <span style="color:#3f5f5f"><em># Login password of the database.</em></span>
<span style="color:#7f007f">spring.datasource.platform</span>=all <span style="color:#3f5f5f"><em># Platform to use in the schema resource (schema-${platform}.sql).</em></span>
<span style="color:#7f007f">spring.datasource.schema</span>= <span style="color:#3f5f5f"><em># Schema (DDL) script resource reference.</em></span>
<span style="color:#7f007f">spring.datasource.separator</span>=; <span style="color:#3f5f5f"><em># Statement separator in SQL initialization scripts.</em></span>
<span style="color:#7f007f">spring.datasource.sql-script-encoding</span>= <span style="color:#3f5f5f"><em># SQL scripts encoding.</em></span>
<span style="color:#7f007f">spring.datasource.test-on-borrow</span>= <span style="color:#3f5f5f"><em># For instance `false`</em></span>
<span style="color:#7f007f">spring.datasource.test-on-return</span>= <span style="color:#3f5f5f"><em># For instance `false`</em></span>
<span style="color:#7f007f">spring.datasource.test-while-idle</span>= <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">spring.datasource.time-between-eviction-runs-millis</span>= 1
<span style="color:#7f007f">spring.datasource.type</span>= <span style="color:#3f5f5f"><em># Fully qualified name of the connection pool implementation to use. By default, it is auto-detected from the classpath.</em></span>
<span style="color:#7f007f">spring.datasource.url</span>= <span style="color:#3f5f5f"><em># JDBC url of the database.</em></span>
<span style="color:#7f007f">spring.datasource.username</span>=
<span style="color:#7f007f">spring.datasource.validation-query</span>=
<span style="color:#3f5f5f"><em># H2 Web Console (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/h2/H2ConsoleProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/h2/H2ConsoleProperties.java" class="link">H2ConsoleProperties</a>)
<span style="color:#7f007f">spring.h2.console.enabled</span>=false <span style="color:#3f5f5f"><em># Enable the console.</em></span>
<span style="color:#7f007f">spring.h2.console.path</span>=/h2-console <span style="color:#3f5f5f"><em># Path at which the console will be available.</em></span>
<span style="color:#3f5f5f"><em># JOOQ (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jooq/JooqAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jooq/JooqAutoConfiguration.java" class="link">JooqAutoConfiguration</a>)
<span style="color:#7f007f">spring.jooq.sql-dialect</span>= <span style="color:#3f5f5f"><em># SQLDialect JOOQ used when communicating with the configured datasource. For instance `POSTGRES`</em></span>
<span style="color:#3f5f5f"><em># JPA (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaBaseConfiguration.java" class="link">JpaBaseConfiguration</a>, <a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.java" class="link">HibernateJpaAutoConfiguration</a>)
<span style="color:#7f007f">spring.data.jpa.repositories.enabled</span>=true <span style="color:#3f5f5f"><em># Enable JPA repositories.</em></span>
<span style="color:#7f007f">spring.jpa.database</span>= <span style="color:#3f5f5f"><em># Target database to operate on, auto-detected by default. Can be alternatively set using the "databasePlatform" property.</em></span>
<span style="color:#7f007f">spring.jpa.database-platform</span>= <span style="color:#3f5f5f"><em># Name of the target database to operate on, auto-detected by default. Can be alternatively set using the "Database" enum.</em></span>
<span style="color:#7f007f">spring.jpa.generate-ddl</span>=false <span style="color:#3f5f5f"><em># Initialize the schema on startup.</em></span>
<span style="color:#7f007f">spring.jpa.hibernate.ddl-auto</span>= <span style="color:#3f5f5f"><em># DDL mode. This is actually a shortcut for the "hibernate.hbm2ddl.auto" property. Default to "create-drop" when using an embedded database, "none" otherwise.</em></span>
<span style="color:#7f007f">spring.jpa.hibernate.naming-strategy</span>= <span style="color:#3f5f5f"><em># Naming strategy fully qualified name.</em></span>
<span style="color:#7f007f">spring.jpa.open-in-view</span>=true <span style="color:#3f5f5f"><em># Register OpenEntityManagerInViewInterceptor. Binds a JPA EntityManager to the thread for the entire processing of the request.</em></span>
<span style="color:#7f007f">spring.jpa.properties.*</span>= <span style="color:#3f5f5f"><em># Additional native properties to set on the JPA provider.</em></span>
<span style="color:#7f007f">spring.jpa.show-sql</span>=false <span style="color:#3f5f5f"><em># Enable logging of SQL statements.</em></span>
<span style="color:#3f5f5f"><em># JTA (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/JtaAutoConfiguration.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/jta/JtaAutoConfiguration.java" class="link">JtaAutoConfiguration</a>)
<span style="color:#7f007f">spring.jta.log-dir</span>= <span style="color:#3f5f5f"><em># Transaction logs directory.</em></span>
<span style="color:#3f5f5f"><em># ATOMIKOS</em></span>
<span style="color:#7f007f">spring.jta.checkpoint-interval</span>=500 <span style="color:#3f5f5f"><em># Interval between checkpoints.</em></span>
<span style="color:#7f007f">spring.jta.console-file-count</span>=1 <span style="color:#3f5f5f"><em># Number of debug logs files that can be created.</em></span>
<span style="color:#7f007f">spring.jta.console-file-limit</span>=-1 <span style="color:#3f5f5f"><em># How many bytes can be stored at most in debug logs files.</em></span>
<span style="color:#7f007f">spring.jta.console-file-name</span>=tm.out <span style="color:#3f5f5f"><em># Debug logs file name.</em></span>
<span style="color:#7f007f">spring.jta.console-log-level</span>= <span style="color:#3f5f5f"><em># Console log level.</em></span>
<span style="color:#7f007f">spring.jta.default-jta-timeout</span>=10000 <span style="color:#3f5f5f"><em># Default timeout for JTA transactions.</em></span>
<span style="color:#7f007f">spring.jta.enable-logging</span>=true <span style="color:#3f5f5f"><em># Enable disk logging.</em></span>
<span style="color:#7f007f">spring.jta.force-shutdown-on-vm-exit</span>=false <span style="color:#3f5f5f"><em># Specify if a VM shutdown should trigger forced shutdown of the transaction core.</em></span>
<span style="color:#7f007f">spring.jta.log-base-dir</span>= <span style="color:#3f5f5f"><em># Directory in which the log files should be stored.</em></span>
<span style="color:#7f007f">spring.jta.log-base-name</span>=tmlog <span style="color:#3f5f5f"><em># Transactions log file base name.</em></span>
<span style="color:#7f007f">spring.jta.max-actives</span>=50 <span style="color:#3f5f5f"><em># Maximum number of active transactions.</em></span>
<span style="color:#7f007f">spring.jta.max-timeout</span>=300000 <span style="color:#3f5f5f"><em># Maximum timeout (in milliseconds) that can be allowed for transactions.</em></span>
<span style="color:#7f007f">spring.jta.output-dir</span>= <span style="color:#3f5f5f"><em># Directory in which to store the debug log files.</em></span>
<span style="color:#7f007f">spring.jta.serial-jta-transactions</span>=true <span style="color:#3f5f5f"><em># Specify if sub-transactions should be joined when possible.</em></span>
<span style="color:#7f007f">spring.jta.service</span>= <span style="color:#3f5f5f"><em># Transaction manager implementation that should be started.</em></span>
<span style="color:#7f007f">spring.jta.threaded-two-phase-commit</span>=true <span style="color:#3f5f5f"><em># Use different (and concurrent) threads for two-phase commit on the participating resources.</em></span>
<span style="color:#7f007f">spring.jta.transaction-manager-unique-name</span>= <span style="color:#3f5f5f"><em># Transaction manager's unique name.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.borrow-connection-timeout</span>=30 <span style="color:#3f5f5f"><em># Timeout, in seconds, for borrowing connections from the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.ignore-session-transacted-flag</span>=true <span style="color:#3f5f5f"><em># Whether or not to ignore the transacted flag when creating session.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.local-transaction-mode</span>=false <span style="color:#3f5f5f"><em># Whether or not local transactions are desired.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.maintenance-interval</span>=60 <span style="color:#3f5f5f"><em># The time, in seconds, between runs of the pool's maintenance thread.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.max-idle-time</span>=60 <span style="color:#3f5f5f"><em># The time, in seconds, after which connections are cleaned up from the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.max-lifetime</span>=0 <span style="color:#3f5f5f"><em># The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.max-pool-size</span>=1 <span style="color:#3f5f5f"><em># The maximum size of the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.min-pool-size</span>=1 <span style="color:#3f5f5f"><em># The minimum size of the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.reap-timeout</span>=0 <span style="color:#3f5f5f"><em># The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.connectionfactory.unique-resource-name</span>=jmsConnectionFactory <span style="color:#3f5f5f"><em># The unique name used to identify the resource during recovery.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.borrow-connection-timeout</span>=30 <span style="color:#3f5f5f"><em># Timeout, in seconds, for borrowing connections from the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.default-isolation-level</span>= <span style="color:#3f5f5f"><em># Default isolation level of connections provided by the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.login-timeout</span>= <span style="color:#3f5f5f"><em># Timeout, in seconds, for establishing a database connection.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.maintenance-interval</span>=60 <span style="color:#3f5f5f"><em># The time, in seconds, between runs of the pool's maintenance thread.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.max-idle-time</span>=60 <span style="color:#3f5f5f"><em># The time, in seconds, after which connections are cleaned up from the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.max-lifetime</span>=0 <span style="color:#3f5f5f"><em># The time, in seconds, that a connection can be pooled for before being destroyed. 0 denotes no limit.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.max-pool-size</span>=1 <span style="color:#3f5f5f"><em># The maximum size of the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.min-pool-size</span>=1 <span style="color:#3f5f5f"><em># The minimum size of the pool.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.reap-timeout</span>=0 <span style="color:#3f5f5f"><em># The reap timeout, in seconds, for borrowed connections. 0 denotes no limit.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.test-query</span>= <span style="color:#3f5f5f"><em># SQL query or statement used to validate a connection before returning it.</em></span>
<span style="color:#7f007f">spring.jta.atomikos.datasource.unique-resource-name</span>=dataSource <span style="color:#3f5f5f"><em># The unique name used to identify the resource during recovery.</em></span>
<span style="color:#3f5f5f"><em># BITRONIX</em></span>
<span style="color:#7f007f">spring.jta.allow-multiple-lrc</span>=false <span style="color:#3f5f5f"><em># Allow multiple LRC resources to be enlisted into the same transaction.</em></span>
<span style="color:#7f007f">spring.jta.asynchronous2-pc</span>=false <span style="color:#3f5f5f"><em># Enable asynchronously execution of two phase commit.</em></span>
<span style="color:#7f007f">spring.jta.background-recovery-interval-seconds</span>=60 <span style="color:#3f5f5f"><em># Interval in seconds at which to run the recovery process in the background.</em></span>
<span style="color:#7f007f">spring.jta.current-node-only-recovery</span>=true <span style="color:#3f5f5f"><em># Recover only the current node.</em></span>
<span style="color:#7f007f">spring.jta.debug-zero-resource-transaction</span>=false <span style="color:#3f5f5f"><em># Log the creation and commit call stacks of transactions executed without a single enlisted resource.</em></span>
<span style="color:#7f007f">spring.jta.default-transaction-timeout</span>=60 <span style="color:#3f5f5f"><em># Default transaction timeout in seconds.</em></span>
<span style="color:#7f007f">spring.jta.disable-jmx</span>=false <span style="color:#3f5f5f"><em># Enable JMX support.</em></span>
<span style="color:#7f007f">spring.jta.exception-analyzer</span>= <span style="color:#3f5f5f"><em># Set the fully qualified name of the exception analyzer implementation to use.</em></span>
<span style="color:#7f007f">spring.jta.filter-log-status</span>=false <span style="color:#3f5f5f"><em># Enable filtering of logs so that only mandatory logs are written.</em></span>
<span style="color:#7f007f">spring.jta.force-batching-enabled</span>=true <span style="color:#3f5f5f"><em># Set if disk forces are batched.</em></span>
<span style="color:#7f007f">spring.jta.forced-write-enabled</span>=true <span style="color:#3f5f5f"><em># Set if logs are forced to disk.</em></span>
<span style="color:#7f007f">spring.jta.graceful-shutdown-interval</span>=60 <span style="color:#3f5f5f"><em># Maximum amount of seconds the TM will wait for transactions to get done before aborting them at shutdown time.</em></span>
<span style="color:#7f007f">spring.jta.jndi-transaction-synchronization-registry-name</span>= <span style="color:#3f5f5f"><em># JNDI name of the TransactionSynchronizationRegistry.</em></span>
<span style="color:#7f007f">spring.jta.jndi-user-transaction-name</span>= <span style="color:#3f5f5f"><em># JNDI name of the UserTransaction.</em></span>
<span style="color:#7f007f">spring.jta.journal</span>=disk <span style="color:#3f5f5f"><em># Name of the journal. Can be 'disk', 'null' or a class name.</em></span>
<span style="color:#7f007f">spring.jta.log-part1-filename</span>=btm1.tlog <span style="color:#3f5f5f"><em># Name of the first fragment of the journal.</em></span>
<span style="color:#7f007f">spring.jta.log-part2-filename</span>=btm2.tlog <span style="color:#3f5f5f"><em># Name of the second fragment of the journal.</em></span>
<span style="color:#7f007f">spring.jta.max-log-size-in-mb</span>=2 <span style="color:#3f5f5f"><em># Maximum size in megabytes of the journal fragments.</em></span>
<span style="color:#7f007f">spring.jta.resource-configuration-filename</span>= <span style="color:#3f5f5f"><em># ResourceLoader configuration file name.</em></span>
<span style="color:#7f007f">spring.jta.server-id</span>= <span style="color:#3f5f5f"><em># ASCII ID that must uniquely identify this TM instance. Default to the machine's IP address.</em></span>
<span style="color:#7f007f">spring.jta.skip-corrupted-logs</span>=false <span style="color:#3f5f5f"><em># Skip corrupted transactions log entries.</em></span>
<span style="color:#7f007f">spring.jta.warn-about-zero-resource-transaction</span>=true <span style="color:#3f5f5f"><em># Log a warning for transactions executed without a single enlisted resource.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.acquire-increment</span>=1 <span style="color:#3f5f5f"><em># Number of connections to create when growing the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.acquisition-interval</span>=1 <span style="color:#3f5f5f"><em># Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.acquisition-timeout</span>=30 <span style="color:#3f5f5f"><em># Timeout, in seconds, for acquiring connections from the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.allow-local-transactions</span>=true <span style="color:#3f5f5f"><em># Whether or not the transaction manager should allow mixing XA and non-XA transactions.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.apply-transaction-timeout</span>=false <span style="color:#3f5f5f"><em># Whether or not the transaction timeout should be set on the XAResource when it is enlisted.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.automatic-enlisting-enabled</span>=true <span style="color:#3f5f5f"><em># Whether or not resources should be enlisted and delisted automatically.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.cache-producers-consumers</span>=true <span style="color:#3f5f5f"><em># Whether or not produces and consumers should be cached.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.defer-connection-release</span>=true <span style="color:#3f5f5f"><em># Whether or not the provider can run many transactions on the same connection and supports transaction interleaving.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.ignore-recovery-failures</span>=false <span style="color:#3f5f5f"><em># Whether or not recovery failures should be ignored.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.max-idle-time</span>=60 <span style="color:#3f5f5f"><em># The time, in seconds, after which connections are cleaned up from the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.max-pool-size</span>=10 <span style="color:#3f5f5f"><em># The maximum size of the pool. 0 denotes no limit.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.min-pool-size</span>=0 <span style="color:#3f5f5f"><em># The minimum size of the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.password</span>= <span style="color:#3f5f5f"><em># The password to use to connect to the JMS provider.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.share-transaction-connections</span>=false <span style="color:#3f5f5f"><em># Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.test-connections</span>=true <span style="color:#3f5f5f"><em># Whether or not connections should be tested when acquired from the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.two-pc-ordering-position</span>=1 <span style="color:#3f5f5f"><em># The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.unique-name</span>=jmsConnectionFactory <span style="color:#3f5f5f"><em># The unique name used to identify the resource during recovery.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.use-tm-join</span>=true Whether or not TMJOIN should be used when starting XAResources.
<span style="color:#7f007f">spring.jta.bitronix.connectionfactory.user</span>= <span style="color:#3f5f5f"><em># The user to use to connect to the JMS provider.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.acquire-increment</span>=1 <span style="color:#3f5f5f"><em># Number of connections to create when growing the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.acquisition-interval</span>=1 <span style="color:#3f5f5f"><em># Time, in seconds, to wait before trying to acquire a connection again after an invalid connection was acquired.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.acquisition-timeout</span>=30 <span style="color:#3f5f5f"><em># Timeout, in seconds, for acquiring connections from the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.allow-local-transactions</span>=true <span style="color:#3f5f5f"><em># Whether or not the transaction manager should allow mixing XA and non-XA transactions.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.apply-transaction-timeout</span>=false <span style="color:#3f5f5f"><em># Whether or not the transaction timeout should be set on the XAResource when it is enlisted.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.automatic-enlisting-enabled</span>=true <span style="color:#3f5f5f"><em># Whether or not resources should be enlisted and delisted automatically.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.cursor-holdability</span>= <span style="color:#3f5f5f"><em># The default cursor holdability for connections.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.defer-connection-release</span>=true <span style="color:#3f5f5f"><em># Whether or not the database can run many transactions on the same connection and supports transaction interleaving.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.enable-jdbc4-connection-test</span>= <span style="color:#3f5f5f"><em># Whether or not Connection.isValid() is called when acquiring a connection from the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.ignore-recovery-failures</span>=false <span style="color:#3f5f5f"><em># Whether or not recovery failures should be ignored.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.isolation-level</span>= <span style="color:#3f5f5f"><em># The default isolation level for connections.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.local-auto-commit</span>= <span style="color:#3f5f5f"><em># The default auto-commit mode for local transactions.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.login-timeout</span>= <span style="color:#3f5f5f"><em># Timeout, in seconds, for establishing a database connection.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.max-idle-time</span>=60 <span style="color:#3f5f5f"><em># The time, in seconds, after which connections are cleaned up from the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.max-pool-size</span>=10 <span style="color:#3f5f5f"><em># The maximum size of the pool. 0 denotes no limit.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.min-pool-size</span>=0 <span style="color:#3f5f5f"><em># The minimum size of the pool.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.prepared-statement-cache-size</span>=0 <span style="color:#3f5f5f"><em># The target size of the prepared statement cache. 0 disables the cache.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.share-transaction-connections</span>=false <span style="color:#3f5f5f"><em># Whether or not connections in the ACCESSIBLE state can be shared within the context of a transaction.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.test-query</span>= <span style="color:#3f5f5f"><em># SQL query or statement used to validate a connection before returning it.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.two-pc-ordering-position</span>=1 <span style="color:#3f5f5f"><em># The position that this resource should take during two-phase commit (always first is Integer.MIN_VALUE, always last is Integer.MAX_VALUE).</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.unique-name</span>=dataSource <span style="color:#3f5f5f"><em># The unique name used to identify the resource during recovery.</em></span>
<span style="color:#7f007f">spring.jta.bitronix.datasource.use-tm-join</span>=true Whether or not TMJOIN should be used when starting XAResources.
<span style="color:#3f5f5f"><em># EMBEDDED MONGODB (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/mongo/embedded/EmbeddedMongoProperties.java" class="link">EmbeddedMongoProperties</a>)
<span style="color:#7f007f">spring.mongodb.embedded.features</span>=SYNC_DELAY <span style="color:#3f5f5f"><em># Comma-separated list of features to enable.</em></span>
<span style="color:#7f007f">spring.mongodb.embedded.version</span>=2.6.10 <span style="color:#3f5f5f"><em># Version of Mongo to use.</em></span>
<span style="color:#3f5f5f"><em># REDIS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/RedisProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/redis/RedisProperties.java" class="link">RedisProperties</a>)
<span style="color:#7f007f">spring.redis.database</span>=0 <span style="color:#3f5f5f"><em># Database index used by the connection factory.</em></span>
<span style="color:#7f007f">spring.redis.host</span>=localhost <span style="color:#3f5f5f"><em># Redis server host.</em></span>
<span style="color:#7f007f">spring.redis.password</span>= <span style="color:#3f5f5f"><em># Login password of the redis server.</em></span>
<span style="color:#7f007f">spring.redis.pool.max-active</span>=8 <span style="color:#3f5f5f"><em># Max number of connections that can be allocated by the pool at a given time. Use a negative value for no limit.</em></span>
<span style="color:#7f007f">spring.redis.pool.max-idle</span>=8 <span style="color:#3f5f5f"><em># Max number of "idle" connections in the pool. Use a negative value to indicate an unlimited number of idle connections.</em></span>
<span style="color:#7f007f">spring.redis.pool.max-wait</span>=-1 <span style="color:#3f5f5f"><em># Maximum amount of time (in milliseconds) a connection allocation should block before throwing an exception when the pool is exhausted. Use a negative value to block indefinitely.</em></span>
<span style="color:#7f007f">spring.redis.pool.min-idle</span>=0 <span style="color:#3f5f5f"><em># Target for the minimum number of idle connections to maintain in the pool. This setting only has an effect if it is positive.</em></span>
<span style="color:#7f007f">spring.redis.port</span>=6379 <span style="color:#3f5f5f"><em># Redis server port.</em></span>
<span style="color:#7f007f">spring.redis.sentinel.master</span>= <span style="color:#3f5f5f"><em># Name of Redis server.</em></span>
<span style="color:#7f007f">spring.redis.sentinel.nodes</span>= <span style="color:#3f5f5f"><em># Comma-separated list of host:port pairs.</em></span>
<span style="color:#7f007f">spring.redis.timeout</span>=0 <span style="color:#3f5f5f"><em># Connection timeout in milliseconds.</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># INTEGRATION PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># ACTIVEMQ (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/activemq/ActiveMQProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/activemq/ActiveMQProperties.java" class="link">ActiveMQProperties</a>)
<span style="color:#7f007f">spring.activemq.broker-url</span>= <span style="color:#3f5f5f"><em># URL of the ActiveMQ broker. Auto-generated by default. For instance `tcp://localhost:61616`</em></span>
<span style="color:#7f007f">spring.activemq.in-memory</span>=true <span style="color:#3f5f5f"><em># Specify if the default broker URL should be in memory. Ignored if an explicit broker has been specified.</em></span>
<span style="color:#7f007f">spring.activemq.password</span>= <span style="color:#3f5f5f"><em># Login password of the broker.</em></span>
<span style="color:#7f007f">spring.activemq.pooled</span>=false <span style="color:#3f5f5f"><em># Specify if a PooledConnectionFactory should be created instead of a regular ConnectionFactory.</em></span>
<span style="color:#7f007f">spring.activemq.user</span>= <span style="color:#3f5f5f"><em># Login user of the broker.</em></span>
<span style="color:#3f5f5f"><em># ARTEMIS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/artemis/ArtemisProperties.java" class="link">ArtemisProperties</a>)
<span style="color:#7f007f">spring.artemis.embedded.cluster-password</span>= <span style="color:#3f5f5f"><em># Cluster password. Randomly generated on startup by default.</em></span>
<span style="color:#7f007f">spring.artemis.embedded.data-directory</span>= <span style="color:#3f5f5f"><em># Journal file directory. Not necessary if persistence is turned off.</em></span>
<span style="color:#7f007f">spring.artemis.embedded.enabled</span>=true <span style="color:#3f5f5f"><em># Enable embedded mode if the Artemis server APIs are available.</em></span>
<span style="color:#7f007f">spring.artemis.embedded.persistent</span>=false <span style="color:#3f5f5f"><em># Enable persistent store.</em></span>
<span style="color:#7f007f">spring.artemis.embedded.queues</span>= <span style="color:#3f5f5f"><em># Comma-separated list of queues to create on startup.</em></span>
<span style="color:#7f007f">spring.artemis.embedded.server-id</span>= <span style="color:#3f5f5f"><em># Server id. By default, an auto-incremented counter is used.</em></span>
<span style="color:#7f007f">spring.artemis.embedded.topics</span>= <span style="color:#3f5f5f"><em># Comma-separated list of topics to create on startup.</em></span>
<span style="color:#7f007f">spring.artemis.host</span>=localhost <span style="color:#3f5f5f"><em># Artemis broker host.</em></span>
<span style="color:#7f007f">spring.artemis.mode</span>= <span style="color:#3f5f5f"><em># Artemis deployment mode, auto-detected by default. Can be explicitly set to "native" or "embedded".</em></span>
<span style="color:#7f007f">spring.artemis.port</span>=61616 <span style="color:#3f5f5f"><em># Artemis broker port.</em></span>
<span style="color:#3f5f5f"><em># SPRING BATCH (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/batch/BatchProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/batch/BatchProperties.java" class="link">BatchProperties</a>)
<span style="color:#7f007f">spring.batch.initializer.enabled</span>=true <span style="color:#3f5f5f"><em># Create the required batch tables on startup if necessary.</em></span>
<span style="color:#7f007f">spring.batch.job.enabled</span>=true <span style="color:#3f5f5f"><em># Execute all Spring Batch jobs in the context on startup.</em></span>
<span style="color:#7f007f">spring.batch.job.names</span>= <span style="color:#3f5f5f"><em># Comma-separated list of job names to execute on startup (For instance `job1,job2`). By default, all Jobs found in the context are executed.</em></span>
<span style="color:#7f007f">spring.batch.schema</span>=classpath:org/springframework/batch/core/schema-@@platform@@.sql <span style="color:#3f5f5f"><em># Path to the SQL file to use to initialize the database schema.</em></span>
<span style="color:#7f007f">spring.batch.table-prefix</span>= <span style="color:#3f5f5f"><em># Table prefix for all the batch meta-data tables.</em></span>
<span style="color:#3f5f5f"><em># HORNETQ (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/hornetq/HornetQProperties.java" class="link">HornetQProperties</a>)
<span style="color:#7f007f">spring.hornetq.embedded.cluster-password</span>= <span style="color:#3f5f5f"><em># Cluster password. Randomly generated on startup by default.</em></span>
<span style="color:#7f007f">spring.hornetq.embedded.data-directory</span>= <span style="color:#3f5f5f"><em># Journal file directory. Not necessary if persistence is turned off.</em></span>
<span style="color:#7f007f">spring.hornetq.embedded.enabled</span>=true <span style="color:#3f5f5f"><em># Enable embedded mode if the HornetQ server APIs are available.</em></span>
<span style="color:#7f007f">spring.hornetq.embedded.persistent</span>=false <span style="color:#3f5f5f"><em># Enable persistent store.</em></span>
<span style="color:#7f007f">spring.hornetq.embedded.queues</span>= <span style="color:#3f5f5f"><em># Comma-separated list of queues to create on startup.</em></span>
<span style="color:#7f007f">spring.hornetq.embedded.server-id</span>= <span style="color:#3f5f5f"><em># Server id. By default, an auto-incremented counter is used.</em></span>
<span style="color:#7f007f">spring.hornetq.embedded.topics</span>= <span style="color:#3f5f5f"><em># Comma-separated list of topics to create on startup.</em></span>
<span style="color:#7f007f">spring.hornetq.host</span>=localhost <span style="color:#3f5f5f"><em># HornetQ broker host.</em></span>
<span style="color:#7f007f">spring.hornetq.mode</span>= <span style="color:#3f5f5f"><em># HornetQ deployment mode, auto-detected by default. Can be explicitly set to "native" or "embedded".</em></span>
<span style="color:#7f007f">spring.hornetq.port</span>=5445 <span style="color:#3f5f5f"><em># HornetQ broker port.</em></span>
<span style="color:#3f5f5f"><em># JMS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/JmsProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/JmsProperties.java" class="link">JmsProperties</a>)
<span style="color:#7f007f">spring.jms.jndi-name</span>= <span style="color:#3f5f5f"><em># Connection factory JNDI name. When set, takes precedence to others connection factory auto-configurations.</em></span>
<span style="color:#7f007f">spring.jms.listener.acknowledge-mode</span>= <span style="color:#3f5f5f"><em># Acknowledge mode of the container. By default, the listener is transacted with automatic acknowledgment.</em></span>
<span style="color:#7f007f">spring.jms.listener.auto-startup</span>=true <span style="color:#3f5f5f"><em># Start the container automatically on startup.</em></span>
<span style="color:#7f007f">spring.jms.listener.concurrency</span>= <span style="color:#3f5f5f"><em># Minimum number of concurrent consumers.</em></span>
<span style="color:#7f007f">spring.jms.listener.max-concurrency</span>= <span style="color:#3f5f5f"><em># Maximum number of concurrent consumers.</em></span>
<span style="color:#7f007f">spring.jms.pub-sub-domain</span>=false <span style="color:#3f5f5f"><em># Specify if the default destination type is topic.</em></span>
<span style="color:#3f5f5f"><em># RABBIT (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/amqp/RabbitProperties.java" class="link">RabbitProperties</a>)
<span style="color:#7f007f">spring.rabbitmq.addresses</span>= <span style="color:#3f5f5f"><em># Comma-separated list of addresses to which the client should connect to.</em></span>
<span style="color:#7f007f">spring.rabbitmq.dynamic</span>=true <span style="color:#3f5f5f"><em># Create an AmqpAdmin bean.</em></span>
<span style="color:#7f007f">spring.rabbitmq.host</span>=localhost <span style="color:#3f5f5f"><em># RabbitMQ host.</em></span>
<span style="color:#7f007f">spring.rabbitmq.listener.acknowledge-mode</span>= <span style="color:#3f5f5f"><em># Acknowledge mode of container.</em></span>
<span style="color:#7f007f">spring.rabbitmq.listener.auto-startup</span>=true <span style="color:#3f5f5f"><em># Start the container automatically on startup.</em></span>
<span style="color:#7f007f">spring.rabbitmq.listener.concurrency</span>= <span style="color:#3f5f5f"><em># Minimum number of consumers.</em></span>
<span style="color:#7f007f">spring.rabbitmq.listener.max-concurrency</span>= <span style="color:#3f5f5f"><em># Maximum number of consumers.</em></span>
<span style="color:#7f007f">spring.rabbitmq.listener.prefetch</span>= <span style="color:#3f5f5f"><em># Number of messages to be handled in a single request. It should be greater than or equal to the transaction size (if used).</em></span>
<span style="color:#7f007f">spring.rabbitmq.listener.transaction-size</span>= <span style="color:#3f5f5f"><em># Number of messages to be processed in a transaction. For best results it should be less than or equal to the prefetch count.</em></span>
<span style="color:#7f007f">spring.rabbitmq.password</span>= <span style="color:#3f5f5f"><em># Login to authenticate against the broker.</em></span>
<span style="color:#7f007f">spring.rabbitmq.port</span>=5672 <span style="color:#3f5f5f"><em># RabbitMQ port.</em></span>
<span style="color:#7f007f">spring.rabbitmq.requested-heartbeat</span>= <span style="color:#3f5f5f"><em># Requested heartbeat timeout, in seconds; zero for none.</em></span>
<span style="color:#7f007f">spring.rabbitmq.ssl.enabled</span>=false <span style="color:#3f5f5f"><em># Enable SSL support.</em></span>
<span style="color:#7f007f">spring.rabbitmq.ssl.key-store</span>= <span style="color:#3f5f5f"><em># Path to the key store that holds the SSL certificate.</em></span>
<span style="color:#7f007f">spring.rabbitmq.ssl.key-store-password</span>= <span style="color:#3f5f5f"><em># Password used to access the key store.</em></span>
<span style="color:#7f007f">spring.rabbitmq.ssl.trust-store</span>= <span style="color:#3f5f5f"><em># Trust store that holds SSL certificates.</em></span>
<span style="color:#7f007f">spring.rabbitmq.ssl.trust-store-password</span>= <span style="color:#3f5f5f"><em># Password used to access the trust store.</em></span>
<span style="color:#7f007f">spring.rabbitmq.ssl.algorithm</span>= <span style="color:#3f5f5f"><em># SSL algorithm to use. By default configure by the rabbit client library.</em></span>
<span style="color:#7f007f">spring.rabbitmq.username</span>= <span style="color:#3f5f5f"><em># Login user to authenticate to the broker.</em></span>
<span style="color:#7f007f">spring.rabbitmq.virtual-host</span>= <span style="color:#3f5f5f"><em># Virtual host to use when connecting to the broker.</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># ACTUATOR PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># ENDPOINTS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/AbstractEndpoint.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/AbstractEndpoint.java" class="link">AbstractEndpoint</a> subclasses)
<span style="color:#7f007f">endpoints.enabled</span>=true <span style="color:#3f5f5f"><em># Enable endpoints.</em></span>
<span style="color:#7f007f">endpoints.sensitive</span>= <span style="color:#3f5f5f"><em># Default endpoint sensitive setting.</em></span>
<span style="color:#7f007f">endpoints.actuator.enabled</span>=true <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.actuator.path</span>= <span style="color:#3f5f5f"><em># Endpoint URL path.</em></span>
<span style="color:#7f007f">endpoints.actuator.sensitive</span>=false <span style="color:#3f5f5f"><em># Enable security on the endpoint.</em></span>
<span style="color:#7f007f">endpoints.autoconfig.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.autoconfig.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.autoconfig.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.beans.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.beans.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.beans.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.configprops.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.configprops.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.configprops.keys-to-sanitize</span>=password,secret,key,.*credentials.*,vcap_services <span style="color:#3f5f5f"><em># Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.</em></span>
<span style="color:#7f007f">endpoints.configprops.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.docs.curies.enabled</span>=false <span style="color:#3f5f5f"><em># Enable the curie generation.</em></span>
<span style="color:#7f007f">endpoints.docs.enabled</span>=true <span style="color:#3f5f5f"><em># Enable actuator docs endpoint.</em></span>
<span style="color:#7f007f">endpoints.docs.path</span>=/docs <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">endpoints.docs.sensitive</span>=false <span style="color:#3f5f5f"><em>#</em></span>
<span style="color:#7f007f">endpoints.dump.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.dump.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.dump.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.env.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.env.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.env.keys-to-sanitize</span>=password,secret,key,.*credentials.*,vcap_services <span style="color:#3f5f5f"><em># Keys that should be sanitized. Keys can be simple strings that the property ends with or regex expressions.</em></span>
<span style="color:#7f007f">endpoints.env.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.flyway.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.flyway.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.flyway.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.health.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.health.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.health.mapping.*</span>= <span style="color:#3f5f5f"><em># Mapping of health statuses to HttpStatus codes. By default, registered health statuses map to sensible defaults (i.e. UP maps to 200).</em></span>
<span style="color:#7f007f">endpoints.health.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.health.time-to-live</span>=1000 <span style="color:#3f5f5f"><em># Time to live for cached result, in milliseconds.</em></span>
<span style="color:#7f007f">endpoints.info.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.info.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.info.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.jolokia.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Jolokia endpoint.</em></span>
<span style="color:#7f007f">endpoints.jolokia.path</span>=/jolokia <span style="color:#3f5f5f"><em># Endpoint URL path.</em></span>
<span style="color:#7f007f">endpoints.jolokia.sensitive</span>=true <span style="color:#3f5f5f"><em># Enable security on the endpoint.</em></span>
<span style="color:#7f007f">endpoints.liquibase.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.liquibase.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.liquibase.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.logfile.enabled</span>=true <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.logfile.path</span>=/logfile <span style="color:#3f5f5f"><em># Endpoint URL path.</em></span>
<span style="color:#7f007f">endpoints.logfile.sensitive</span>=true <span style="color:#3f5f5f"><em># Enable security on the endpoint.</em></span>
<span style="color:#7f007f">endpoints.mappings.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.mappings.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.mappings.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.metrics.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.metrics.filter.enabled</span>=true <span style="color:#3f5f5f"><em># Enable the metrics servlet filter.</em></span>
<span style="color:#7f007f">endpoints.metrics.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.metrics.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.shutdown.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.shutdown.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.shutdown.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#7f007f">endpoints.trace.enabled</span>= <span style="color:#3f5f5f"><em># Enable the endpoint.</em></span>
<span style="color:#7f007f">endpoints.trace.id</span>= <span style="color:#3f5f5f"><em># Endpoint identifier.</em></span>
<span style="color:#7f007f">endpoints.trace.sensitive</span>= <span style="color:#3f5f5f"><em># Mark if the endpoint exposes sensitive information.</em></span>
<span style="color:#3f5f5f"><em># ENDPOINTS CORS CONFIGURATION (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointCorsProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointCorsProperties.java" class="link">EndpointCorsProperties</a>)
<span style="color:#7f007f">endpoints.cors.allow-credentials</span>= <span style="color:#3f5f5f"><em># Set whether credentials are supported. When not set, credentials are not supported.</em></span>
<span style="color:#7f007f">endpoints.cors.allowed-headers</span>= <span style="color:#3f5f5f"><em># Comma-separated list of headers to allow in a request. '*' allows all headers.</em></span>
<span style="color:#7f007f">endpoints.cors.allowed-methods</span>=GET <span style="color:#3f5f5f"><em># Comma-separated list of methods to allow. '*' allows all methods.</em></span>
<span style="color:#7f007f">endpoints.cors.allowed-origins</span>= <span style="color:#3f5f5f"><em># Comma-separated list of origins to allow. '*' allows all origins. When not set, CORS support is disabled.</em></span>
<span style="color:#7f007f">endpoints.cors.exposed-headers</span>= <span style="color:#3f5f5f"><em># Comma-separated list of headers to include in a response.</em></span>
<span style="color:#7f007f">endpoints.cors.max-age</span>=1800 <span style="color:#3f5f5f"><em># How long, in seconds, the response from a pre-flight request can be cached by clients.</em></span>
<span style="color:#3f5f5f"><em># JMX ENDPOINT (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointMBeanExportProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/EndpointMBeanExportProperties.java" class="link">EndpointMBeanExportProperties</a>)
<span style="color:#7f007f">endpoints.jmx.domain</span>= <span style="color:#3f5f5f"><em># JMX domain name. Initialized with the value of 'spring.jmx.default-domain' if set.</em></span>
<span style="color:#7f007f">endpoints.jmx.enabled</span>=true <span style="color:#3f5f5f"><em># Enable JMX export of all endpoints.</em></span>
<span style="color:#7f007f">endpoints.jmx.static-names</span>= <span style="color:#3f5f5f"><em># Additional static properties to append to all ObjectNames of MBeans representing Endpoints.</em></span>
<span style="color:#7f007f">endpoints.jmx.unique-names</span>=false <span style="color:#3f5f5f"><em># Ensure that ObjectNames are modified in case of conflict.</em></span>
<span style="color:#3f5f5f"><em># JOLOKIA (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/JolokiaProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/JolokiaProperties.java" class="link">JolokiaProperties</a>)
<span style="color:#7f007f">jolokia.config.*</span>= <span style="color:#3f5f5f"><em># See Jolokia manual</em></span>
<span style="color:#3f5f5f"><em># MANAGEMENT HTTP SERVER (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ManagementServerProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/autoconfigure/ManagementServerProperties.java" class="link">ManagementServerProperties</a>)
<span style="color:#7f007f">management.add-application-context-header</span>=true <span style="color:#3f5f5f"><em># Add the "X-Application-Context" HTTP header in each response.</em></span>
<span style="color:#7f007f">management.address</span>= <span style="color:#3f5f5f"><em># Network address that the management endpoints should bind to.</em></span>
<span style="color:#7f007f">management.context-path</span>= <span style="color:#3f5f5f"><em># Management endpoint context-path. For instance `/actuator`</em></span>
<span style="color:#7f007f">management.port</span>= <span style="color:#3f5f5f"><em># Management endpoint HTTP port. Use the same port as the application by default.</em></span>
<span style="color:#7f007f">management.security.enabled</span>=true <span style="color:#3f5f5f"><em># Enable security.</em></span>
<span style="color:#7f007f">management.security.role</span>=ADMIN <span style="color:#3f5f5f"><em># Role required to access the management endpoint.</em></span>
<span style="color:#7f007f">management.security.sessions</span>=stateless <span style="color:#3f5f5f"><em># Session creating policy to use (always, never, if_required, stateless).</em></span>
<span style="color:#3f5f5f"><em># HEALTH INDICATORS (previously health.*)</em></span>
<span style="color:#7f007f">management.health.db.enabled</span>=true <span style="color:#3f5f5f"><em># Enable database health check.</em></span>
<span style="color:#7f007f">management.health.defaults.enabled</span>=true <span style="color:#3f5f5f"><em># Enable default health indicators.</em></span>
<span style="color:#7f007f">management.health.diskspace.enabled</span>=true <span style="color:#3f5f5f"><em># Enable disk space health check.</em></span>
<span style="color:#7f007f">management.health.diskspace.path</span>= <span style="color:#3f5f5f"><em># Path used to compute the available disk space.</em></span>
<span style="color:#7f007f">management.health.diskspace.threshold</span>=0 <span style="color:#3f5f5f"><em># Minimum disk space that should be available, in bytes.</em></span>
<span style="color:#7f007f">management.health.elasticsearch.enabled</span>=true <span style="color:#3f5f5f"><em># Enable elasticsearch health check.</em></span>
<span style="color:#7f007f">management.health.elasticsearch.indices</span>= <span style="color:#3f5f5f"><em># Comma-separated index names.</em></span>
<span style="color:#7f007f">management.health.elasticsearch.response-timeout</span>=100 <span style="color:#3f5f5f"><em># The time, in milliseconds, to wait for a response from the cluster.</em></span>
<span style="color:#7f007f">management.health.jms.enabled</span>=true <span style="color:#3f5f5f"><em># Enable JMS health check.</em></span>
<span style="color:#7f007f">management.health.mail.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Mail health check.</em></span>
<span style="color:#7f007f">management.health.mongo.enabled</span>=true <span style="color:#3f5f5f"><em># Enable MongoDB health check.</em></span>
<span style="color:#7f007f">management.health.rabbit.enabled</span>=true <span style="color:#3f5f5f"><em># Enable RabbitMQ health check.</em></span>
<span style="color:#7f007f">management.health.redis.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Redis health check.</em></span>
<span style="color:#7f007f">management.health.solr.enabled</span>=true <span style="color:#3f5f5f"><em># Enable Solr health check.</em></span>
<span style="color:#7f007f">management.health.status.order</span>=DOWN, OUT_OF_SERVICE, UNKNOWN, UP <span style="color:#3f5f5f"><em># Comma-separated list of health statuses in order of severity.</em></span>
<span style="color:#3f5f5f"><em># TRACING ((</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/TraceProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/TraceProperties.java" class="link">TraceProperties</a>)
<span style="color:#7f007f">management.trace.include</span>=request-headers,response-headers,errors <span style="color:#3f5f5f"><em># Items to be included in the trace.</em></span>
<span style="color:#3f5f5f"><em># REMOTE SHELL</em></span>
<span style="color:#7f007f">shell.auth</span>=simple <span style="color:#3f5f5f"><em># Authentication type. Auto-detected according to the environment.</em></span>
<span style="color:#7f007f">shell.auth.jaas.domain</span>=my-domain <span style="color:#3f5f5f"><em># JAAS domain.</em></span>
<span style="color:#7f007f">shell.auth.key.path</span>= <span style="color:#3f5f5f"><em># Path to the authentication key. This should point to a valid ".pem" file.</em></span>
<span style="color:#7f007f">shell.auth.simple.user.name</span>=user <span style="color:#3f5f5f"><em># Login user.</em></span>
<span style="color:#7f007f">shell.auth.simple.user.password</span>= <span style="color:#3f5f5f"><em># Login password.</em></span>
<span style="color:#7f007f">shell.auth.spring.roles</span>=ADMIN <span style="color:#3f5f5f"><em># Comma-separated list of required roles to login to the CRaSH console.</em></span>
<span style="color:#7f007f">shell.command-path-patterns</span>=classpath*:/commands/**,classpath*:/crash/commands/** <span style="color:#3f5f5f"><em># Patterns to use to look for commands.</em></span>
<span style="color:#7f007f">shell.command-refresh-interval</span>=-1 <span style="color:#3f5f5f"><em># Scan for changes and update the command if necessary (in seconds).</em></span>
<span style="color:#7f007f">shell.config-path-patterns</span>=classpath*:/crash/* <span style="color:#3f5f5f"><em># Patterns to use to look for configurations.</em></span>
<span style="color:#7f007f">shell.disabled-commands</span>=jpa*,jdbc*,jndi* <span style="color:#3f5f5f"><em># Comma-separated list of commands to disable.</em></span>
<span style="color:#7f007f">shell.disabled-plugins</span>= <span style="color:#3f5f5f"><em># Comma-separated list of plugins to disable. Certain plugins are disabled by default based on the environment.</em></span>
<span style="color:#7f007f">shell.ssh.auth-timeout </span>= <span style="color:#3f5f5f"><em># Number of milliseconds after user will be prompted to login again.</em></span>
<span style="color:#7f007f">shell.ssh.enabled</span>=true <span style="color:#3f5f5f"><em># Enable CRaSH SSH support.</em></span>
<span style="color:#7f007f">shell.ssh.idle-timeout </span>= <span style="color:#3f5f5f"><em># Number of milliseconds after which unused connections are closed.</em></span>
<span style="color:#7f007f">shell.ssh.key-path</span>= <span style="color:#3f5f5f"><em># Path to the SSH server key.</em></span>
<span style="color:#7f007f">shell.ssh.port</span>=2000 <span style="color:#3f5f5f"><em># SSH port.</em></span>
<span style="color:#7f007f">shell.telnet.enabled</span>=false <span style="color:#3f5f5f"><em># Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is available.</em></span>
<span style="color:#7f007f">shell.telnet.port</span>=5000 <span style="color:#3f5f5f"><em># Telnet port.</em></span>
<span style="color:#3f5f5f"><em># GIT INFO</em></span>
<span style="color:#7f007f">spring.git.properties</span>= <span style="color:#3f5f5f"><em># Resource reference to a generated git info properties file.</em></span>
<span style="color:#3f5f5f"><em># METRICS EXPORT (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/MetricExportProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/export/MetricExportProperties.java" class="link">MetricExportProperties</a>)
<span style="color:#7f007f">spring.metrics.export.aggregate.key-pattern</span>= <span style="color:#3f5f5f"><em># Pattern that tells the aggregator what to do with the keys from the source repository.</em></span>
<span style="color:#7f007f">spring.metrics.export.aggregate.prefix</span>= <span style="color:#3f5f5f"><em># Prefix for global repository if active.</em></span>
<span style="color:#7f007f">spring.metrics.export.delay-millis</span>=5000 <span style="color:#3f5f5f"><em># Delay in milliseconds between export ticks. Metrics are exported to external sources on a schedule with this delay.</em></span>
<span style="color:#7f007f">spring.metrics.export.enabled</span>=true <span style="color:#3f5f5f"><em># Flag to enable metric export (assuming a MetricWriter is available).</em></span>
<span style="color:#7f007f">spring.metrics.export.excludes</span>= <span style="color:#3f5f5f"><em># List of patterns for metric names to exclude. Applied after the includes.</em></span>
<span style="color:#7f007f">spring.metrics.export.includes</span>= <span style="color:#3f5f5f"><em># List of patterns for metric names to include.</em></span>
<span style="color:#7f007f">spring.metrics.export.redis.key</span>=keys.spring.metrics <span style="color:#3f5f5f"><em># Key for redis repository export (if active).</em></span>
<span style="color:#7f007f">spring.metrics.export.redis.prefix</span>=spring.metrics <span style="color:#3f5f5f"><em># Prefix for redis repository if active.</em></span>
<span style="color:#7f007f">spring.metrics.export.send-latest</span>= <span style="color:#3f5f5f"><em># Flag to switch off any available optimizations based on not exporting unchanged metric values.</em></span>
<span style="color:#7f007f">spring.metrics.export.statsd.host</span>= <span style="color:#3f5f5f"><em># Host of a statsd server to receive exported metrics.</em></span>
<span style="color:#7f007f">spring.metrics.export.statsd.port</span>=8125 <span style="color:#3f5f5f"><em># Port of a statsd server to receive exported metrics.</em></span>
<span style="color:#7f007f">spring.metrics.export.statsd.prefix</span>= <span style="color:#3f5f5f"><em># Prefix for statsd exported metrics.</em></span>
<span style="color:#7f007f">spring.metrics.export.triggers.*</span>= <span style="color:#3f5f5f"><em># Specific trigger properties per MetricWriter bean name.</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># DEVTOOLS PROPERTIES</em></span>
<span style="color:#3f5f5f"><em># ----------------------------------------</em></span>
<span style="color:#3f5f5f"><em># DEVTOOLS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsProperties.java" class="link">DevToolsProperties</a>)
<span style="color:#7f007f">spring.devtools.livereload.enabled</span>=true <span style="color:#3f5f5f"><em># Enable a livereload.com compatible server.</em></span>
<span style="color:#7f007f">spring.devtools.livereload.port</span>=35729 <span style="color:#3f5f5f"><em># Server port.</em></span>
<span style="color:#7f007f">spring.devtools.restart.additional-exclude</span>= <span style="color:#3f5f5f"><em># Additional patterns that should be excluded from triggering a full restart.</em></span>
<span style="color:#7f007f">spring.devtools.restart.additional-paths</span>= <span style="color:#3f5f5f"><em># Additional paths to watch for changes.</em></span>
<span style="color:#7f007f">spring.devtools.restart.enabled</span>=true <span style="color:#3f5f5f"><em># Enable automatic restart.</em></span>
<span style="color:#7f007f">spring.devtools.restart.exclude</span>=META-INF/maven/**,META-INF/resources/**,resources/**,static/**,public/**,templates/**,**/*Test.class,**/*Tests.class,git.properties <span style="color:#3f5f5f"><em># Patterns that should be excluded from triggering a full restart.</em></span>
<span style="color:#7f007f">spring.devtools.restart.poll-interval</span>=1000 <span style="color:#3f5f5f"><em># Amount of time (in milliseconds) to wait between polling for classpath changes.</em></span>
<span style="color:#7f007f">spring.devtools.restart.quiet-period</span>=400 <span style="color:#3f5f5f"><em># Amount of quiet time (in milliseconds) required without any classpath changes before a restart is triggered.</em></span>
<span style="color:#7f007f">spring.devtools.restart.trigger-file</span>= <span style="color:#3f5f5f"><em># Name of a specific file that when changed will trigger the restart check. If not specified any classpath file change will trigger the restart.</em></span>
<span style="color:#3f5f5f"><em># REMOTE DEVTOOLS (</em></span><a data-cke-saved-href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/RemoteDevToolsProperties.java" href="https://github.com/spring-projects/spring-boot/tree/v1.3.7.RELEASE/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/RemoteDevToolsProperties.java" class="link">RemoteDevToolsProperties</a>)
<span style="color:#7f007f">spring.devtools.remote.context-path</span>=/.~~spring-boot!~ <span style="color:#3f5f5f"><em># Context path used to handle the remote connection.</em></span>
<span style="color:#7f007f">spring.devtools.remote.debug.enabled</span>=true <span style="color:#3f5f5f"><em># Enable remote debug support.</em></span>
<span style="color:#7f007f">spring.devtools.remote.debug.local-port</span>=8000 <span style="color:#3f5f5f"><em># Local remote debug server port.</em></span>
<span style="color:#7f007f">spring.devtools.remote.proxy.host</span>= <span style="color:#3f5f5f"><em># The host of the proxy to use to connect to the remote application.</em></span>
<span style="color:#7f007f">spring.devtools.remote.proxy.port</span>= <span style="color:#3f5f5f"><em># The port of the proxy to use to connect to the remote application.</em></span>
<span style="color:#7f007f">spring.devtools.remote.restart.enabled</span>=true <span style="color:#3f5f5f"><em># Enable remote restart.</em></span>
<span style="color:#7f007f">spring.devtools.remote.secret</span>= <span style="color:#3f5f5f"><em># A shared secret required to establish a connection (required to enable remote support).</em></span>
<span style="color:#7f007f">spring.devtools.remote.secret-header-name</span>=X-AUTH-TOKEN <span style="color:#3f5f5f"><em># HTTP header used to transfer the shared secret.</em></span></span></span>
Appendix B. Configuration meta-data
Spring Boot jars are shipped with meta-data files that provide details of all supported configuration properties. The files are designed to allow IDE developers to offer contextual help and “code completion” as users are working with application.properties
or application.yml
files.
The majority of the meta-data file is generated automatically at compile time by processing all items annotated with @ConfigurationProperties
. However, it is possible to write part of the meta-data manually for corner cases or more advanced use cases.
B.1 Meta-data format
Configuration meta-data files are located inside jars under META-INF/spring-configuration-metadata.json
They use a simple JSON format with items categorized under either “groups” or “properties” and additional values hint categorized under "hints":
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"groups"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"server"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"type"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.web.ServerProperties"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"sourceType"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.web.ServerProperties"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring.jpa.hibernate"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"type"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.orm.jpa.JpaProperties$Hibernate"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"sourceType"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.orm.jpa.JpaProperties"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"sourceMethod"</span>: <span style="color:#2a00ff">"getHibernate()"</span>
<span style="color:#7f0055"><strong>}</strong></span>
...
],<span style="color:#2a00ff">"properties"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"server.port"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"type"</span>: <span style="color:#2a00ff">"java.lang.Integer"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"sourceType"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.web.ServerProperties"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"server.servlet-path"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"type"</span>: <span style="color:#2a00ff">"java.lang.String"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"sourceType"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.web.ServerProperties"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"defaultValue"</span>: <span style="color:#2a00ff">"/"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring.jpa.hibernate.ddl-auto"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"type"</span>: <span style="color:#2a00ff">"java.lang.String"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"DDL mode. This is actually a shortcut for the \"hibernate.hbm2ddl.auto\" property."</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"sourceType"</span>: <span style="color:#2a00ff">"org.springframework.boot.autoconfigure.orm.jpa.JpaProperties$Hibernate"</span>
<span style="color:#7f0055"><strong>}</strong></span>
...
],<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring.jpa.hibernate.ddl-auto"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"values"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"none"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"Disable DDL handling."</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"validate"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"Validate the schema, make no changes to the database."</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"update"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"Update the schema if necessary."</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"create"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"Create the schema and destroy previous data."</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"create-drop"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"Create and then destroy the schema at the end of the session."</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
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 inapplication.properties
as follows:
<span style="color:#333333"><span style="color:#000000"><span style="color:#7f007f">server.port</span>=9090
<span style="color:#7f007f">server.servlet-path</span>=/home</span></span>
The “groups” are higher level items that don’t 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.
It is not required that every “property” has a “group”, some properties might just exist in their own right. |
Finally, “hints” are additional information used to assist the user in configuring a given property. When configuring the spring.jpa.hibernate.ddl-auto
property, a tool can use it to offer some auto-completion help for the none
, validate
, update
, create
and create-drop
values.
B.1.1 Group Attributes
The JSON object contained in the groups
array can contain the following attributes:
Name | Type | Purpose |
---|---|---|
| String | The full name of the group. This attribute is mandatory. |
| String | The class name of the data type of the group. For example, if the group was based on a class annotated with |
| String | A short description of the group that can be displayed to users. May be omitted if no description is available. It is recommended that descriptions are a short paragraphs, with the first line providing a concise summary. The last line in the description should end with a period ( |
| String | The class name of the source that contributed this group. For example, if the group was based on a |
| String | The full name of the method (include parenthesis and argument types) that contributed this group. For example, the name of a |
B.1.2 Property Attributes
The JSON object contained in the properties
array can contain the following attributes:
Name | Type | Purpose |
---|---|---|
| String | The full name of the property. Names are in lowercase dashed form (e.g. |
| String | The class name of the data type of the property. For example, |
| String | A short description of the group that can be displayed to users. May be omitted if no description is available. It is recommended that descriptions are a short paragraphs, with the first line providing a concise summary. The last line in the description should end with a period ( |
| String | The class name of the source that contributed this property. For example, if the property was from a class annotated with |
| Object | 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. |
| Deprecation | Specify if the property is deprecated. May be omitted if the field is not deprecated or if that information is not known. See below for more details. |
The JSON object contained in the deprecation
attribute of each properties
element can contain the following attributes:
Name | Type | Purpose |
---|---|---|
| String | A short description of the reason why the property was deprecated. May be omitted if no reason is available. It is recommended that descriptions are a short paragraphs, with the first line providing a concise summary. The last line in the description should end with a period ( |
| String | The full name of the property that is replacing this deprecated property. May be omitted if there is no replacement for this property. |
Prior to Spring Boot 1.3, a single |
Deprecation can also be specified declaratively in code by adding the @DeprecatedConfigurationProperty
annotation to the getter exposing the deprecated property. For instance, let’s assume the app.foo.target
property was confusing and was renamed to app.foo.name
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@ConfigurationProperties("app.foo")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> FooProperties {
<span style="color:#7f0055"><strong>private</strong></span> String name;
<span style="color:#7f0055"><strong>public</strong></span> String getName() { ... }
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> setName(String name) { ... }
<em><span style="color:gray">@DeprecatedConfigurationProperty(replacement = "app.foo.name")</span></em>
<em><span style="color:gray">@Deprecated</span></em>
<span style="color:#7f0055"><strong>public</strong></span> String getTarget() {
<span style="color:#7f0055"><strong>return</strong></span> getName();
}
<em><span style="color:gray">@Deprecated</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>void</strong></span> setTarget(String target) {
setName(target);
}
}</span></span>
The code above makes sure that the deprecated property still works (delegating to the name
property behind the scenes). Once the getTarget
and setTarget
methods can be removed from your public API, the automatic deprecation hint in the meta-data will go away as well.
B.1.3 Hint Attributes
The JSON object contained in the hints
array can contain the following attributes:
Name | Type | Purpose |
---|---|---|
| String | The full name of the property that this hint refers to. Names are in lowercase dashed form (e.g. |
| ValueHint[] | A list of valid values as defined by the |
| ValueProvider[] | A list of providers as defined by the |
The JSON object contained in the values
attribute of each hint
element can contain the following attributes:
Name | Type | Purpose |
---|---|---|
| Object | A valid value for the element to which the hint refers to. Can also be an array of value(s) if the type of the property is an array. This attribute is mandatory. |
| String | A short description of the value that can be displayed to users. May be omitted if no description is available. It is recommended that descriptions are a short paragraphs, with the first line providing a concise summary. The last line in the description should end with a period ( |
The JSON object contained in the providers
attribute of each hint
element can contain the following attributes:
Name | Type | Purpose |
---|---|---|
| String | The name of the provider to use to offer additional content assistance for the element to which the hint refers to. |
| JSON object | Any additional parameter that the provider supports (check the documentation of the provider for more details). |
B.1.4 Repeated meta-data items
It is perfectly acceptable for “property” and “group” objects with the same name to appear multiple times within a meta-data file. For example, Spring Boot bindsspring.datasource
properties to Hikari, Tomcat and DBCP classes, with each potentially offering overlap of property names. Consumers of meta-data should take care to ensure that they support such scenarios.
B.2 Providing manual hints
To improve the user experience and further assist the user in configuring a given property, you can provide additional meta-data that:
- Describes the list of potential values for a property.
- Associates a provider to attach a well-defined semantic to a property so that a tool can discover the list of potential values based on the project’s context.
B.2.1 Value hint
The name
attribute of each hint refers to the name
of a property. In the initial example above, we provide 5 values for the spring.jpa.hibernate.ddl-auto
property: none
, validate
, update
, create
and create-drop
. Each value may have a description as well.
If your property is of type Map
, you can provide hints for both the keys and the values (but not for the map itself). The special .keys
and .values
suffixes must be used to refer to the keys and the values respectively.
Let’s assume a foo.contexts
that maps magic String values to an integer:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@ConfigurationProperties("foo")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> FooProperties {
<span style="color:#7f0055"><strong>private</strong></span> Map<String,Integer> contexts;
<span style="color:#3f5f5f"><em>// getters and setters</em></span>
}</span></span>
The magic values are foo and bar for instance. In order to offer additional content assistance for the keys, you could add the following to the manual meta-data of the module:
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"foo.contexts.keys"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"values"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"foo"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"bar"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
Of course, you should have an |
B.2.2 Value provider
Providers are a powerful way of attaching semantics to a property. We define in the section below the official providers that you can use for your own hints. Bare in mind however that your favorite IDE may implement some of these or none of them. It could eventually provide its own as well.
As this is a new feature, IDE vendors will have to catch up with this new feature. |
The table below summarizes the list of supported providers:
Name | Description |
---|---|
| Permit any additional value to be provided. |
| Auto-complete the classes available in the project. Usually constrained by a base class that is specified via the |
| Handle the property as if it was defined by the type defined via the mandatory |
| Auto-complete valid logger names. Typically, package and class names available in the current project can be auto-completed. |
| Auto-complete the available bean names in the current project. Usually constrained by a base class that is specified via the |
| Auto-complete the available Spring profile names in the project. |
No more than one provider can be active for a given property but you can specify several providers if they can all manage the property in some ways. Make sure to place the most powerful provider first as the IDE must use the first one in the JSON section it can handle. If no provider for a given property is supported, no special content assistance is provided either. |
Any
The any provider permits any additional values to be provided. Regular value validation based on the property type should be applied if this is supported.
This provider will be typically used if you have a list of values and any extra values are still to be considered as valid.
The example below offers on
and off
as auto-completion values for system.state
; any other value is also allowed:
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"system.state"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"values"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"on"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"off"</span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"any"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
Class reference
The class-reference provider auto-completes classes available in the project. This provider supports these parameters:
Parameter | Type | Default value | Description |
---|---|---|---|
|
| none | The fully qualified name of the class that should be assignable to the chosen value. Typically used to filter out non candidate classes. Note that this information can be provided by the type itself by exposing a class with the appropriate upper bound. |
|
| true | Specify if only concrete classes are to be considered as valid candidates. |
The meta-data snippet below corresponds to the standard server.jsp-servlet.class-name
property that defines the JspServlet
class name to use:
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"server.jsp-servlet.class-name"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"class-reference"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"parameters"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"target"</span>: <span style="color:#2a00ff">"javax.servlet.http.HttpServlet"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
Handle As
The handle-as provider allows you to substitute the type of the property to a more high-level type. This typically happens when the property has a java.lang.String
type because you don’t want your configuration classes to rely on classes that may not be on the classpath. This provider supports these parameters:
Parameter | Type | Default value | Description |
---|---|---|---|
|
| none | The fully qualified name of the type to consider for the property. This parameter is mandatory. |
The following types can be used:
- Any
java.lang.Enum
that lists the possible values for the property (By all means, try to define the property with theEnum
type instead as no further hint should be required for the IDE to auto-complete the values). java.nio.charset.Charset
: auto-completion of charset/encoding values (e.g.UTF-8
)java.util.Locale
: auto-completion of locales (e.g.en_US
)org.springframework.util.MimeType
: auto-completion of content type values (e.g.text/plain
)org.springframework.core.io.Resource
: auto-completion of Spring’s Resource abstraction to refer to a file on the filesystem or on the classpath. (e.g.classpath:/foo.properties
)
If multiple values can be provided, use a |
The meta-data snippet below corresponds to the standard liquibase.change-log
property that defines the path to the changelog to use. It is actually used internally as a org.springframework.core.io.Resource
but cannot be exposed as such as we need to keep the original String value to pass it to the Liquibase API.
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"liquibase.change-log"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"handle-as"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"parameters"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"target"</span>: <span style="color:#2a00ff">"org.springframework.core.io.Resource"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
Logger name
The logger-name provider auto-completes valid logger names. Typically, package and class names available in the current project can be auto-completed. Specific frameworks may have extra magic logger names that could be supported as well.
Since a logger name can be any arbitrary name, really, this provider should allow any value but could highlight valid packages and class names that are not available in the project’s classpath.
The meta-data snippet below corresponds to the standard logging.level
property, keys are logger names and values correspond to the standard log levels or any custom level:
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"logging.level.keys"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"values"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"root"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"description"</span>: <span style="color:#2a00ff">"Root logger used to assign the default logging level."</span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"logger-name"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"logging.level.values"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"values"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"trace"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"debug"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"info"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"warn"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"error"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"fatal"</span>
<span style="color:#7f0055"><strong>},</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"value"</span>: <span style="color:#2a00ff">"off"</span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"any"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
Spring bean reference
The spring-bean-reference provider auto-completes the beans that are defined in the configuration of the current project. This provider supports these parameters:
Parameter | Type | Default value | Description |
---|---|---|---|
|
| none | The fully qualified name of the bean class that should be assignable to the candidate. Typically used to filter out non candidate beans. |
The meta-data snippet below corresponds to the standard spring.jmx.server
property that defines the name of the MBeanServer
bean to use:
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring.jmx.server"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring-bean-reference"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"parameters"</span>: <span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"target"</span>: <span style="color:#2a00ff">"javax.management.MBeanServer"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
The binder is not aware of the meta-data so if you provide that hint, you will still need to transform the bean name into an actual Bean reference using the |
Spring profile name
The spring-profile-name provider auto-completes the Spring profiles that are defined in the configuration of the current project.
The meta-data snippet below corresponds to the standard spring.profiles.active
property that defines the name of the Spring profile(s) to enable:
<span style="color:#333333"><span style="color:#000000">{<span style="color:#2a00ff">"hints"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring.profiles.active"</span><span style="color:#7f0055"><strong>,</strong></span>
<span style="color:#2a00ff">"providers"</span>: <span style="color:#7f0055"><strong>[</strong></span>
<span style="color:#7f0055"><strong>{</strong></span>
<span style="color:#2a00ff">"name"</span>: <span style="color:#2a00ff">"spring-profile-name"</span>
<span style="color:#7f0055"><strong>}</strong></span>
<span style="color:#7f0055"><strong>]</strong></span>
<span style="color:#7f0055"><strong>}</strong></span>
]<span style="color:#7f0055"><strong>}</strong></span></span></span>
B.3 Generating your own meta-data using the annotation processor
You can easily generate your own configuration meta-data file from items annotated with @ConfigurationProperties
by using the spring-boot-configuration-processor
jar. The jar includes a Java annotation processor which is invoked as your project is compiled. To use the processor, simply include spring-boot-configuration-processor
as an optional dependency, for example with Maven you would add:
<span style="color:#333333"><span style="color:#000000"><span style="color:#3f7f7f"><dependency></span>
<span style="color:#3f7f7f"><groupId></span>org.springframework.boot<span style="color:#3f7f7f"></groupId></span>
<span style="color:#3f7f7f"><artifactId></span>spring-boot-configuration-processor<span style="color:#3f7f7f"></artifactId></span>
<span style="color:#3f7f7f"><optional></span>true<span style="color:#3f7f7f"></optional></span>
<span style="color:#3f7f7f"></dependency></span></span></span>
With Gradle, you can use the propdeps-plugin and specify:
<span style="color:#333333"><span style="color:#000000"> dependencies {
optional <span style="color:#2a00ff">"org.springframework.boot:spring-boot-configuration-processor"</span>
}
compileJava.dependsOn(processResources)
}</span></span>
You need to add |
The processor will pick up 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.
You should only use simple text with |
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.
If you are using AspectJ in your project, you need to make sure that the annotation processor only runs once. There are several ways to do this: with Maven, you can configure the |
B.3.1 Nested properties
The annotation processor will automatically consider inner classes as nested properties. For example, the following class:
<span style="color:#333333"><span style="color:#000000"><em><span style="color:gray">@ConfigurationProperties(prefix="server")</span></em>
<span style="color:#7f0055"><strong>public</strong></span> <span style="color:#7f0055"><strong>class</strong></span> ServerProperties {
<span style="color:#7f0055"><strong>private</strong></span> String name;
<span style="color:#7f0055"><strong>private</strong></span> Host host;
<span style="color:#3f5f5f"><em>// ... getter and setters</em></span>
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>static</strong></span> <span style="color:#7f0055"><strong>class</strong></span> Host {
<span style="color:#7f0055"><strong>private</strong></span> String ip;
<span style="color:#7f0055"><strong>private</strong></span> <span style="color:#7f0055"><strong>int</strong></span> port;
<span style="color:#3f5f5f"><em>// ... getter and setters</em></span>
}
}</span></span>
Will produce meta-data information for server.name
, server.host.ip
and server.host.port
properties. You can use the @NestedConfigurationProperty
annotation on a field to indicate that a regular (non-inner) class should be treated as if it were nested.
B.3.2 Adding additional meta-data
Spring Boot’s configuration file handling is quite flexible; and it is often the case that properties may exist that are not bound to a @ConfigurationProperties
bean. You may also need to tune some attributes of an existing key. To support such cases and allow you to provide custom "hints", the annotation processor will automatically merge items from META-INF/additional-spring-configuration-metadata.json
into the main meta-data file.
If you refer to a property that has been detected automatically, the description, default value and deprecation information are overridden if specified. If the manual property declaration is not identified in the current module, it is added as a brand new property.
The format of the additional-spring-configuration-metadata.json
file is exactly the same as the regular spring-configuration-metadata.json
. The additional properties file is optional, if you don’t have any additional properties, simply don’t add it.
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 theautoconfig
endpoint).
C.1 From the “spring-boot-autoconfigure” module
The following auto-configuration classes are from the spring-boot-autoconfigure
module:
Configuration Class | Links |
---|---|
C.2 From the “spring-boot-actuator” module
The following auto-configuration classes are from the spring-boot-actuator
module:
Configuration Class | Links |
---|---|
Appendix D. The executable jar format
The spring-boot-loader
modules allows Spring Boot to support executable jar and war files. If you’re using the Maven or Gradle plugin, executable jars are automatically generated and you generally won’t need to know the details of how they work.
If you need to create executable jars from a different build system, or if you are just curious about the underlying technology, this section provides some background.
D.1 Nested JARs
Java does not provide any standard way to load nested jar files (i.e. jar files that are themselves contained within a jar). This can be problematic if you are looking to distribute a self-contained application that you can just run from the command line without unpacking.
To solve this problem, many developers use “shaded” jars. A shaded jar simply packages all classes, from all jars, into a single 'uber jar'. The problem with shaded jars is that it becomes hard to see which libraries you are actually using in your application. It can also be problematic if the same filename is used (but with different content) in multiple jars. Spring Boot takes a different approach and allows you to actually nest jars directly.
D.1.1 The executable jar file structure
Spring Boot Loader compatible jar files should be structured in the following way:
<span style="color:#333333"><span style="color:#000000">example.jar
|
+-META-INF
| +-MANIFEST.MF
+-org
| +-springframework
| +-boot
| +-loader
| +-<spring boot loader classes>
+-com
| +-mycompany
| + project
| +-YouClasses.class
+-lib
+-dependency1.jar
+-dependency2.jar</span></span>
Dependencies should be placed in a nested lib
directory.
D.1.2 The executable war file structure
Spring Boot Loader compatible war files should be structured in the following way:
<span style="color:#333333"><span style="color:#000000">example.war
|
+-META-INF
| +-MANIFEST.MF
+-org
| +-springframework
| +-boot
| +-loader
| +-<spring boot loader classes>
+-WEB-INF
+-classes
| +-com
| +-mycompany
| +-project
| +-YouClasses.class
+-lib
| +-dependency1.jar
| +-dependency2.jar
+-lib-provided
+-servlet-api.jar
+-dependency3.jar</span></span>
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
.
D.2 Spring Boot’s “JarFile” class
The core class used to support loading nested jars is org.springframework.boot.loader.jar.JarFile
. It allows you load jar content from a standard jar file, or from nested child jar data. When first loaded, the location of each JarEntry
is mapped to a physical file offset of the outer jar:
<span style="color:#333333"><span style="color:#000000">myapp.jar
+---------+---------------------+
| | /lib/mylib.jar |
| A.class |+---------+---------+|
| || B.class | B.class ||
| |+---------+---------+|
+---------+---------------------+
^ ^ ^
0063 3452 3980</span></span>
The example above shows how A.class
can be found in myapp.jar
position 0063
. B.class
from the nested jar can actually be found in myapp.jar
position 3452
and B.class
is at position 3980
.
Armed with this information, we can load specific nested entries by simply seeking to appropriate part if the outer jar. We don’t need to unpack the archive and we don’t need to read all entry data into memory.
D.2.1 Compatibility with the standard Java “JarFile”
Spring Boot Loader strives to remain compatible with existing code and libraries. org.springframework.boot.loader.jar.JarFile
extends from java.util.jar.JarFile
and should work as a drop-in replacement. The getURL()
method will return a URL
that opens a java.net.JarURLConnection
compatible connection and can be used with Java’s URLClassLoader
.
D.3 Launching executable jars
The org.springframework.boot.loader.Launcher
class is a special bootstrap class that is used as an executable jars main entry point. It is the actual Main-Class
in your jar file and it’s used to setup an appropriate URLClassLoader
and ultimately call your main()
method.
There are 3 launcher subclasses (JarLauncher
, WarLauncher
and PropertiesLauncher
). Their purpose is to load resources (.class
files etc.) from nested jar files or war files in directories (as opposed to explicitly on the classpath). In the case of the [Jar|War]Launcher
the nested paths 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).
D.3.1 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:
<span style="color:#333333"><span style="color:#000000">Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.mycompany.project.MyApplication</span></span>
For a war file, it would be:
<span style="color:#333333"><span style="color:#000000">Main-Class: org.springframework.boot.loader.WarLauncher
Start-Class: com.mycompany.project.MyApplication</span></span>
You do not need to specify |
D.3.2 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:
<span style="color:#333333"><span style="color:#000000">$ unzip -q myapp.jar
$ java org.springframework.boot.loader.JarLauncher</span></span>
D.4 PropertiesLauncher Features
PropertiesLauncher
has a few special features that can be enabled with external properties (System properties, environment variables, manifest entries orapplication.properties
).
Key | Purpose |
---|---|
| Comma-separated Classpath, e.g. |
| Location of additional properties file, e.g. |
| Default arguments for the main method (space separated) |
| Name of main class to launch, e.g. |
| Name of properties file, e.g. |
| Path to properties file, e.g. |
| Boolean flag to indicate that all properties should be added to System properties (defaults to |
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
).
Build plugins automatically move the |
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 asloader.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).loader.path
(if empty) defaults tolib
(meaning a local directory or a nested one if running from an archive). Because of thisPropertiesLauncher
behaves the same asJarLauncher
when no additional configuration is provided.- Placeholder replacement is done from System and environment variables plus the properties file itself on all values before use.
D.5 Executable jar restrictions
There are a number of restrictions that you need to consider when working with a Spring Boot Loader packaged application.
D.5.1 Zip entry compression
The ZipEntry
for a nested jar must be saved using the ZipEntry.STORED
method. This is required so that we can seek directly to individual content within the nested jar. The content of the nested jar file itself can still be compressed, as can any other entries in the outer jar.
D.5.2 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.
D.6 Alternative single jar solutions
If the above restrictions mean that you cannot use Spring Boot Loader the following alternatives could be considered:
Appendix E. Dependency versions
The table below provides details of all of the dependency versions that are provided by Spring Boot in its CLI, Maven dependency management and Gradle plugin. When you declare a dependency on one of these artifacts without declaring a version the version that is listed in the table will be used.
Group ID | Artifact ID | Version |
---|---|---|
|
| 2.7.7 |
|
| 1.1.7 |
|
| 1.1.7 |
|
| 1.1.7 |
|
| 3.9.3 |
|
| 3.9.3 |
|
| 3.9.3 |
|
| 2.1.9 |
|
| 2.1.9 |
|
| 2.1.9 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 2.6.7 |
|
| 8.1.0 |
|
| 1.3 |
|
| 2.3.1 |
|
| 1.1.1 |
|
| 1.4.192 |
|
| 3.5.5 |
|
| 3.5.5 |
|
| 3.5.5 |
|
| 2.0.0 |
|
| 2.0.0 |
|
| 1.11 |
|
| 2.2.2 |
|
| 1.5.5 |
|
| 3.1.0 |
|
| 2.4.7 |
|
| 2.3.13 |
|
| 1.9.2 |
|
| 3.2.2 |
|
| 1.4 |
|
| 2.1 |
|
| 1.6 |
|
| 1.50.5 |
|
| 3.1.2 |
|
| 3.1.2 |
|
| 3.1.2 |
|
| 3.1.2 |
|
| 2.0.8.RELEASE |
|
| 2.0.8.RELEASE |
|
| 2.0.8.RELEASE |
|
| 2.0.8.RELEASE |
|
| 2.0.8.RELEASE |
|
| 2.0.8.RELEASE |
|
| 2.0.8.RELEASE |
|
| 2.0.7.RELEASE |
|
| 2.0.7.RELEASE |
|
| 2.0.7.RELEASE |
|
| 2.0.7.RELEASE |
|
| 1.3.23.Final |
|
| 1.3.23.Final |
|
| 1.3.23.Final |
|
| 1.0.0 |
|
| 1.1-rev-1 |
|
| 1.5.5 |
|
| 3.1.0 |
|
| 1.2 |
|
| 1.2 |
|
| 1.1.6 |
|
| 2.8.2 |
|
| 4.12 |
|
| 1.2.17 |
|
| 5.1.39 |
|
| 2.10.2.2.21 |
|
| 1.9.22 |
|
| 1.3.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 5.12.3 |
|
| 1.1.0 |
|
| 1.1.0 |
|
| 2.1.1 |
|
| 2.4.2 |
|
| 10.12.1.1 |
|
| 4.1.2 |
|
| 4.5.2 |
|
| 4.4.5 |
|
| 4.5.2 |
|
| 2.4.1 |
|
| 2.4.1 |
|
| 2.4.1 |
|
| 4.10.4 |
|
| 8.0.36 |
|
| 8.0.36 |
|
| 8.0.36 |
|
| 8.0.36 |
|
| 8.0.36 |
|
| 8.0.36 |
|
| 8.0.36 |
|
| 1.7 |
|
| 2.0 |
|
| 1.8.9 |
|
| 1.8.9 |
|
| 1.8.9 |
|
| 2.1.4 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.4.7 |
|
| 2.7.8 |
|
| 1.3.2 |
|
| 1.3.2 |
|
| 1.3.2 |
|
| 1.3.2 |
|
| 1.3.2 |
|
| 1.3.2 |
|
| 1.3.2 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 2.2.0.v201112011158 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 9.2.18.v20160721 |
|
| 1.5.2 |
|
| 2.2.10 |
|
| 2.2.10 |
|
| 2.2.10 |
|
| 3.2.1 |
|
| 2.3.25-incubating |
|
| 3.0.0 |
|
| 2.22.2 |
|
| 2.22.2 |
|
| 2.22.2 |
|
| 2.22.2 |
|
| 2.22.2 |
|
| 2.22.2 |
|
| 1.3 |
|
| 1.3 |
|
| 4.3.11.Final |
|
| 4.3.11.Final |
|
| 4.3.11.Final |
|
| 4.3.11.Final |
|
| 4.3.11.Final |
|
| 5.2.4.Final |
|
| 5.2.4.Final |
|
| 2.4.7.Final |
|
| 2.4.7.Final |
|
| 2.3.3 |
|
| 8.0.2.Final |
|
| 8.0.2.Final |
|
| 3.18.1-GA |
|
| 3.3.0.Final |
|
| 2.0.6 |
|
| 1.3.3 |
|
| 3.7.4 |
|
| 3.7.4 |
|
| 3.7.4 |
|
| 20140107 |
|
| 3.4.2 |
|
| 1.2.3 |
|
| 1.10.19 |
|
| 2.13.3 |
|
| 9.4.1209.jre7 |
|
| 1.2.3 |
|
| 1.7.21 |
|
| 1.7.21 |
|
| 1.7.21 |
|
| 1.7.21 |
|
| 1.7.21 |
|
| 1.7.21 |
|
| 1.7.21 |
|
| 1.0-groovy-2.4 |
|
| 1.0-groovy-2.4 |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 1.2.6.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 4.2.7.RELEASE |
|
| 1.5.6.RELEASE |
|
| 1.5.6.RELEASE |
|
| 3.0.7.RELEASE |
|
| 3.0.7.RELEASE |
|
| 3.0.7.RELEASE |
|
| 3.0.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.3.7.RELEASE |
|
| 1.2.3.RELEASE |
|
| 1.2.3.RELEASE |
|
| 1.2.3.RELEASE |
|
| 1.2.3.RELEASE |
|
| 1.2.3.RELEASE |
|
| 1.3.4.RELEASE |
|
| 1.3.4.RELEASE |
|
| 1.11.4.RELEASE |
|
| 1.4.4.RELEASE |
|
| 1.3.4.RELEASE |
|
| 1.7.4.RELEASE |
|
| 1.9.4.RELEASE |
|
| 1.0.4.RELEASE |
|
| 1.8.4.RELEASE |
|
| 1.8.4.RELEASE |
|
| 1.8.4.RELEASE |
|
| 3.4.4.RELEASE |
|
| 1.6.4.RELEASE |
|
| 2.4.4.RELEASE |
|
| 2.4.4.RELEASE |
|
| 2.4.4.RELEASE |
|
| 1.5.4.RELEASE |
|
| 0.19.0.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 4.2.9.RELEASE |
|
| 1.1.5.RELEASE |
|
| 1.2.0.RELEASE |
|
| 1.0.2.RELEASE |
|
| 1.0.2.RELEASE |
|
| 1.1.3.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 1.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 4.0.4.RELEASE |
|
| 2.0.10.RELEASE |
|
| 2.0.10.RELEASE |
|
| 1.0.2.RELEASE |
|
| 1.0.2.RELEASE |
|
| 1.1.4.RELEASE |
|
| 1.1.4.RELEASE |
|
| 2.0.3.RELEASE |
|
| 2.0.3.RELEASE |
|
| 1.0.2.RELEASE |
|
| 1.1.4.RELEASE |
|
| 1.1.2.RELEASE |
|
| 1.1.4.RELEASE |
|
| 2.2.3.RELEASE |
|
| 2.2.3.RELEASE |
|
| 2.2.3.RELEASE |
|
| 2.2.3.RELEASE |
|
| 2.1.5.RELEASE |
|
| 2.1.5.RELEASE |
|
| 2.1.2.RELEASE |
|
| 2.1.2.RELEASE |
|
| 9f96c74 |
|
| 0.28 |
|
| 1.16 |
|
| 2.7.3 |
|
| 1.6.3 |