I created a MyApplication.java file following the tutorial under the URL linked below using maven. https://docs.spring.io/spring-boot/tutorial/first-application/index.html import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @RestController @SpringBootApplication public class MyApplication { @RequestMapping(“/”) String home() { return “Hello World!”; } public static void main(String[] args) { SpringAppli