Implementation of {@link IResourceResolver} that resolvesresources as files in the filesystem:
final File resourceFile = new File(resourceName); try { return new FileInputStream(resourceFile); } catch (FileNotFoundException e) { return null; }@author Daniel Fernández @since 1.0
|
|