isAvailable() — spring-boot Function Reference
Architecture documentation for the isAvailable() function in AutoConfigurationSorter.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 0a24729a_6e81_f598_947c_5dd47ab35d94["isAvailable()"] cd41a1c5_ec86_cff0_3f51_902ed48fea48["addToClasses()"] cd41a1c5_ec86_cff0_3f51_902ed48fea48 -->|calls| 0a24729a_6e81_f598_947c_5dd47ab35d94 a69630d0_0cfd_a291_95c3_9463d9ff950d["wasProcessed()"] 0a24729a_6e81_f598_947c_5dd47ab35d94 -->|calls| a69630d0_0cfd_a291_95c3_9463d9ff950d 187ff9c3_fe77_cb5c_256f_4f208466b98d["getAnnotationMetadata()"] 0a24729a_6e81_f598_947c_5dd47ab35d94 -->|calls| 187ff9c3_fe77_cb5c_256f_4f208466b98d style 0a24729a_6e81_f598_947c_5dd47ab35d94 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/AutoConfigurationSorter.java lines 192–202
boolean isAvailable() {
try {
if (!wasProcessed()) {
getAnnotationMetadata();
}
return true;
}
catch (Exception ex) {
return false;
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does isAvailable() do?
isAvailable() is a function in the spring-boot codebase.
What does isAvailable() call?
isAvailable() calls 2 function(s): getAnnotationMetadata, wasProcessed.
What calls isAvailable()?
isAvailable() is called by 1 function(s): addToClasses.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free