Home / Function/ classPathArg() — spring-boot Function Reference

classPathArg() — spring-boot Function Reference

Architecture documentation for the classPathArg() function in ClassPath.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  1e25e8e4_1494_8e67_59b5_338fe064c79f["classPathArg()"]
  6d0fed38_3db4_a2f6_c269_d7b4b861f12c["args()"]
  6d0fed38_3db4_a2f6_c269_d7b4b861f12c -->|calls| 1e25e8e4_1494_8e67_59b5_338fe064c79f
  4a6fd9d5_1b00_1ddb_2376_0a1bb5afe1f8["createArgFile()"]
  1e25e8e4_1494_8e67_59b5_338fe064c79f -->|calls| 4a6fd9d5_1b00_1ddb_2376_0a1bb5afe1f8
  style 1e25e8e4_1494_8e67_59b5_338fe064c79f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ClassPath.java lines 72–82

	private String classPathArg(boolean allowArgFile) {
		if (this.preferArgFile && allowArgFile) {
			try {
				return "@" + createArgFile();
			}
			catch (IOException ex) {
				return this.path;
			}
		}
		return this.path;
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does classPathArg() do?
classPathArg() is a function in the spring-boot codebase.
What does classPathArg() call?
classPathArg() calls 1 function(s): createArgFile.
What calls classPathArg()?
classPathArg() is called by 1 function(s): args.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free