isActive() — spring-boot Function Reference
Architecture documentation for the isActive() function in ConfigDataProperties.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 52a0c199_f750_498c_2ff4_2935a3d35369["isActive()"] 5d2a8a14_1320_fdd4_8640_44aa3cfabe7b["isActive()"] 5d2a8a14_1320_fdd4_8640_44aa3cfabe7b -->|calls| 52a0c199_f750_498c_2ff4_2935a3d35369 5d2a8a14_1320_fdd4_8640_44aa3cfabe7b["isActive()"] 52a0c199_f750_498c_2ff4_2935a3d35369 -->|calls| 5d2a8a14_1320_fdd4_8640_44aa3cfabe7b 723faf45_147b_9b0f_f957_9de88f8cbb17["isEmpty()"] 52a0c199_f750_498c_2ff4_2935a3d35369 -->|calls| 723faf45_147b_9b0f_f957_9de88f8cbb17 7e5fe9b4_c216_da73_89f6_156843e308f7["matchesActiveProfiles()"] 52a0c199_f750_498c_2ff4_2935a3d35369 -->|calls| 7e5fe9b4_c216_da73_89f6_156843e308f7 style 52a0c199_f750_498c_2ff4_2935a3d35369 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/config/ConfigDataProperties.java lines 122–130
boolean isActive(@Nullable ConfigDataActivationContext activationContext) {
if (activationContext == null) {
return false;
}
CloudPlatform cloudPlatform = activationContext.getCloudPlatform();
boolean activate = isActive((cloudPlatform != null) ? cloudPlatform : CloudPlatform.NONE);
activate = activate && isActive(activationContext.getProfiles());
return activate;
}
Domain
Subdomains
Calls
- isActive()
- isEmpty()
- matchesActiveProfiles()
Called By
- isActive()
Source
Frequently Asked Questions
What does isActive() do?
isActive() is a function in the spring-boot codebase.
What does isActive() call?
isActive() calls 3 function(s): isActive, isEmpty, matchesActiveProfiles.
What calls isActive()?
isActive() is called by 1 function(s): isActive.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free