Home / cs-notes / Architecture / Components / Spring / Boot / Start / Runner / ApplicationRunner
public interface ApplicationRunner 
{    
/**
     * Callback used to run the bean.
     * @param args incoming application arguments
     * @throws Exception on error
     */
    void run(ApplicationArguments args) throws Exception;
}