Merge branch '2.1.x' into 2.2.x

Closes gh-19032
pull/19328/head
Stephane Nicoll 5 years ago
commit 3d418263bc

@ -752,12 +752,12 @@ Consider the following class:
[source,java,indent=0,subs="verbatim,quotes,attributes"] [source,java,indent=0,subs="verbatim,quotes,attributes"]
---- ----
@ConfigurationProperties(prefix="acme.messaging") @ConfigurationProperties(prefix = "acme.messaging")
public class MessagingProperties { 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 // ... getter and setters

Loading…
Cancel
Save