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

getAotArguments() — spring-boot Function Reference

Architecture documentation for the getAotArguments() function in ProcessAotMojo.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  7f8ace36_8028_24c0_3a36_b65cb8bf9b0b["getAotArguments()"]
  b25ee668_c960_77b1_b219_b3f517741741["executeAot()"]
  b25ee668_c960_77b1_b219_b3f517741741 -->|calls| 7f8ace36_8028_24c0_3a36_b65cb8bf9b0b
  3a31927b_2053_6673_c98b_228d2a22e2c3["resolveArguments()"]
  7f8ace36_8028_24c0_3a36_b65cb8bf9b0b -->|calls| 3a31927b_2053_6673_c98b_228d2a22e2c3
  style 7f8ace36_8028_24c0_3a36_b65cb8bf9b0b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/ProcessAotMojo.java lines 119–129

	private String[] getAotArguments(String applicationClass) {
		List<String> aotArguments = new ArrayList<>();
		aotArguments.add(applicationClass);
		aotArguments.add(this.generatedSources.toString());
		aotArguments.add(this.generatedResources.toString());
		aotArguments.add(this.generatedClasses.toString());
		aotArguments.add(this.project.getGroupId());
		aotArguments.add(this.project.getArtifactId());
		aotArguments.addAll(resolveArguments().getArgs());
		return aotArguments.toArray(String[]::new);
	}

Domain

Subdomains

Calls

  • resolveArguments()

Called By

Frequently Asked Questions

What does getAotArguments() do?
getAotArguments() is a function in the spring-boot codebase.
What does getAotArguments() call?
getAotArguments() calls 1 function(s): resolveArguments.
What calls getAotArguments()?
getAotArguments() is called by 1 function(s): executeAot.

Analyze Your Own Codebase

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

Try Supermodel Free