前不久,接触到.NET下的MVC-MonoRail,它推荐使用的模板引擎就是NVelocity(目前由Castle Project项目组接手)
因此决定自学一下NVelocity的使用(抛开MonoRail)。
--
首先:在Castle Project上下载一个CastleProject包,我下载的是CastleProject-1.0-RC3.msi
安装后,在其下的bin目录中可找到NVelocity.dll(NET项目中将用到),并将其复制出来放到我的测试WEB/BIN目录下。
到castleproject上看了一下using it大致有四步:
先要引入以下名称空间:
using Commons.Collections;
using NVelocity;
using NVelocity.App;
using NVelocity.Context;
第一步:Creating a VelocityEngine也就是创建一个VelocityEngine的实例
VelocityEngine velocity = new VelocityEngine(); //也可以使用带参构造函数直接实例。
ExtendedProperties props = new ExtendedProperties();
velocity.Init(props);

第二步:Creating the Template加载模板文件
这时通过的是Template类,并使用VelocityEngine的GetTemplate方法加载模板
Template template = velocity.GetTemplate(@"path/to/myfirsttemplate.vm");

第三步:Merging the template整合模板
VelocityContext context = new VelocityContext();
context.Put("from", "somewhere");
context.Put("to", "someone");
context.Put("subject", "Welcome to NVelocity");
context.Put("customer", new Customer("John Doe") );

第四步:创建一个IO流来输出模板内容。推荐使用StringWriter(因为template中以string形式存放)
StringWriter writer = new StringWriter();
template.Merge(context, writer);
Response.Write(writer.ToString());

---通过上述步骤就可以轻松的使用NVelocity模板引擎的技术了。
有没有发现最后的Response.Write(writer.ToString())?
这个是直接输入到页面上。如果我们不直接输出到页面上,而是把它写入到一个文件中呢?
生成静态页--是的,这是让大家都心动的。 
下面的代码是我第一个练习:
NVelocity模板引擎初学总结。[zhuan]using Commons.Collections;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity.App;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity.Context;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity.Runtime;
NVelocity模板引擎初学总结。[zhuan]using Commons.Collections;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity.App;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity.Context;
NVelocity模板引擎初学总结。[zhuan]
using NVelocity.Runtime;
}

相关文章:

  • 2022-02-12
  • 2022-02-28
  • 2021-12-25
  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
  • 2021-09-17
猜你喜欢
  • 2021-05-20
  • 2022-12-23
  • 2021-11-16
  • 2022-12-23
  • 2022-12-23
  • 2021-08-15
  • 2022-12-23
相关资源
相似解决方案