Browse Source

Update relaxed binding documentation sample

Include getters and setters with the sample class.

Fixes gh-2813
pull/2842/head
Phillip Webb 11 years ago
parent
commit
dd19dd70c5
  1. 8
      spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

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

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