需要一个基于 Java 的 HTML 修饰器来清理 Velocity 生成的 HTML
我正在开发的 Web 应用程序使用 Velocity 模板生成 HTML。问题是,在速度模板和其他格式中使用空格会导致 HTML 丑陋(空格过多、未对齐等)。
寻找一个好的(单个 jar 包装会很好)基于 Java 的 HTML 修饰器来运行生成的 HTML 权利在我们将其转储到 servlet 响应以使源代码更易于查看之前。
第三方集成商希望能够浏览 HTML 并了解哪些模板导致了问题。第一步是正确设置 HTML 格式。
预先感谢您提供的任何指导!
Web app I'm working on generates HTML using Velocity templates. Problem is that using whitespace in velocity templates and other formatting results in butt-ugly HTML (excessive whitespace, misalignment, etc.)
Looking for a nice (single jar packaging would be nice) Java-based HTML prettifier to run over the generated HTML right before we dump it to the servlet response to make the source nicer to look at.
Third party integrators would like to be able to glance at the HTML and know which templates are causing problems. The first step to this is having the HTML formatted nicely.
Thanks in advance for any guidance you can provide!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JTidy 有一个
JTidyFilter
.只需在web.xml
中定义它,响应 HTML 就会被美化。JTidy has a
JTidyFilter
. Just define it inweb.xml
and the respone HTML will be prettified.JTidy 可能就是您要搜索的内容。
JTidy could be what you're searching for.
我知道它现在没有帮助,但我认为理想的解决方案是让 Velocity 首先支持“更好的空白生成和控制”:)。
如果许多用户请求并投票这样的功能,也许 Velocity 团队会包含它。始终在输出上运行 jTidy 或其他解析器(例如,对于实时请求)会消耗相当多的资源,因此我不确定这是否是最好的方法,特别是对于动态内容,其中缓存已清理的输出不会带来太多资源。
I know it's not helping right now, but I think the ideal solution would be for Velocity in first place to support a "better whitespace generation and control" :).
If many users would request and vote such a feature, maybe the Velocity team would include it. Running jTidy or other parsers over the output all the time (e.g. for live requests) consumes quite a few resources, so I'm not sure if it's the best approach especially for dynamic content where caching of that cleaned output doesn't bring much.
这里有很多 HTML 解析器: Java 中的开源 HTML 解析器
There are many HTML parsers here: Open Source HTML Parsers in Java