Home / Class/ BootRunJvmArgsApplication Class — spring-boot Architecture

BootRunJvmArgsApplication Class — spring-boot Architecture

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

Entity Profile

Source Code

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

public class BootRunJvmArgsApplication {

	protected BootRunJvmArgsApplication() {

	}

	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