Home / Class/ ConfigDataPropertiesRuntimeHints Class — spring-boot Architecture

ConfigDataPropertiesRuntimeHints Class — spring-boot Architecture

Architecture documentation for the ConfigDataPropertiesRuntimeHints class in ConfigDataPropertiesRuntimeHints.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataPropertiesRuntimeHints.java lines 35–45

class ConfigDataPropertiesRuntimeHints implements RuntimeHintsRegistrar {

	@Override
	public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) {
		BindableRuntimeHintsRegistrar.forTypes(ConfigDataProperties.class).registerHints(hints);
		Method method = ReflectionUtils.findMethod(ConfigDataLocation.class, "of", String.class);
		Assert.state(method != null, "'method' must not be null");
		hints.reflection().registerMethod(method, ExecutableMode.INVOKE);
	}

}

Domain

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free