Merge branch '1.2.x'

This commit is contained in:
Phillip Webb 2015-04-13 11:41:03 -07:00
commit e1152b4db8
1 changed files with 8 additions and 0 deletions

View File

@ -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;
}
}
----