在 Liferay 5.2.3 中禁用 JavaScript minifier 时出现问题
我在 Liferay 5.2.3 中禁用 JavaScript minifier 时遇到问题。 我尝试了以下操作:
- 将属性 javascript.fast.load=false 放入 Portal-ext.properties
- 将属性 com.liferay.portal.servlet.filters.minifier.MinifierFilter=false 放入 Portal-ext.properties
- 将 js_fast_load url 参数设置为 0
但它仍然有效。我能错过什么?
I have a problem with disabling JavaScript minifier in Liferay 5.2.3.
I tried the following things:
- put property javascript.fast.load=false to portal-ext.properties
- put property com.liferay.portal.servlet.filters.minifier.MinifierFilter=false to portal-ext.properties
- set js_fast_load url parameter to 0
but it still works. What could I miss?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要在不修改门户属性的情况下禁用缩小器,请将以下参数添加到您的 url 查询字符串中:
js_fast_load=0 <-- 禁用 js 压缩器
css_fast_load=0
<-- 禁用 css 压缩器
strip=0 <- - 禁用带状过滤器
请参阅 http://www.liferay.com/web/igor.spasic/blog/-/blogs/turn-off-minifiers-and-html-stripping
To disable the minifier without modifying the portal properties add the following parameters to your url query string:
js_fast_load=0 <-- disable js minifier
css_fast_load=0 <-- disable css minifier
strip=0 <-- disable strip filter
See http://www.liferay.com/web/igor.spasic/blog/-/blogs/turn-off-minifiers-and-html-stripping
我想,我已经找到了解决方案。
当我禁用 StripFilter 时,内容并未最小化。
门户扩展属性:
com.liferay.portal.servlet.filters.strip.StripFilter=false
这很奇怪,因为我没有找到任何有关此过滤器的这种行为的文档。我在分析 Liferay 源代码后发现了它。
亲爱的读者,任何有关 StripFilter 的评论都值得赞赏。谢谢你!
I think, I've found the solution.
When I disabled StripFilter, the content has not been minimized.
portal-ext.properties:
com.liferay.portal.servlet.filters.strip.StripFilter=false
It's strange, because I didn't find any documentation about such a behaviour of this filter. I discovered it after an analysis of the Liferay source code.
Dear readers, any comment about the StripFilter is appreciated. Thank you!
您确定门户已加载您的portal-ext.properties 吗?它应该在启动期间打印该位置。
绝对确保不使用压缩器的一种方法是,您可以从 web.xml 中注释掉过滤器。
Are you sure your portal-ext.properties is loaded by the portal? It should print the location during startup.
One way to make absolutely sure minifier is not used you can comment out the filter from web.xml.