Skip to content

Commit

Permalink
Fix default value of restarter meta-data
Browse files Browse the repository at this point in the history
  • Loading branch information
snicoll committed Aug 19, 2015
1 parent 8067a53 commit 0d7ee8a
Showing 1 changed file with 8 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,6 @@
@ConfigurationProperties(prefix = "spring.devtools")
public class DevToolsProperties {

private static final String DEFAULT_RESTART_EXCLUDES = "META-INF/maven/**,"
+ "META-INF/resources/**,resources/**,static/**,public/**,templates/**";

private static final long DEFAULT_RESTART_POLL_INTERVAL = 1000;

private static final long DEFAULT_RESTART_QUIET_PERIOD = 400;

private Restart restart = new Restart();

private Livereload livereload = new Livereload();
Expand All @@ -64,6 +57,14 @@ public RemoteDevToolsProperties getRemote() {
*/
public static class Restart {

private static final String DEFAULT_RESTART_EXCLUDES = "META-INF/maven/**,"
+ "META-INF/resources/**,resources/**,static/**,public/**,templates/**";

private static final long DEFAULT_RESTART_POLL_INTERVAL = 1000;

private static final long DEFAULT_RESTART_QUIET_PERIOD = 400;


/**
* Enable automatic restart.
*/
Expand Down

0 comments on commit 0d7ee8a

Please sign in to comment.