JBoss 5.1 删除响应 html 中的空格

发布于 2024-10-16 05:06:12 字数 358 浏览 2 评论 0原文

是否有任何 JBoss 5.1 插件或实用程序可以自动删除作为响应发送的 HTML 中的所有前导和尾随空格。或者在部署 JSP 时可以对它们进行类似的操作。 即使是特定于应用程序的设置也可以。

我已经在使用了,

<init-param>
 <param-name>trimSpaces</param-name>
 <param-value>true</param-value>
</init-param>

但这对我不起作用。

我读过其他文章,其中提到在部署之前减少文件,但我想知道是否有任何自动化解决方案,而不是手动清理每个文件。

Is there any JBoss 5.1 plugin or utility that automatically removed all the leading and trailing white spaces in an HTML it is sending as a response. Or something similar can be done to JSP when they are deployed.
Even an application specific setting would do.

I am already using

<init-param>
 <param-name>trimSpaces</param-name>
 <param-value>true</param-value>
</init-param>

but this is not working for me.

I have read other articles which says to reduce the file before deploying it, but I was wondering if there is any automated solution to this, instead of cleaning each file manually.

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

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

发布评论

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

评论(1

玻璃人 2024-10-23 05:06:12

您可以编写 ServletFilter 来执行此操作。

例如,代码几乎可以完成您想要的操作,请查看此 空白过滤器在 BalusC 的博客上。

You can write a ServletFilter to do this.

For example code doing pretty much what you're after, look at this whitespace filter on BalusC's blog.

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