인프런 김영한님의 스프링 입문 강의를 듣고 정리한 내용입니다.
resources
경로 내 static
폴더에 있는 정적 콘텐츠들을 불러와 제공<예시 파일>
resources/static/hello-static.html
<!DOCTYPE HTML>
<html>
<head>
<title>static content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
정적 컨텐츠 입니다.
</body>
</html>
1) 웹브라우저에서 static 파일을 호출하는 요청을 보냄
2) 톰캣 서버를 통해 요청을 전달 받으면 스프링부트는 먼저 controller 중에 hello-static이 있는 지 검사
3) controller 중에 없으면 static 파일 경로(여기선 resources/static/
)에서 hello-static이란 파일이 있는 지 검사