intelliJ Idea不生成cache.js文件
对于 Linux 上使用 GWT 的 IntelliJ 10.5.1,当选择“构建 'xyz:GWT' 工件”时,它通常只会构建 nnnn.cache.html 文件,而不是 nnnn.cache.js 文件。我尝试过清理缓存、重建项目、重新加载 IntelliJ,但不知道还能尝试什么。
以前也出现过这种情况,不知道后来怎么解决的。重启系统?
With IntelliJ 10.5.1 on Linux using GWT when selecting "Build 'xyz:GWT' artifact" it will often times just build the nnnn.cache.html files, but not the nnnn.cache.js files. I've tried cleaning the cache, rebuilding the project, reloading IntelliJ but don't know what else to try.
This has happened before, but I don't know what fixed it afterwards. Rebooting the system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
IDEA 将 GWT 编译器生成的文件放置到 USER_HOME/.IntelliJIdea10/system/gwt/project_name_with_hash/module_name_with_hash/compile/www 目录,然后将这些文件复制到工件输出。这样你就可以检查该目录是否包含所需的文件。
IDEA places files generated by GWT compiler to USER_HOME/.IntelliJIdea10/system/gwt/project_name_with_hash/module_name_with_hash/compile/www directory and then copies these files to the artifact output. So you can check whether that directory contains required files.
尝试将
-war
添加到开发模式属性。它将把所有编译的文件放到这个文件夹中。Try to add
-war <path/to/your/war>
to dev mode properties. It will put all compiled files to this folder.