TestConfigDataEnvironmentContributor Class — spring-boot Architecture
Architecture documentation for the TestConfigDataEnvironmentContributor class in ConfigDataEnvironmentContributorPlaceholdersResolverTests.java from the spring-boot codebase.
Entity Profile
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/config/ConfigDataEnvironmentContributorPlaceholdersResolverTests.java lines 150–165
static class TestConfigDataEnvironmentContributor extends ConfigDataEnvironmentContributor {
private final boolean active;
protected TestConfigDataEnvironmentContributor(PropertySource<?> propertySource, boolean active,
ConversionService conversionService) {
super(Kind.ROOT, null, null, false, propertySource, null, null, null, null, conversionService);
this.active = active;
}
@Override
boolean isActive(@Nullable ConfigDataActivationContext activationContext) {
return this.active;
}
}
Domain
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free