BAEL-2569 refactoring the class PriceCalculationEnvironmentPostProcessor
This commit is contained in:
parent
a0227300bf
commit
9f8058a560
@ -8,17 +8,17 @@ import org.slf4j.LoggerFactory;
|
|||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.env.EnvironmentPostProcessor;
|
import org.springframework.boot.env.EnvironmentPostProcessor;
|
||||||
import org.springframework.core.Ordered;
|
import org.springframework.core.Ordered;
|
||||||
|
import org.springframework.core.annotation.Order;
|
||||||
import org.springframework.core.env.ConfigurableEnvironment;
|
import org.springframework.core.env.ConfigurableEnvironment;
|
||||||
import org.springframework.core.env.MapPropertySource;
|
import org.springframework.core.env.MapPropertySource;
|
||||||
import org.springframework.core.env.PropertySource;
|
import org.springframework.core.env.PropertySource;
|
||||||
import org.springframework.core.env.StandardEnvironment;
|
import org.springframework.core.env.StandardEnvironment;
|
||||||
|
|
||||||
public class PriceCalculationEnvironmentPostProcessor implements EnvironmentPostProcessor, Ordered {
|
@Order(Ordered.LOWEST_PRECEDENCE)
|
||||||
|
public class PriceCalculationEnvironmentPostProcessor implements EnvironmentPostProcessor {
|
||||||
|
|
||||||
private static final Logger logger = LoggerFactory.getLogger(PriceCalculationEnvironmentPostProcessor.class);
|
private static final Logger logger = LoggerFactory.getLogger(PriceCalculationEnvironmentPostProcessor.class);
|
||||||
|
|
||||||
public static final int DEFAULT_ORDER = Ordered.LOWEST_PRECEDENCE;
|
|
||||||
private int order = DEFAULT_ORDER;
|
|
||||||
private static final String PROPERTY_PREFIX = "com.baeldung.environmentpostprocessor.";
|
private static final String PROPERTY_PREFIX = "com.baeldung.environmentpostprocessor.";
|
||||||
private static final String OS_ENV_PROPERTY_CALCUATION_MODE = "calculation_mode";
|
private static final String OS_ENV_PROPERTY_CALCUATION_MODE = "calculation_mode";
|
||||||
private static final String OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE = "gross_calculation_tax_rate";
|
private static final String OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE = "gross_calculation_tax_rate";
|
||||||
@ -28,26 +28,34 @@ public class PriceCalculationEnvironmentPostProcessor implements EnvironmentPost
|
|||||||
@Override
|
@Override
|
||||||
public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) {
|
public void postProcessEnvironment(ConfigurableEnvironment environment, SpringApplication application) {
|
||||||
|
|
||||||
PropertySource<?> systemEnvironmentPropertySource = environment.getPropertySources()
|
PropertySource<?> systemEnvPropertySource = environment.getPropertySources()
|
||||||
.get(StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME);
|
.get(StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME);
|
||||||
|
|
||||||
Map<String, Object> priceCalculationConfiguration = new LinkedHashMap<>();
|
Map<String, Object> mapPropertySource = new LinkedHashMap<>();
|
||||||
if (isActive(systemEnvironmentPropertySource)) {
|
if (isActive(systemEnvPropertySource)) {
|
||||||
priceCalculationConfiguration.put(key(OS_ENV_PROPERTY_CALCUATION_MODE), systemEnvironmentPropertySource.getProperty(OS_ENV_PROPERTY_CALCUATION_MODE));
|
populatePropertySource(systemEnvPropertySource, mapPropertySource);
|
||||||
priceCalculationConfiguration.put(key(OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE), systemEnvironmentPropertySource.getProperty(OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE));
|
|
||||||
} else {
|
} else {
|
||||||
logger.warn("System environment variables [calculation_mode,gross_calculation_tax_rate] not detected, fallback to default value [calcuation_mode={},gross_calcuation_tax_rate={}]", OS_ENV_PROPERTY_CALCUATION_MODE_DEFAULT_VALUE,
|
logger.warn("System environment variables [calculation_mode,gross_calculation_tax_rate] not detected, fallback to default value [calcuation_mode={},gross_calcuation_tax_rate={}]", OS_ENV_PROPERTY_CALCUATION_MODE_DEFAULT_VALUE,
|
||||||
OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE_DEFAULT_VALUE);
|
OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE_DEFAULT_VALUE);
|
||||||
priceCalculationConfiguration.put(key(OS_ENV_PROPERTY_CALCUATION_MODE), OS_ENV_PROPERTY_CALCUATION_MODE_DEFAULT_VALUE);
|
populateDefaultPropertySource(mapPropertySource);
|
||||||
priceCalculationConfiguration.put(key(OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE), OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE_DEFAULT_VALUE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PropertySource<?> priceCalcuationPropertySource = new MapPropertySource("priceCalcuationPS", priceCalculationConfiguration);
|
PropertySource<?> priceCalcuationPropertySource = new MapPropertySource("priceCalcuationPS", mapPropertySource);
|
||||||
environment.getPropertySources()
|
environment.getPropertySources()
|
||||||
.addAfter(StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME, priceCalcuationPropertySource);
|
.addAfter(StandardEnvironment.SYSTEM_ENVIRONMENT_PROPERTY_SOURCE_NAME, priceCalcuationPropertySource);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void populatePropertySource(PropertySource<?> source, Map<String, Object> target) {
|
||||||
|
target.put(key(OS_ENV_PROPERTY_CALCUATION_MODE), source.getProperty(OS_ENV_PROPERTY_CALCUATION_MODE));
|
||||||
|
target.put(key(OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE), source.getProperty(OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void populateDefaultPropertySource(Map<String, Object> target) {
|
||||||
|
target.put(key(OS_ENV_PROPERTY_CALCUATION_MODE), OS_ENV_PROPERTY_CALCUATION_MODE_DEFAULT_VALUE);
|
||||||
|
target.put(key(OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE), OS_ENV_PROPERTY_GROSS_CALCULATION_TAX_RATE_DEFAULT_VALUE);
|
||||||
|
}
|
||||||
|
|
||||||
private String key(String key) {
|
private String key(String key) {
|
||||||
return PROPERTY_PREFIX + key.replaceAll("\\_", ".");
|
return PROPERTY_PREFIX + key.replaceAll("\\_", ".");
|
||||||
}
|
}
|
||||||
@ -59,13 +67,4 @@ public class PriceCalculationEnvironmentPostProcessor implements EnvironmentPost
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setOrder(int order) {
|
|
||||||
this.order = order;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getOrder() {
|
|
||||||
return order;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user