Commit 4366d788 authored by Dave Syer's avatar Dave Syer

Fix docos references to @ConfigurationProperties(prefix="...")

Fixes gh-629
parent cc4ee653
......@@ -47,7 +47,7 @@ rules of thumb:
{sc-spring-boot-autoconfigure}/web/ServerProperties.{sc-ext}[`ServerProperties`]
and read from there the available external configuration options. The
`@ConfigurationProperties` has a `name` attribute which acts as a prefix to external
properties, thus `ServerProperties` has `name="server"` and its configuration properties
properties, thus `ServerProperties` has `prefix="server"` and its configuration properties
are `server.port`, `server.address` etc. In a running Actuator app look at the
`configprops` endpoint.
* Look for use of `RelaxedEnvironment` to pull configuration values explicitly out of the
......
......@@ -424,7 +424,7 @@ the configuration of your application. For example:
[source,java,indent=0]
----
@Component
@ConfigurationProperties(name="connection")
@ConfigurationProperties(prefix="connection")
public class ConnectionSettings {
private String username;
......@@ -512,7 +512,7 @@ annotations to your `@ConfigurationProperties` class:
[source,java,indent=0]
----
@Component
@ConfigurationProperties(name="connection")
@ConfigurationProperties(prefix="connection")
public class ConnectionSettings {
@NotNull
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment