Mojarra:提供非缩小的 Javascript 文件
我必须调试部分 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有一个更好的解决方案,将此代码段添加到您的 web.xml 中:
There is one better solution, add this snippet to your web.xml:
您只需将 .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.
事实证明,最简单的方法就是解压 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