Spring :: static contents

환경 설정

  • 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>

실행 결과

  • localhost:8080/hello-static.html 결과

index.html 와 이어준 적도 없고 컨트롤러에 정의도 안 했는데,
어떻게 가능한걸까?

동작 방식

  • 먼저 hello-static 이라는 이름을 가진 컨트롤러를 찾는다.
  • 존재하지 않을 시 static 파일 내부에서 찾는다.

좋은 웹페이지 즐겨찾기