We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
회원 웹 기능 추가
HomeController 생성
Controller에서 mapping된 곳에서 다른 곳으로 넘어가는, 즉 return된 static파일이 없을 때 index.html로 가는 것이 아니라 에러가 뜸.
→ 컨트롤러가 static보다 우선순위가 높다
@PostMapping
→ html에서 post방식으로 넘어오면 여기로 넘어옴
return “redirect:/”; 가 되면 ‘/’로 redirect됨