Browse Source

Merge branch '1.5.x'

pull/10411/merge
Stephane Nicoll 8 years ago
parent
commit
dc5254c333
  1. 5
      spring-boot-dependencies/pom.xml
  2. 2
      spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

5
spring-boot-dependencies/pom.xml

@ -1365,6 +1365,11 @@
<artifactId>tomcat-annotations-api</artifactId> <artifactId>tomcat-annotations-api</artifactId>
<version>${tomcat.version}</version> <version>${tomcat.version}</version>
</dependency> </dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-annotations-api</artifactId>
<version>${tomcat.version}</version>
</dependency>
<dependency> <dependency>
<groupId>org.apache.tomcat</groupId> <groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId> <artifactId>tomcat-jdbc</artifactId>

2
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

@ -980,7 +980,7 @@ does not inject other beans from the context. Having said that, The
`@EnableConfigurationProperties` annotation is _also_ automatically applied to your project `@EnableConfigurationProperties` annotation is _also_ automatically applied to your project
so that any _existing_ bean annotated with `@ConfigurationProperties` will be configured so that any _existing_ bean annotated with `@ConfigurationProperties` will be configured
from the `Environment`. You could shortcut `MyConfiguration` above by making sure from the `Environment`. You could shortcut `MyConfiguration` above by making sure
`FooProperties` is a already a bean: `FooProperties` is already a bean:
[source,java,indent=0] [source,java,indent=0]
---- ----

Loading…
Cancel
Save