Slide 18
Slide 18 text
Unless otherwise indicated, these slides are © 2013-2019 Pivotal Software, Inc. and licensed under a Creative Commons Attribution-NonCommercial license: http://creativecommons.org/licenses/by-nc/3.0/
Immutable @ConfigurationProperties
1
8
@ConfigurationProperties("acme")
@ConstructorBinding
public class AcmeProperties {
private final Duration timeout;
private final DataSize bufferSize;
private final Security security;
public AcmeProperties(@DefaultValue("10s") Duration
timeout, DataSize bufferSize, Security security) {