yaml
jsp 이동경로 설정을 하지 않으면
html 문서가 찾아지게 되고
@GetMapping("/temp/home")
public String tempHome() {
return "/home.html";
}
jsp 이동경로 설정을 하게 되면
html 문서가 찾지 못한다
@GetMapping("/temp/home")
public String tempHome() {
return "/home.html";
}
src/main/resoures/static ->
정적인 파일은 가능 ex> html,png 등등