Home / Type/ FilePathResolver Type — spring-boot Architecture

FilePathResolver Type — spring-boot Architecture

Architecture documentation for the FilePathResolver type/interface in ApplicationResourceLoader.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/io/ApplicationResourceLoader.java lines 233–245

	public interface FilePathResolver {

		/**
		 * Return the {@code path} of the given resource if it can also be represented as
		 * a {@link FileSystemResource}.
		 * @param location the location used to create the resource
		 * @param resource the resource to check
		 * @return the file path of the resource or {@code null} if the it is not possible
		 * to represent the resource as a {@link FileSystemResource}.
		 */
		@Nullable String resolveFilePath(String location, Resource resource);

	}

Analyze Your Own Codebase

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

Try Supermodel Free