Browse Source

Merge branch '1.2.x'

pull/2816/head
Phillip Webb 11 years ago
parent
commit
e1152b4db8
  1. 8
      spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

8
spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

@ -638,6 +638,14 @@ For example, given the following `@ConfigurationProperties` class: @@ -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;
}
}
----

Loading…
Cancel
Save