Example usage for org.springframework.boot.context.event ApplicationReadyEvent getSpringApplication

List of usage examples for org.springframework.boot.context.event ApplicationReadyEvent getSpringApplication

Introduction

In this page you can find the example usage for org.springframework.boot.context.event ApplicationReadyEvent getSpringApplication.

Prototype

public SpringApplication getSpringApplication() 

Source Link

Usage

From source file:com.example.config.StartupApplicationListener.java

private Set<Class<?>> sources(ApplicationReadyEvent event) {
    Method method = ReflectionUtils.findMethod(SpringApplication.class, "getAllSources");
    if (method == null) {
        method = ReflectionUtils.findMethod(SpringApplication.class, "getSources");
    }//from   w w  w .j  a v a 2s  .  c o  m
    ReflectionUtils.makeAccessible(method);
    @SuppressWarnings("unchecked")
    Set<Object> objects = (Set<Object>) ReflectionUtils.invokeMethod(method, event.getSpringApplication());
    Set<Class<?>> result = new LinkedHashSet<>();
    for (Object object : objects) {
        if (object instanceof String) {
            object = ClassUtils.resolveClassName((String) object, null);
        }
        result.add((Class<?>) object);
    }
    return result;
}