Merge branch '1.5.x'

This commit is contained in:
Stephane Nicoll 2017-09-24 17:12:46 +02:00
commit dc5254c333
2 changed files with 6 additions and 1 deletions

View File

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

View File

@ -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
so that any _existing_ bean annotated with `@ConfigurationProperties` will be configured
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]
----