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을 입력하면 화면이 출력됨

 

spring.io에 첨부된 정적 콘텐츠 설명

 

웹 브라우저에서 localhost:8080/hello-static.html을 요청함
                                        ↓
스프링 컨테이너에 hello-static 관련 컨트롤러가 존재하지 않음
                                        ↓
resources:static/hello-static.html을 발견
                                        ↓
웹 브라우저에 출력

 

반응형

'Spring > inflearn' 카테고리의 다른 글

API  (0) 2022.08.21
MVC와 템플릿 엔진  (0) 2022.08.20
thymeleaf 템플릿 엔진  (0) 2022.08.18
Welcome Page 만들기  (0) 2022.08.17
라이브러리  (0) 2022.08.16