Allow devtools properties in user.home

Support loading a `.spring-boot-devtools.properties` file from the
users home folder. The property file can be used to customize settings
that make sense on a per-user basis, but might not want to be checked
into the project.

Fixes gh-3151
This commit is contained in:
Phillip Webb
2015-06-08 23:42:11 -07:00
parent d0349879c3
commit 9929e39124
5 changed files with 185 additions and 0 deletions

View File

@@ -26,4 +26,5 @@ public class SampleDevToolsApplication extends WebMvcAutoConfigurationAdapter {
public static void main(String[] args) {
SpringApplication.run(SampleDevToolsApplication.class, args);
}
}