Velocity:隐藏模板中的方法

发布于 2024-08-05 15:21:30 字数 34 浏览 5 评论 0原文

有没有办法可以将公共方法标记为“不可从速度模板调用”。

Is there a way I can mark a public method as "not callable from a velocity template".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_蜘蛛 2024-08-12 15:21:30

Velocity 将所有公共方法公开给模板。没有办法隐藏它们。

标准方法是在上下文中使用类的外观。出于同样的原因,我们被迫这样做,但我们发现外观还有其他好处。例如,您可以通过组合多个方法来简化调用,或者可以将值限制为某些参数,而您不希望对 Java 代码执行此操作。

Velocity exposes all public methods to the template. There is no way to hide them.

The standard approach for this is to use a facade to your class in the context. We were forced to do this for the same reason but we found other benefits with a facade. For example, you can simplify the call by combining several methods, or you can restrict values to certain arguments, which you don't want do to your Java code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文