Velocity使用总结

1在使用VelocityEngine.getTemplate(filepath)的时候的路径问题(resource不存在的问题)
注意:必须使用相对路径来设置模板的位置,并且该路径是 相对于VelocityEngine的“file.resource.loader.path”属性的。如下可以设置该属性。
VelocityEngine ve = new VelocityEngine();
ve.setProperty("file.resource.loader.path", "E://resource//java//TPSNo02//res//template//test");
ve.init();
2 javaworld上的velocity快速入门级文章,4星。
http://www.javaworld.com/javaworld/jw-12-2001/jw-1228-velocity.html?page=2

你可能感兴趣的:(velocity)