hasConfigurationProcessorOnClasspath() — spring-boot Function Reference
Architecture documentation for the hasConfigurationProcessorOnClasspath() function in JavaPluginAction.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 0cf37532_a7b5_88b5_9deb_739c0888aa20["hasConfigurationProcessorOnClasspath()"] f44d3232_d6cd_277f_5216_363591e558f3["execute()"] f44d3232_d6cd_277f_5216_363591e558f3 -->|calls| 0cf37532_a7b5_88b5_9deb_739c0888aa20 70586293_c378_c3b8_5e96_b792a9c3536c["getClasspath()"] 0cf37532_a7b5_88b5_9deb_739c0888aa20 -->|calls| 70586293_c378_c3b8_5e96_b792a9c3536c style 0cf37532_a7b5_88b5_9deb_739c0888aa20 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/JavaPluginAction.java lines 360–366
private boolean hasConfigurationProcessorOnClasspath(JavaCompile compile) {
Set<File> files = (compile.getOptions().getAnnotationProcessorPath() != null)
? compile.getOptions().getAnnotationProcessorPath().getFiles() : compile.getClasspath().getFiles();
return files.stream()
.map(File::getName)
.anyMatch((name) -> name.startsWith("spring-boot-configuration-processor"));
}
Domain
Subdomains
Calls
- getClasspath()
Called By
Source
Frequently Asked Questions
What does hasConfigurationProcessorOnClasspath() do?
hasConfigurationProcessorOnClasspath() is a function in the spring-boot codebase.
What does hasConfigurationProcessorOnClasspath() call?
hasConfigurationProcessorOnClasspath() calls 1 function(s): getClasspath.
What calls hasConfigurationProcessorOnClasspath()?
hasConfigurationProcessorOnClasspath() is called by 1 function(s): execute.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free