HashMap<String, Object> props = new HashMap<>();props.put("server.port", 9999);
new SpringApplicationBuilder().sources(SampleController.class).properties(props).run(args);
@SpringBootApplication(scanBasePackages = {"com.javabrains.util"})public class CourseApiApp {
public static void main (String args []) {SpringApplication.run(CourseApiApp.class, args);}}