Interface FileResolver
- All Superinterfaces:
AutoCloseable, Closeable
Sometimes the file resources of an application are bundled into jars, or are somewhere on the classpath but not
available on the file system, e.g. in the case of a Vert.x webapp bundled as a fat jar.
In this case we want the application to access the resource from the classpath as if it was on the file system.
We can do this by looking for the file on the classpath, and if found, copying it to a temporary cache directory on disk and serving it from there.
There is one cache dir per Vert.x instance which is deleted on Vert.x shutdown.
- Author:
- Tim Fox, Rob Worsnop
-
Method Summary
Modifier and TypeMethodDescriptionvoidclose()Close this file resolver, this is a blocking operation.static FileResolverfileResolver(FileSystemOptions options) Create a file resolver.Resolve the file for the specifiedfileName.
-
Method Details
-
fileResolver
Create a file resolver.- Parameters:
options- the fs options- Returns:
- the file resolver
-
resolve
-
close
Close this file resolver, this is a blocking operation.- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-