English 中文(简体)
How to immediately see compile errors in project tree of IntelliJ Idea?
原标题:

I m wondering if it is possible to configure IntelliJ Idea to immediately show compile errors on the class files in the project tree. Currently I need to manually trigger the recompilation to see error marks on my classes if the class cannot be compiled.

最佳回答

As of IntelliJ 12 there s an option to automatically build your project upon source changes. In "Settings" --> Build, Execution, Deployment --> "Compiler" check the checkbox "Build project automatically". This will immediately show any compile errors in the project tree.

问题回答

I did some further searches in the web about this feature. At the end it seems that exactly this feature is not available. There are some discussions about this topic where also some (in my point of view) workarounds are mentioned. The most helpful discussion I found here.

You can access all the compile problems like so:

  • open the "Project" explorer (usually docked on the left)
  • click the "Project" dropdown in the upper left corner
  • select "Problems" under "Scopes"

You ll see a tree of files and problems. Also, on the bottom toolbar, you should see a tab called "Problems" which lists everything as well. It s not as easy to use as the Eclipse "Problems" view, but it s close.

I m on version 12.1.4, not sure what version this feature first came in, though.

For me, "disabling power safe mode" did the trick.

enter image description here

You might try the Eclipse Mode plugin for IntelliJ. It allows you to do incremental compile upon saving a file:

http://plugins.intellij.net/plugin/?id=3822





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签