在 Liferay 5.2.3 中禁用 JavaScript minifier 时出现问题

发布于 2024-11-06 19:08:07 字数 303 浏览 1 评论 0原文

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

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

发布评论

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

评论(3

风筝有风,海豚有海 2024-11-13 19:08:07

要在不修改门户属性的情况下禁用缩小器,请将以下参数添加到您的 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

清风夜微凉 2024-11-13 19:08:07

我想,我已经找到了解决方案。

当我禁用 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!

辞旧 2024-11-13 19:08:07

您确定门户已加载您的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.

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