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

call() — spring-boot Function Reference

Architecture documentation for the call() function in StartMojo.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  0d949382_acd2_e21e_46cc_e65969f065fc["call()"]
  cfa553e2_cf47_c4fa_a10e_b7fd43198087["execute()"]
  cfa553e2_cf47_c4fa_a10e_b7fd43198087 -->|calls| 0d949382_acd2_e21e_46cc_e65969f065fc
  e574d347_23ca_f2df_4d2b_a63d10fb0259["hasCauseWithType()"]
  0d949382_acd2_e21e_46cc_e65969f065fc -->|calls| e574d347_23ca_f2df_4d2b_a63d10fb0259
  style 0d949382_acd2_e21e_46cc_e65969f065fc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/StartMojo.java lines 220–233

		@Override
		public @Nullable JMXConnector call() throws Exception {
			try {
				return SpringApplicationAdminClient.connect(this.port);
			}
			catch (IOException ex) {
				if (hasCauseWithType(ex, ConnectException.class)) {
					String message = "MBean server at port " + this.port + " is not up yet...";
					getLog().debug(message);
					return null;
				}
				throw ex;
			}
		}

Domain

Subdomains

Calls

  • hasCauseWithType()

Called By

Frequently Asked Questions

What does call() do?
call() is a function in the spring-boot codebase.
What does call() call?
call() calls 1 function(s): hasCauseWithType.
What calls call()?
call() 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