Velocity:隐藏模板中的方法
有没有办法可以将公共方法标记为“不可从速度模板调用”。
Is there a way I can mark a public method as "not callable from a velocity template".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有办法可以将公共方法标记为“不可从速度模板调用”。
Is there a way I can mark a public method as "not callable from a velocity template".
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
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.