From dd19dd70c570b1bfaedb9baa248fdc4cf3e0cf96 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Mon, 13 Apr 2015 11:38:42 -0700 Subject: [PATCH] Update relaxed binding documentation sample Include getters and setters with the sample class. Fixes gh-2813 --- .../src/main/asciidoc/spring-boot-features.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 72947637b74..2c702df7630 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -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; + } + } ----