Home / Class/ BootTestRunJvmArgsApplication Class — spring-boot Architecture

BootTestRunJvmArgsApplication Class — spring-boot Architecture

Architecture documentation for the BootTestRunJvmArgsApplication class in BootTestRunJvmArgsApplication.java from the spring-boot codebase.

Entity Profile

Source Code

build-plugin/spring-boot-gradle-plugin/src/test/resources/com/example/boottestrun/jvmargs/BootTestRunJvmArgsApplication.java lines 26–39

public class BootTestRunJvmArgsApplication {

	protected BootTestRunJvmArgsApplication() {

	}

	public static void main(String[] args) {
		int i = 1;
		for (String entry : ManagementFactory.getRuntimeMXBean().getInputArguments()) {
			System.out.println(i++ + ". " + entry);
		}
	}

}

Analyze Your Own Codebase

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

Try Supermodel Free