Merge branch '2.2.x'

Closes gh-19033
This commit is contained in:
Stephane Nicoll 2019-11-16 09:41:10 +03:00
commit 0b89b2ddf8
1 changed files with 3 additions and 3 deletions

View File

@ -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