Home / Class/ PropertySourcesPlaceholderConfigurerConfiguration Class — spring-boot Architecture

PropertySourcesPlaceholderConfigurerConfiguration Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/properties/PropertySourcesDeducerTests.java lines 86–98

	@Configuration(proxyBeanMethods = false)
	static class PropertySourcesPlaceholderConfigurerConfiguration {

		@Bean
		static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
			PropertySourcesPlaceholderConfigurer configurer = new PropertySourcesPlaceholderConfigurer();
			MutablePropertySources propertySources = new MutablePropertySources();
			propertySources.addFirst(new TestPropertySource());
			configurer.setPropertySources(propertySources);
			return configurer;
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free