This page (revision-61) was last changed on 24-Sep-2019 16:53 by Albrecht Striffler

This page was created on 29-Jan-2014 10:44 by Albrecht Striffler

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
61 24-Sep-2019 16:53 11 KB Albrecht Striffler to previous

Page References

Incoming links Outgoing links
IntelliJ FAQ ...nobody

Version management

Difference between version and

At line 103 added one line
!!View all current compile error of the project/workspace
At line 105 added 2 lines
IntelliJ does not have a view showing all current compile errors like Eclipse did, because it does not compile automatically on each change of the code.\\
For me, the best replacement so far is the following:
At line 108 added 2 lines
# In the settings, search for Java Compiler and select "Eclipse" as compiler.
# Make sure that "Proceed on errors" is checked
At line 111 added one line
If you now want to see all compile errors, e.g. after a "dirty refactoring":
At line 113 added 3 lines
# Go to "Build" and "Make Project". It may take a few seconds, but not many (< 10s for me). If you made changes with big impact in Eclipse, it would also compile for some time...
# You now see the errors and warnings in the messages view.
# Alternatively, select scope "Problems" in the Project view. It will show all classes/files with compile errors.
At line 118 added 6 lines