Example usage for org.springframework.boot.devtools.restart.classloader ClassLoaderFileRepository NONE

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

Introduction

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

Prototype

ClassLoaderFileRepository NONE

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

Click Source Link

Document

Empty ClassLoaderFileRepository implementation.

Usage

From source file:org.springframework.boot.devtools.restart.classloader.RestartClassLoader.java

/**
 * Create a new {@link RestartClassLoader} instance.
 * @param parent the parent classloader/* ww  w  . j a va 2  s.co m*/
 * @param urls the urls managed by the classloader
 */
public RestartClassLoader(ClassLoader parent, URL[] urls) {
    this(parent, urls, ClassLoaderFileRepository.NONE);
}