我使用速度将字符串(模板)与字段合并
hi there I'am ${name},
And I'am ${age} old.
速度合并了该字段${name}
并${age}
与一种哈希表:
velocityEngine.evaluate(context, writer, "", template);
context
是哈希表(或更好的VelocityContext
类型)
我想当 Velocity 在上下文中找不到该字段时,他只是删除它们。
我可以用财产或其他东西做到这一点吗?