如何正确初始化nvelocity引擎?
正如我在一些示例中看到的那样,并试图理解整个 velocity site,初始化velocityengine有三种方式:
- 使用默认配置:.Init()
- 使用默认配置,加上文件中的属性:.Init(string)
- 使用默认配置,加上集合中的属性:.Init(Commons.Collections.ExtendedProperties)
但我几乎没有找到关于这些如何工作的解释。例如,在我下载的应用程序中:
VelocityEngine engine = new VelocityEngine();
ExtendedProperties props = new ExtendedProperties();
props.AddProperty("file.resource.loader.path", new ArrayList(new string[] { ".", @".\Templates" }));
engine.Init(props);
除了明显的假设之外,“file.resource.loader.path”是什么?
我可以更改哪些其他属性,以及如何更改它们(我的意思是,使用 addproperty,或者如果有其他方法,请指定)?
As I saw in some examples, and tried to understand throughout the velocity site, there are three ways of initializing the velocityengine:
- With the default configurations : .Init()
- With the default configurations, plus the properties in a file : .Init(string)
- With the default configurations, plus the properties in a collection : .Init(Commons.Collections.ExtendedProperties)
But i've found little explanation on how these work. Per example, in a app i've downloaded:
VelocityEngine engine = new VelocityEngine();
ExtendedProperties props = new ExtendedProperties();
props.AddProperty("file.resource.loader.path", new ArrayList(new string[] { ".", @".\Templates" }));
engine.Init(props);
Beyond the obvious assumption, what is "file.resource.loader.path"?
What are the other properties i can change, and how can i change them (I mean, using the addproperty, or if there other ways please, specify)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处是可用属性的列表。
Here is a list of available properties.