我正在尝试为基于Struts2的webapp编写动态邮件系统。 我想使用速度作为模板工具,我想知道我是否可以使用与struts2捆绑的速度,或者我需要获得速度JAR的独立副本?
到目前为止,我已经尝试了这个
VelocityManager vm = new VelocityManager();
VelocityEngine ve = vm.getVelocityEngine();
但是eclipse抱怨丢失VelocityEngine类时出现此错误
The method getVelocityEngine() from the type VelocityManager refers to the missing type VelocityEngine
我该怎么办?
由于
答案 0 :(得分:0)
课程VelocityEngine
打包在velocity-1.6.4.jar
中。您应该将此文件添加到构建路径。如果您正在使用maven,那么它应该自动解决依赖。 Struts2支持使用velocity作为模板处理器。您应该阅读文档如何使用velocity result。