velocity配置文件路径
时间: 2023-07-09 19:29:26 浏览: 245
Velocity配置文件详解
Velocity模板引擎的配置文件路径通常为classpath下的velocity.properties文件。如果你需要自定义配置文件路径,可以在创建VelocityEngine实例时指定属性值:
```
Properties props = new Properties();
props.setProperty(RuntimeConstants.FILE_RESOURCE_LOADER_PATH, "path/to/templates");
VelocityEngine engine = new VelocityEngine(props);
```
这里,`FILE_RESOURCE_LOADER_PATH`属性用于指定模板文件的根目录。
阅读全文