Example usage for org.springframework.boot.devtools.restart RestartInitializer NONE

List of usage examples for org.springframework.boot.devtools.restart RestartInitializer NONE

Introduction

In this page you can find the example usage for org.springframework.boot.devtools.restart RestartInitializer NONE.

Prototype

RestartInitializer NONE

To view the source code for org.springframework.boot.devtools.restart RestartInitializer NONE.

Click Source Link

Document

RestartInitializer that doesn't return any URLs.

Usage

From source file:org.springframework.boot.devtools.restart.Restarter.java

/**
 * Initialize and disable restart support.
 *//*from   ww w. j a  v a  2 s.c  o m*/
public static void disable() {
    initialize(NO_ARGS, false, RestartInitializer.NONE);
    getInstance().setEnabled(false);
}