ResourceLoaderAPI文档中有一个类:
我想实现自己的加载器,因为我需要从数据库加载模板,但是以上下文敏感的方式(换句话说:无法使用 DataSourceResourceLoader,我需要编写自定义代码以从数据库)。
似乎ResourceLoader有一些抽象方法,而且我似乎也可以通过实现这些抽象方法来编写自定义加载器。但我没有看到任何方法可以向引擎添加新的加载程序。没有“addResourceLoader”方法。该文档仅显示如何配置 Velocity 中内置的加载器:
https://velocity.apache.org/engine/2.0/developer-guide.html#resource-loaders
主要问题:如何将自定义资源加载器添加到 VelocityEngine(或 VelocityContext?)
另一个附带问题:我想关闭所有内置加载器。特别WebappResourceLoader是它默认处于活动状态,并且在我的特定应用程序中代表了安全风险。怎么做?
小智 5
我无法回答如何实现自己的资源加载器,但第二部分非常简单:
创建 VelocityEngine 时,可以传递定义资源加载器“类路径”的属性
不同的类加载器由属性键的前缀来标识。所以像这样:
Properties props = new Properties();
// Add a default class path resource loader - just an example
props.setProperty("cp.resource.loader.class", ClasspathResourceLoader.class.getName());
props.setProperty("cp.resource.loader.cache", "true");
// Add your own resource loader
props.setProperty("db.resource.loader.class", MyDBResourceLoader.class.getName());
props.setProperty("db.resource.loader.cache", "false");
// Define the "class path" for the loaders
// in this case first the "db" loader is asked for resources, if nothing is found the "cp" loader
props.setProperty(RuntimeConstants.RESOURCE_LOADER, "db,cp");
// Now create the engine
VelocityEngine engine = new VelocityEngine(props);
Run Code Online (Sandbox Code Playgroud)
上面只为该引擎定义了两个资源加载器,该引擎实例不会使用其他加载器(包括默认的)。