简体   繁体   中英

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 (eg 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?

“刷新使用本机挂钩或轮询”设置

您可以使用“同步”按钮(两个黄色箭头)或简而言之Ctrl + Alt + Y

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 eg tomcat)

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

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.

单击文件>同步(或)快捷键ctrl + Alt + Y

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

同步按钮

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM