FilteredReactiveWebContextResource Class — spring-boot Architecture
Architecture documentation for the FilteredReactiveWebContextResource class in FilteredReactiveWebContextResource.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/main/java/org/springframework/boot/web/context/reactive/FilteredReactiveWebContextResource.java lines 37–66
class FilteredReactiveWebContextResource extends AbstractResource {
private final String path;
FilteredReactiveWebContextResource(String path) {
this.path = path;
}
@Override
public boolean exists() {
return false;
}
@Override
public Resource createRelative(String relativePath) throws IOException {
String pathToUse = StringUtils.applyRelativePath(this.path, relativePath);
return new FilteredReactiveWebContextResource(pathToUse);
}
@Override
public String getDescription() {
return "ReactiveWebContext resource [" + this.path + "]";
}
@Override
public InputStream getInputStream() throws IOException {
throw new FileNotFoundException(getDescription() + " cannot be opened because it does not exist");
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free