For a project JAVA EE in Intellij IDEA, what is the difference between: Rebuild Project and Make Project (in menu Build) ?
Thank you
For a project JAVA EE in Intellij IDEA, what is the difference between: Rebuild Project and Make Project (in menu Build) ?
Thank you
You can reference https://www.jetbrains.com/help/idea/2016.2/compilation-types.html
Make Project - Only modified
All the source files in the entire project that have been modified since the last compilation are compiled. Dependent source files, if appropriate, are also compiled. Additionally, the tasks tied to the compilation or make process on modified sources are performed. For example, EJB validation is performed if the corresponding option is enabled on the Validation page. Refer to the section Making Project for details.
Rebuild Project. - All files
All the source files in the project are recompiled. This may be necessary when the classpath entries have changed, for example, SDKs or libraries being used added, removed or altered. Refer to the section Rebuilding Project for details.
Rebuild recompiles all .class files whether they are out of date or not. Make just recompiles out of date .class files.