Struts2 的 Django 调试工具栏模板列表功能
我正在开发一个使用 Sitemesh 作为模板引擎。我需要的是按请求使用的所有模板(JSP)的列表。
在其他项目中,我使用 Django 框架,有了它,我有了这个令人惊叹的 调试工具栏,除了许多其他有用的信息之外,还为我提供了用于显示页面的请求的模板列表。
当我有超过 600 个模板形成复杂的模板 Web 时,此列表非常有用需要将其中一个中的
更改为 。
好吧,我并不期望 Struts2 有这么好的东西,仅仅一个 LOG.debug(); 的原始列表将使我的工作变得更加容易。
I'm developing a Struts2 application that uses Sitemesh as template engine. What I need is a list of all the templates (JSP) that are used by request.
In other projects I use Django Framework, with it I've this amazing Debug Toolbar that, besides many other useful info, provides me with the list of templates the request used for displaying the page.
This list is surprisingly helpful when in have more than 600 templates that forms a intricate template web and I need to change a <br />
to a <p></p>
in one of them.
Well I don't expect anything as nice as this for Struts2, just a raw list of LOG.debug(<template>);
will make my work so much easier.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我读了一些东西 并创建了以下类:
将其添加到 struts.xml:
就完成了!:
如果我发现一些额外有用的输出,我将更新这篇文章。
Ok, I read some stuff and made the following class:
Added this to struts.xml:
And it's done!:
I will update this post if I find out some extra useful output.