我正在尝试为基于 Struts 2 的 Web 应用程序编写一个动态邮件系统。
我想使用 Velocity 作为模板工具,我想知道我是否可以使用与 Struts 2 捆绑的 Velocity 或者我需要获取 Velocity JAR 的独立副本?
到目前为止我已经尝试过这个
VelocityManager vm = new VelocityManager();
VelocityEngine ve = vm.getVelocityEngine();
但是 Eclipse 抱怨缺少
VelocityEngine
类并出现以下错误:
The method getVelocityEngine() from the type VelocityManager refers to the missing type VelocityEngine
我该怎么办?