Example usage for org.springframework.boot.devtools.restart MainMethod MainMethod

List of usage examples for org.springframework.boot.devtools.restart MainMethod MainMethod

Introduction

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

Prototype

MainMethod(Thread thread) 

Source Link

Usage

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

private String getMainClassName(Thread thread) {
    try {// w  ww . j a va 2s .  c o m
        return new MainMethod(thread).getDeclaringClassName();
    } catch (Exception ex) {
        return null;
    }
}