Browse Source
* pr/21746: Polish "Allow data unit to be specified on the constructor parameter" Allow data unit to be specified on the constructor parameter Closes gh-21746pull/22294/head
11 changed files with 289 additions and 12 deletions
@ -0,0 +1,56 @@
@@ -0,0 +1,56 @@
|
||||
/* |
||||
* Copyright 2012-2020 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.docs.context.properties.bind.constructor; |
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
import org.springframework.boot.context.properties.ConstructorBinding; |
||||
import org.springframework.boot.context.properties.bind.DefaultValue; |
||||
import org.springframework.boot.convert.DataSizeUnit; |
||||
import org.springframework.util.unit.DataSize; |
||||
import org.springframework.util.unit.DataUnit; |
||||
|
||||
/** |
||||
* A {@link ConfigurationProperties @ConfigurationProperties} example that uses |
||||
* {@link DataSize}. |
||||
* |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
// tag::example[]
|
||||
@ConfigurationProperties("app.io") |
||||
@ConstructorBinding |
||||
public class AppIoProperties { |
||||
|
||||
private final DataSize bufferSize; |
||||
|
||||
private final DataSize sizeThreshold; |
||||
|
||||
public AppIoProperties(@DataSizeUnit(DataUnit.MEGABYTES) @DefaultValue("2MB") DataSize bufferSize, |
||||
@DefaultValue("512B") DataSize sizeThreshold) { |
||||
this.bufferSize = bufferSize; |
||||
this.sizeThreshold = sizeThreshold; |
||||
} |
||||
|
||||
public DataSize getBufferSize() { |
||||
return this.bufferSize; |
||||
} |
||||
|
||||
public DataSize getSizeThreshold() { |
||||
return this.sizeThreshold; |
||||
} |
||||
|
||||
} |
||||
// end::example[]
|
||||
@ -0,0 +1,57 @@
@@ -0,0 +1,57 @@
|
||||
/* |
||||
* Copyright 2012-2020 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.docs.context.properties.bind.constructor; |
||||
|
||||
import java.time.Duration; |
||||
import java.time.temporal.ChronoUnit; |
||||
|
||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
||||
import org.springframework.boot.context.properties.ConstructorBinding; |
||||
import org.springframework.boot.context.properties.bind.DefaultValue; |
||||
import org.springframework.boot.convert.DurationUnit; |
||||
|
||||
/** |
||||
* A {@link ConfigurationProperties @ConfigurationProperties} example that uses |
||||
* {@link Duration}. |
||||
* |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
// tag::example[]
|
||||
@ConfigurationProperties("app.system") |
||||
@ConstructorBinding |
||||
public class AppSystemProperties { |
||||
|
||||
private final Duration sessionTimeout; |
||||
|
||||
private final Duration readTimeout; |
||||
|
||||
public AppSystemProperties(@DurationUnit(ChronoUnit.SECONDS) @DefaultValue("30s") Duration sessionTimeout, |
||||
@DefaultValue("1000ms") Duration readTimeout) { |
||||
this.sessionTimeout = sessionTimeout; |
||||
this.readTimeout = readTimeout; |
||||
} |
||||
|
||||
public Duration getSessionTimeout() { |
||||
return this.sessionTimeout; |
||||
} |
||||
|
||||
public Duration getReadTimeout() { |
||||
return this.readTimeout; |
||||
} |
||||
|
||||
} |
||||
// end::example[]
|
||||
@ -0,0 +1,81 @@
@@ -0,0 +1,81 @@
|
||||
/* |
||||
* Copyright 2012-2020 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* https://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
|
||||
package org.springframework.boot.docs.context.properties.bind.constructor; |
||||
|
||||
import java.util.function.Consumer; |
||||
|
||||
import org.junit.jupiter.api.Test; |
||||
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties; |
||||
import org.springframework.boot.test.context.assertj.AssertableApplicationContext; |
||||
import org.springframework.boot.test.context.runner.ApplicationContextRunner; |
||||
import org.springframework.boot.test.context.runner.ContextConsumer; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat; |
||||
|
||||
/** |
||||
* Tests for {@link AppSystemProperties}. |
||||
* |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
class AppSystemPropertiesTests { |
||||
|
||||
private final ApplicationContextRunner contextRunner = new ApplicationContextRunner() |
||||
.withUserConfiguration(Config.class); |
||||
|
||||
@Test |
||||
void bindWithDefaultUnit() { |
||||
this.contextRunner.withPropertyValues("app.system.session-timeout=40", "app.system.read-timeout=5000") |
||||
.run(assertBinding((properties) -> { |
||||
assertThat(properties.getSessionTimeout()).hasSeconds(40); |
||||
assertThat(properties.getReadTimeout()).hasMillis(5000); |
||||
})); |
||||
} |
||||
|
||||
@Test |
||||
void bindWithExplicitUnit() { |
||||
this.contextRunner.withPropertyValues("app.system.session-timeout=1h", "app.system.read-timeout=5s") |
||||
.run(assertBinding((properties) -> { |
||||
assertThat(properties.getSessionTimeout()).hasMinutes(60); |
||||
assertThat(properties.getReadTimeout()).hasMillis(5000); |
||||
})); |
||||
} |
||||
|
||||
@Test |
||||
void bindWithIso8601Format() { |
||||
this.contextRunner.withPropertyValues("app.system.session-timeout=PT15S", "app.system.read-timeout=PT0.5S") |
||||
.run(assertBinding((properties) -> { |
||||
assertThat(properties.getSessionTimeout()).hasSeconds(15); |
||||
assertThat(properties.getReadTimeout()).hasMillis(500); |
||||
})); |
||||
} |
||||
|
||||
private ContextConsumer<AssertableApplicationContext> assertBinding(Consumer<AppSystemProperties> properties) { |
||||
return (context) -> { |
||||
assertThat(context).hasSingleBean(AppSystemProperties.class); |
||||
properties.accept(context.getBean(AppSystemProperties.class)); |
||||
}; |
||||
} |
||||
|
||||
@Configuration(proxyBeanMethods = false) |
||||
@EnableConfigurationProperties(AppSystemProperties.class) |
||||
static class Config { |
||||
|
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue