diff --git a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc index 77c14488acb..f47eee7e6f8 100644 --- a/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc +++ b/spring-boot-docs/src/main/asciidoc/using-spring-boot.adoc @@ -943,14 +943,13 @@ on the classpath change. This can be a useful feature when working in an IDE as a very fast feedback loop for code changes. By default, any entry on the classpath that points to a folder will be monitored for changes. -.Triggering a change +.Triggering a restart **** -As DevTools _only_ monitors classpath resources, the only way to trigger a change is to -update the classpath. On Eclipse, saving is actually updating the project, compiling or -copying resources for you as part of the save action. If you are using IntelliJ IDEA, -there is no such thing as a save action since the resources are saved automatically. -IntelliJ IDEA users should use the `Build` -> `Make Project` action to achieve the same -result. +As DevTools _only_ monitors classpath resources, the only way to trigger a restart is to +update the classpath. In Eclipse, saving a modified file triggers an increment build which +updates the classpath automatically. If you are using IntelliJ IDEA, you will have to +manually run a build using `Build` -> `Make Project`. This will update the classpath and +trigger a restart. **** NOTE: You can also start your application via the supported build plugins (i.e. Maven and