Commit e1152b4d authored by Phillip Webb's avatar Phillip Webb

Merge branch '1.2.x'

parents 24ca44db dd19dd70
......@@ -638,6 +638,14 @@ For example, given the following `@ConfigurationProperties` class:
private String firstName;
public String getFirstName() {
return this.firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}
----
......
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