我可以将 JSP 标签库与 FreeMarker 一起用于非 Web 上下文吗?
我正在研究 FreeMarker(以及 Velocity),我喜欢 FreeMarker 的原因之一是我可以将它与我现有的 JSP 标记一起使用。 然而,我的理解是,这仅在使用 FreeMarker 作为 servlet 视图时才有效。 有没有办法在非 servlet 上下文中将这些 JSP 标记库与 FreeMarker 或 Velocity 一起使用,即生成电子邮件消息?
I was investigating FreeMarker (and also Velocity), and one of the things I liked about FreeMarker was that I could use it with my existing JSP tags. However, it's become my understanding that this will only work when using FreeMarker as a view for servlets. Is there a way to use these JSP tag libraries with either FreeMarker or Velocity in a non-servlet context, i.e. for generating email messages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种方法,但它并不完全漂亮:)
FreemarkerServlet(或Spring的视图解析器,如果您使用Spring MVC)公开您需要的JspTaglibs哈希,以便在模板中使用标签并模拟标签使用的JSP环境(范围在特别的)。 您必须在电子邮件处理器中自行完成此操作。
请参阅此处的详细信息:在 FTL 中使用 JSP 自定义标记
There is a way, but it's not exactly pretty :)
FreemarkerServlet (or Spring's view resolver, if you're using Spring MVC) exposes JspTaglibs hash that you need in order to use tags in templates and emulates JSP environment used by tags (scopes in particular). You'll have to do it yourself in your email processor.
See details here: Using JSP custom tags in FTL