19

I'm a relatively new user of the IntelliJ IDEA, moved to it from Eclipse. It has been working fine for several months, but now the code analysis plugin that performs analysis and precompiles the code on the fly, fails to work. It shows errors where they've been already fixed, not importing classes correctly. Restarting IDEA, updating to latest version and so on doesn't help. Did anybody face such problems and how did you resolve them?

4

5 回答 5

15

问题似乎已解决,总体而言,当 Intellij 中的某些内容无法正常工作时,您可以做几件事:

  1. 关闭intellij,再次打开。
  2. 尝试构建项目
  3. 尝试使缓存无效并从“文件”菜单重新启动
  4. 如果使用 Maven 尝试重新导入所有模块并重新生成源,这两个功能在“Maven 项目”窗口中彼此相邻。
  5. 如果一切都失败了,删除整个项目并重新导入它(对于 maven,通过 pom.xml 再次打开项目,用于 gradle 和 build.gradle 等)。
于 2015-06-12T19:39:01.857 回答
4

分析 > 检查代码对我有用

于 2017-03-01T20:19:29.040 回答
0

我在使用 Swagger 插件时遇到问题,而 intelij 分析刚刚崩溃。禁用插件解决了我的问题

于 2021-04-22T08:18:40.420 回答
0

我有一个类似的问题。事实证明,我启用了省电模式。禁用后,IntelliJ IDEA 又开始正常工作了。您可以从 禁用省电模式File->Power Save Mode

于 2021-12-06T13:11:14.473 回答
0

我遇到了同样的问题,它与错误IDEA-202867 - 当 Groovy 插件被禁用时 Java 项目的代码分析失败有关

启用 Groovy 插件对我来说很有帮助。

于 2019-02-22T10:34:28.260 回答