Garret Wilson
Garret Wilson

Reputation: 21346

have IntelliJ IDEA refresh the project and detect changed files

I'm using Eclipse for development because of all the things IntelliJ can't do (e.g. highlight all instances of a variable) and because IntelliJ is dog slow over a remote connection. But because I still don't have Maven integrated completely into Eclipse, I have to switch back to IntelliJ to compile and run my project using Tomcat.

How can I tell IntelliJ to detect all files that have changed on the file system and recompile them? (I don't want to manually open each changed file to get IntelliJ to detect the change.) In Eclipse I would just Refresh the project tree [1]...

Footnotes:

  1. Eclipse has a feature (named "Refresh Using native hooks or polling") which you can enable to automatically detect changes and synchronise the perspective when any underlying changes are detected in the filesystem (see images below). This is quite handy and eliminates the need to manually refresh the project when using build tools - where files/directories get created in the project directory structure.

Is there anything similar for Intellij (explicit setting or otherwise) that eliminates having to click a button to synchronize the view with filesystem changes?

'Refresh Using native hooks or polling' setting

Upvotes: 41

Views: 97179

Answers (6)

Testilla
Testilla

Reputation: 692

There is a synchronise button in the tool bar. Click it and it will refresh the project explorer

Synchronise button

Upvotes: 1

Vadiraj S J
Vadiraj S J

Reputation: 717

Click File>Synchronize (or) shortcut ctrl+Alt+Y

Upvotes: 1

benignfoppery
benignfoppery

Reputation: 55

Right click on your Project in the left pane and click on "Synchronize"

You can see the status in the round circling icon at the bottom left of the IDE

Upvotes: 4

krakover
krakover

Reputation: 3029

You can use the "synchronize" button (two yellow arrows) or in short Ctrl+Alt+Y

Upvotes: 72

tijis
tijis

Reputation: 21

I know this question was posted a few years ago, but maybe this info will help someone in the future. I was actually looking into a similar issue, and doing the following worked for me:

Go to Settings > Build, Execution, Deployment > Compiler and make sure "Make project automatically" is checked.

Upvotes: 2

m.milicevic
m.milicevic

Reputation: 229

Intellij can highlight variable instances, you just need to enable it . Further, if you invoke compile project, Intellij will just compile changed files (and hotswap when possible, if you are in debug mode & deploying to e.g. tomcat)

Upvotes: 8

Related Questions