List of usage examples for org.springframework.boot.devtools.restart.classloader ClassLoaderFileRepository NONE
ClassLoaderFileRepository NONE
To view the source code for org.springframework.boot.devtools.restart.classloader ClassLoaderFileRepository NONE.
Click Source Link
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); }