处理在 Freemarker 的 ftl 页面上找不到文件

发布于 2024-12-01 06:38:03 字数 137 浏览 1 评论 0原文

我们如何处理 fileName.ftl 文件上的文件未找到异常?许多人已经解释了如何在操作 servlet 上处理它。但我没有使用任何操作 servlet 来加载 freemarker。所以没有其他选择,我必须找到一种方法来在模板文件本身上处理它......!

How can we handle the file not found exception on fileName.ftl file? So many have explained handling it on the action servlets. But I am not using any action servlet to load the freemarker. So no other option and I have to find a way to handle it on the template file itself..!

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

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

发布评论

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

评论(1

风追烟花雨 2024-12-08 06:38:03

如果在“主”FTL 模板内的 FTL <#import><#include> 期间发生 FileNotFoundException ,那么我认为您可以使用 FTL 的 attempt-recover-construct 捕获异常(类似于Java 的 try-catch)。但是,如果找不到“主”模板,则 FreeMarker 之外的某些东西(例如调用 FreeMarker 的 servlet)必须处理它。

If the FileNotFoundException occurs during a FTL <#import> or <#include> inside your "main" FTL template, then I think you can catch the exception with FTL's attempt-recover-construct (similar to Java's try-catch). But if your "main" template cannot be found, then something outside of FreeMarker (e.g. the servlet which invoked FreeMarker) has to deal with it.

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