* Commit for Eval Article pull request * Revert "Commit for Eval Article pull request" * BAEL-46 - Deleted duplicate class. * BAEL-46 - Fixed old script version * BAEL-46 - Updated per editor review * BAEL-46 - Updated JMX for corrected parameters * BAEL-46 - Corrected Name and Directory * Bael-3000 - initial commit * Bael-3000 - update per review * Bael-3000 - Updated per code review * Bael-3000 - Updated per code review * Update core-java-modules/core-java-jndi/pom.xml Co-Authored-By: KevinGilmore <kpg102@gmail.com> * Update core-java-modules/core-java-jndi/pom.xml Co-Authored-By: KevinGilmore <kpg102@gmail.com> * Bael-624 Wildfly Setup * Update pom.xml * Bael-624 Review updates
41 lines
1.2 KiB
Java
41 lines
1.2 KiB
Java
package hello;
|
|
|
|
import java.util.Arrays;
|
|
|
|
import org.springframework.boot.CommandLineRunner;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.boot.builder.SpringApplicationBuilder;
|
|
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
|
import org.springframework.context.ApplicationContext;
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
@SpringBootApplication
|
|
public class Application extends SpringBootServletInitializer {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(Application.class, args);
|
|
}
|
|
|
|
@Override
|
|
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
|
return application.sources(Application.class);
|
|
}
|
|
|
|
@Bean
|
|
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
|
|
return args -> {
|
|
|
|
System.out.println("Let's inspect the beans provided by Spring Boot:");
|
|
|
|
String[] beanNames = ctx.getBeanDefinitionNames();
|
|
Arrays.sort(beanNames);
|
|
for (String beanName : beanNames) {
|
|
System.out.println(beanName);
|
|
}
|
|
|
|
};
|
|
}
|
|
|
|
}
|