Spring/inflearn
정적 컨텐츠
곽수진
2022. 8. 19. 16:18
반응형
▶ resources/static/hello-static.html 파일을 생성하고 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을 입력하면 화면이 출력됨
웹 브라우저에서 localhost:8080/hello-static.html을 요청함
↓
스프링 컨테이너에 hello-static 관련 컨트롤러가 존재하지 않음
↓
resources:static/hello-static.html을 발견
↓
웹 브라우저에 출력
반응형