The [reference states](http://docs.spring.io/spring-boot/docs/1.0.0.RELEASE/reference/htmlsingle/#boot-features-external-config-typesafe-configuration-properties) to use: ``` @Component @ConfigurationProperties(name="connection") public class ConnectionSettings { ``` The `@ConfigurationProperties` name attribute doesn't exist. Instead the following should be used: ``` @Component @ConfigurationProperties("connection") public class ConnectionSettings { ```