Mojarra:提供非缩小的 Javascript 文件

发布于 2024-12-05 21:26:07 字数 130 浏览 0 评论 0原文

我必须调试部分 mojarra 2.1.3 javascript 源。不幸的是,它们现在以缩小版本(jsf.js)提供。我在源代码中找到了 jsf_uncompresses.js,我如何告诉 mojarra 使用它?我必须更换 jsf.js 吗?

I have to debug part of the mojarra 2.1.3 javascript sources. Unfortunately, they are right now delivered in a minified version (jsf.js). I found jsf_uncompresses.js in the sources, how can I tell mojarra to use this? Do I have to replace jsf.js?

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

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

发布评论

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

评论(3

相权↑美人 2024-12-12 21:26:07

有一个更好的解决方案,将此代码段添加到您的 web.xml 中:

<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>   
<param-value>Development</param-value>
</context-param>

There is one better solution, add this snippet to your web.xml:

<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>   
<param-value>Development</param-value>
</context-param>
や三分注定 2024-12-12 21:26:07

您只需将 .js 文件的未压缩版本复制到项目中,然后将其包含在页面中即可。这将覆盖 JSF 包含的版本。

You can simply copy uncompressed version of the .js file in your project and then include it in your page. This will override version insluded by JSF.

ま昔日黯然 2024-12-12 21:26:07

事实证明,最简单的方法就是解压 Glassfish 3.1 提供的 jsf-impl.jar,将 jsf.js 更改为 jsf-uncompressed.js,然后再次压缩并重命名为 .tar。希望这可以帮助别人

It turned out, that the easiest way was to just dezip jsf-impl.jar provided by Glassfish 3.1, change jsf.js to jsf-uncompressed.js and then zip it again and rename it to .tar. Hope this could help somebody

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