본문 바로가기
Spring

[스프링 입문] 정적 컨텐츠

by 박성민 2021. 8. 28.
  • 서버에서 무언가를 하는 거 없이 그냥 파일을 그대로 웹 브라우저에 내려주는 것입니다.
  • resources/static/ 경로의 파일들이 정적 컨텐츠 파일입니다.
    • ex) Welcome Page
<!DOCTYPE HTML>
<html>
<head>
    <title>static content</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
정적 컨텐츠 입니다.
</body>
</html>

(hello-static.html)

2
(resources/static/hello-static.html)

3
(접속 화면)

1
(해당하는 컨트롤러가 없으면 정적 컨텐츠에서 파일을 찾아서 브라우저에 전달합니다.)

참조

댓글