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>
서버를 실행시켜 http://localhost:8080/hello-static.html 에 접속해보면 다음과 같이 결과가 나온다.
말 그대로 정적 컨텐츠라서 안에 특별히 프로그래밍을 할 수 없다. 동작 구조는 다음과 같다.
먼저 hello-static관련 controller를 찾는다. 관련 controller가 없기에 static디렉토리 내에서 hello-static.html을 찾아 보여준다. (만약 찾는다면 이저 포스트와 같이 controller에 의해 동작)