Fix meta-data for spring.devtools.remote

See gh-3086
This commit is contained in:
Stephane Nicoll 2015-06-09 14:01:56 +02:00
parent bdfe5d19a5
commit 6bc4df5690
1 changed files with 3 additions and 0 deletions

View File

@ -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 {
private Livereload livereload = new Livereload();
@NestedConfigurationProperty
private RemoteDevToolsProperties remote = new RemoteDevToolsProperties();
public Restart getRestart() {