删除 WebSphere 中 J2EE/Struts 应用程序中不必要的空格
是否有人熟悉使用 JSTL 等标签库所产生的删除空格的技术? 我知道您可以在 Tomcat 中通过 trimSpaces
初始化来执行此操作 参数,但是有人有在 WebSphere App Server 中执行此类操作的类似经验吗?
Is anyone familiar with a technique for removal of whitespace that results from the use of tag libraries such as JSTL? I know that you can do this in Tomcat via a trimSpaces
initialization parameter, but does anyone have similar experience doing this type of thing within WebSphere App Server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 2.1 版或更高版本的 JSP 规范,则只需在 JSP 中包含以下指令,该指令将在通过网络发送结果有效负载之前去除空格:
If you're using version 2.1 or later of the JSP spec, you can simply include the following directive in your JSP, which will strip out whitespace before sending the resultant payload over the wire:
http://raibledesigns.com/rd/entry/trim_spaces_in_your_jsp1
http://raibledesigns.com/rd/entry/trim_spaces_in_your_jsp1