@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);
}
};
}