parseArgsDoesntReplace() — spring-boot Function Reference
Architecture documentation for the parseArgsDoesntReplace() function in LoggingApplicationListenerTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 808283c3_749c_8a4b_ed1b_dbdd3ef344d5["parseArgsDoesntReplace()"] b21aabff_7677_28df_125a_1805aeda834e["multicastEvent()"] 808283c3_749c_8a4b_ed1b_dbdd3ef344d5 -->|calls| b21aabff_7677_28df_125a_1805aeda834e be3bab95_2d77_cc83_e74d_439204d631d0["ApplicationStartingEvent()"] 808283c3_749c_8a4b_ed1b_dbdd3ef344d5 -->|calls| be3bab95_2d77_cc83_e74d_439204d631d0 2708db62_8b10_9bf2_e348_171895b093f2["initialize()"] 808283c3_749c_8a4b_ed1b_dbdd3ef344d5 -->|calls| 2708db62_8b10_9bf2_e348_171895b093f2 a74a6404_ac0b_ef50_4554_48366dd90b97["getEnvironment()"] 808283c3_749c_8a4b_ed1b_dbdd3ef344d5 -->|calls| a74a6404_ac0b_ef50_4554_48366dd90b97 49a45454_f203_2fd5_2d77_322abb416244["getClassLoader()"] 808283c3_749c_8a4b_ed1b_dbdd3ef344d5 -->|calls| 49a45454_f203_2fd5_2d77_322abb416244 style 808283c3_749c_8a4b_ed1b_dbdd3ef344d5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/context/logging/LoggingApplicationListenerTests.java lines 401–410
@Test
void parseArgsDoesntReplace() {
this.listener.setSpringBootLogging(LogLevel.ERROR);
this.listener.setParseArgs(false);
multicastEvent(new ApplicationStartingEvent(this.bootstrapContext, this.springApplication,
new String[] { "--debug" }));
this.listener.initialize(this.context.getEnvironment(), getClassLoader());
this.logger.debug("testatdebug");
assertThat(this.output).doesNotContain("testatdebug");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does parseArgsDoesntReplace() do?
parseArgsDoesntReplace() is a function in the spring-boot codebase.
What does parseArgsDoesntReplace() call?
parseArgsDoesntReplace() calls 5 function(s): ApplicationStartingEvent, getClassLoader, getEnvironment, initialize, multicastEvent.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free