Browse Source

Merge branch '2.2.x'

Closes gh-19033
pull/19037/head
Stephane Nicoll 6 years ago
parent
commit
0b89b2ddf8
  1. 6
      spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc

6
spring-boot-project/spring-boot-docs/src/main/asciidoc/appendix-configuration-metadata.adoc

@ -752,12 +752,12 @@ Consider the following class: @@ -752,12 +752,12 @@ Consider the following class:
[source,java,indent=0,subs="verbatim,quotes,attributes"]
----
@ConfigurationProperties(prefix="acme.messaging")
@ConfigurationProperties(prefix = "acme.messaging")
public class MessagingProperties {
private List<String> addresses = new ArrayList<>(Arrays.asList("a", "b")) ;
private List<String> addresses = new ArrayList<>(Arrays.asList("a", "b"));
private ContainerType = ContainerType.SIMPLE;
private ContainerType containerType = ContainerType.SIMPLE;
// ... getter and setters

Loading…
Cancel
Save