create() — spring-boot Function Reference
Architecture documentation for the create() function in TestException.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 0fd6408a_53ce_f78c_7f5b_9c878864dbe7["create()"] ec5d4b61_592c_6883_8b56_af017a7c7a2e["createPrinterWhenStandardAppliesCustomizations()"] ec5d4b61_592c_6883_8b56_af017a7c7a2e -->|calls| 0fd6408a_53ce_f78c_7f5b_9c878864dbe7 512f48a2_9834_9937_53b3_6915521c65e1["createPrinterWhenStandardWithHashesPrintsHash()"] 512f48a2_9834_9937_53b3_6915521c65e1 -->|calls| 0fd6408a_53ce_f78c_7f5b_9c878864dbe7 63d95fb2_61b3_a1a3_5127_e959ed5c9475["createPrinterWhenClassNameCreatesPrinter()"] 63d95fb2_61b3_a1a3_5127_e959ed5c9475 -->|calls| 0fd6408a_53ce_f78c_7f5b_9c878864dbe7 3e5f169d_abd8_4143_0c25_16cc87fe7805["createPrinterWhenClassNameInjectsConfiguredPrinter()"] 3e5f169d_abd8_4143_0c25_16cc87fe7805 -->|calls| 0fd6408a_53ce_f78c_7f5b_9c878864dbe7 style 0fd6408a_53ce_f78c_7f5b_9c878864dbe7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/TestException.java lines 38–50
public static Exception create() {
CreatorThread creatorThread = new CreatorThread();
creatorThread.start();
try {
creatorThread.join();
}
catch (InterruptedException ex) {
Thread.currentThread().interrupt();
}
Exception exception = creatorThread.exception;
assertThat(exception).isNotNull();
return exception;
}
Domain
Subdomains
Called By
- createPrinterWhenClassNameCreatesPrinter()
- createPrinterWhenClassNameInjectsConfiguredPrinter()
- createPrinterWhenStandardAppliesCustomizations()
- createPrinterWhenStandardWithHashesPrintsHash()
Source
Frequently Asked Questions
What does create() do?
create() is a function in the spring-boot codebase.
What calls create()?
create() is called by 4 function(s): createPrinterWhenClassNameCreatesPrinter, createPrinterWhenClassNameInjectsConfiguredPrinter, createPrinterWhenStandardAppliesCustomizations, createPrinterWhenStandardWithHashesPrintsHash.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free