需要一个基于 Java 的 HTML 修饰器来清理 Velocity 生成的 HTML

发布于 2024-08-22 00:13:03 字数 258 浏览 3 评论 0原文

我正在开发的 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 技术交流群。

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

发布评论

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

评论(4

原谅过去的我 2024-08-29 00:13:03

JTidy 有一个JTidyFilter.只需在 web.xml 中定义它,响应 HTML 就会被美化。

JTidy has a JTidyFilter. Just define it in web.xml and the respone HTML will be prettified.

淡莣 2024-08-29 00:13:03

JTidy 可能就是您要搜索的内容。

JTidy could be what you're searching for.

伴我心暖 2024-08-29 00:13:03

我知道它现在没有帮助,但我认为理想的解决方案是让 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.

阳光下慵懒的猫 2024-08-29 00:13:03

这里有很多 HTML 解析器: Java 中的开源 HTML 解析器

There are many HTML parsers here: Open Source HTML Parsers in Java

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