Show all beans provided by Spring Boot

www‮uttual.‬ri.com
Show all beans provided by Spring Boot
@Bean
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
    return args -> {
        String[] beanNames = ctx.getBeanDefinitionNames();
        Arrays.sort(beanNames); // in alphabetical order
        for (String beanName : beanNames) {
            System.out.println("beans "+beanName);
        }
    };
}
Created Time:2017-10-08 23:50:52  Author:lautturi