작성
·
249
0
@Controller
public class HelloController {
@GetMapping("hello-static")
public String hello(Model model) {
model.addAttribute("data", "hello!!");
return "hello";
}
}
위와 같이 컨트롤러를 만들었습니다.
따라서, localhost:8080/hello-static 을 입력하면
template/hello.html로 이동되게 설정했습니다.
하지만, localhost:8080/hello-static.html을 입력하면 template/hello.html로 이동되지 않고 static/hello-static.html로 이동이 됩니다.
강의 내용에 따르면 localhost:8080/hello-static.html을 입력했을 때 hello-static 관련 컨트롤러가 없는 경우에 static/hello-static.html로 이동된다고 하신것으로 기억합니다. 그런데 hello-static 컨트롤러가 있는데도 왜 static으로 가게 되는지 궁금합니다!
답변 1
1
그러면 강의에서 말씀해주신 것 처럼 hello-static 관련 컨트롤러가 있어서 hello-static.html로 가지 않으려면 주소창에 어떻게 입력을 해야하나요?