Velocity 1.7 - 有时 Directive.postRender 在 Velocity.evaluate 中抛出 NullPointerException

Velocity 1.7 - Sometimes Directive.postRender throws NullPointerException in Velocity.evaluate

我在使用 Velocity 模板时遇到了一个问题。对于我的模板中使用的 foreach 函数,它为 Directive.postRender 抛出 NullPointerException

奇怪的行为 是使用完全相同的模板和相同的输入数据,Velocity 能够成功完成评估过程。 100 次说 1 次失败。

任何人都可以分享见解吗?提前致谢!

版本:速度 1.7

java.lang.NullPointerException: null
    at org.apache.velocity.runtime.directive.Directive.postRender(Directive.java:202) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.runtime.directive.Foreach.clean(Foreach.java:489) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.runtime.directive.Foreach.render(Foreach.java:443) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:207) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:342) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.runtime.RuntimeInstance.render(RuntimeInstance.java:1378) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.runtime.RuntimeInstance.evaluate(RuntimeInstance.java:1314) ~[velocity-1.7.jar:1.7]
    at org.apache.velocity.app.Velocity.evaluate(Velocity.java:254) ~[velocity-1.7.jar:1.7]

通过更改使用 Velocity.init() 的代码设法修复 至

VelocityEngine vc = new VelocityEngine();
vc.init();

第一个是单例实现,Velocity 在多线程模式下可能会丢失一些数据。通过将其更改为对每个 pdf 生成调用使用新实例,它的工作就像一个魅力。

谢谢!