
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
1) /html/redirect 실습 공부 중에 웹페이지 오류가 나는데 어디서 오류가 발생했는지 궁금합니다.
2) 해당 오류가 @RequestMapping("/api") 이 부분을 작성해서 생긴 것 같습니다.
그러나 이 부분을 적으면 왜 오류가 발생하는지 궁금합니다.
보고 계신 화면 전체를 캡처해 주시면, 튜터님들이 빠르게

상황을 이해할 수 있어요.
작성한 코드 및 에러 메세지
@Controller
@RequestMapping("/api")
public class HtmlController {
@GetMapping("/static-hello")
public String staticHello(){
return "hello.html";
}
@GetMapping("/html/redirect")
public String htmlStatic(){
return "redirect:/hello.html";
}
}
