处理在 Freemarker 的 ftl 页面上找不到文件
我们如何处理 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果在“主”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'stry-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.