Home / Function/ environmentPropertiesResolvePlaceholders() — spring-boot Function Reference

environmentPropertiesResolvePlaceholders() — spring-boot Function Reference

Architecture documentation for the environmentPropertiesResolvePlaceholders() function in LoggingApplicationListenerTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df["environmentPropertiesResolvePlaceholders()"]
  e4941a37_d532_8edb_200f_24a620639c51["addPropertiesToEnvironment()"]
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df -->|calls| e4941a37_d532_8edb_200f_24a620639c51
  2708db62_8b10_9bf2_e348_171895b093f2["initialize()"]
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df -->|calls| 2708db62_8b10_9bf2_e348_171895b093f2
  a74a6404_ac0b_ef50_4554_48366dd90b97["getEnvironment()"]
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df -->|calls| a74a6404_ac0b_ef50_4554_48366dd90b97
  49a45454_f203_2fd5_2d77_322abb416244["getClassLoader()"]
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df -->|calls| 49a45454_f203_2fd5_2d77_322abb416244
  fa6de724_885f_0a05_6b1b_5697fdfbd981["getSystemProperty()"]
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df -->|calls| fa6de724_885f_0a05_6b1b_5697fdfbd981
  61bdfef1_4c77_f177_2d1a_f452f9d7a529["getProperty()"]
  db8edf72_ae28_e0e1_2fb2_c2b2b32b70df -->|calls| 61bdfef1_4c77_f177_2d1a_f452f9d7a529
  style db8edf72_ae28_e0e1_2fb2_c2b2b32b70df fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/logging/LoggingApplicationListenerTests.java lines 520–526

	@Test
	void environmentPropertiesResolvePlaceholders() {
		addPropertiesToEnvironment(this.context, "logging.pattern.console=console ${pid}");
		this.listener.initialize(this.context.getEnvironment(), getClassLoader());
		assertThat(getSystemProperty(LoggingSystemProperty.CONSOLE_PATTERN))
			.isEqualTo(this.context.getEnvironment().getProperty("logging.pattern.console"));
	}

Domain

Subdomains

Frequently Asked Questions

What does environmentPropertiesResolvePlaceholders() do?
environmentPropertiesResolvePlaceholders() is a function in the spring-boot codebase.
What does environmentPropertiesResolvePlaceholders() call?
environmentPropertiesResolvePlaceholders() calls 6 function(s): addPropertiesToEnvironment, getClassLoader, getEnvironment, getProperty, getSystemProperty, initialize.

Analyze Your Own Codebase

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

Try Supermodel Free