getJavaExecutable() — spring-boot Function Reference
Architecture documentation for the getJavaExecutable() function in JavaProcessExecutor.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 9f0caf43_b8d1_3c63_8ec2_d96bbb426ab0["getJavaExecutable()"] cb94c85d_52cc_87c7_3b48_37c4b4a5f1e5["run()"] cb94c85d_52cc_87c7_3b48_37c4b4a5f1e5 -->|calls| 9f0caf43_b8d1_3c63_8ec2_d96bbb426ab0 6d640e4c_02a5_d469_0de0_d6aacda2d887["runAsync()"] 6d640e4c_02a5_d469_0de0_d6aacda2d887 -->|calls| 9f0caf43_b8d1_3c63_8ec2_d96bbb426ab0 style 9f0caf43_b8d1_3c63_8ec2_d96bbb426ab0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/JavaProcessExecutor.java lines 100–104
private String getJavaExecutable() {
Toolchain toolchain = this.toolchainManager.getToolchainFromBuildContext("jdk", this.mavenSession);
String javaExecutable = (toolchain != null) ? toolchain.findTool("java") : null;
return (javaExecutable != null) ? javaExecutable : new JavaExecutable().toString();
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getJavaExecutable() do?
getJavaExecutable() is a function in the spring-boot codebase.
What calls getJavaExecutable()?
getJavaExecutable() is called by 2 function(s): run, runAsync.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free