Browse Source

Fix meta-data for spring.devtools.remote

See gh-3086
pull/3160/head
Stephane Nicoll 11 years ago
parent
commit
6bc4df5690
  1. 3
      spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsProperties.java

3
spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsProperties.java

@ -17,11 +17,13 @@ @@ -17,11 +17,13 @@
package org.springframework.boot.devtools.autoconfigure;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
/**
* Configuration properties for developer tools.
*
* @author Phillip Webb
* @author Stephane Nicoll
* @since 1.3.0
*/
@ConfigurationProperties(prefix = "spring.devtools")
@ -37,6 +39,7 @@ public class DevToolsProperties { @@ -37,6 +39,7 @@ public class DevToolsProperties {
private Livereload livereload = new Livereload();
@NestedConfigurationProperty
private RemoteDevToolsProperties remote = new RemoteDevToolsProperties();
public Restart getRestart() {

Loading…
Cancel
Save