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

loggingSystemRegisteredInTheContext() — spring-boot Function Reference

Architecture documentation for the loggingSystemRegisteredInTheContext() function in LoggingApplicationListenerIntegrationTests.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  c77fe8f7_09a5_9082_76b4_eaa5622da6dd["loggingSystemRegisteredInTheContext()"]
  67bae297_b590_f5e5_2666_5d557e3b57b1["SpringApplicationBuilder()"]
  c77fe8f7_09a5_9082_76b4_eaa5622da6dd -->|calls| 67bae297_b590_f5e5_2666_5d557e3b57b1
  96180309_d35f_64e9_f339_53aa62a53500["web()"]
  c77fe8f7_09a5_9082_76b4_eaa5622da6dd -->|calls| 96180309_d35f_64e9_f339_53aa62a53500
  3613e214_49bf_015b_c43f_7f8a1274fb0b["run()"]
  c77fe8f7_09a5_9082_76b4_eaa5622da6dd -->|calls| 3613e214_49bf_015b_c43f_7f8a1274fb0b
  style c77fe8f7_09a5_9082_76b4_eaa5622da6dd fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/context/logging/LoggingApplicationListenerIntegrationTests.java lines 57–65

	@Test
	void loggingSystemRegisteredInTheContext() {
		try (ConfigurableApplicationContext context = new SpringApplicationBuilder(SampleService.class)
			.web(WebApplicationType.NONE)
			.run()) {
			SampleService service = context.getBean(SampleService.class);
			assertThat(service.loggingSystem).isNotNull();
		}
	}

Domain

Subdomains

Frequently Asked Questions

What does loggingSystemRegisteredInTheContext() do?
loggingSystemRegisteredInTheContext() is a function in the spring-boot codebase.
What does loggingSystemRegisteredInTheContext() call?
loggingSystemRegisteredInTheContext() calls 3 function(s): SpringApplicationBuilder, run, web.

Analyze Your Own Codebase

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

Try Supermodel Free