Home / Class/ Source Class — spring-boot Architecture

Source Class — spring-boot Architecture

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

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/DefaultApplicationArguments.java lines 75–91

	private static class Source extends SimpleCommandLinePropertySource {

		Source(String[] args) {
			super(args);
		}

		@Override
		public List<String> getNonOptionArgs() {
			return super.getNonOptionArgs();
		}

		@Override
		public @Nullable List<String> getOptionValues(String name) {
			return super.getOptionValues(name);
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free