Resource location = new ClasspathResource(new DefaultClassResolver(), thisPath);
InputStream stream = getClass().getResourceAsStream(file);
if (stream == null)
throw new TemplateParseException("File " + file + " not found.");
return run(stream, delegate, location);
}