[Spring] 정적 컨텐츠

DEV.Kang·2022년 5월 11일
1

spring

목록 보기
4/6
post-custom-banner

정적 컨텐츠

resources/static/hello-static.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>static content</title>
</head>
<body>
정적 컨텐츠입니다.
</body>
</html>

동작 방식

  1. 웹 브라우저에 localhost:8080/hello-static.html를 입력합니다.
  2. 스프링 부트 안에 있는 내장 톰켓 서버로 이동하게 됩니다.
  3. 하지만 스프링 컨테이너 안에는 hello-static과 관련된 Controller가 존재하지 않기 때문에 스프링 컨테이너에서 viewResolver로 이동하지 않습니다.
  4. resources에 위치한 hello-static.html을 찾아서 웹 브라우저로 보내주게 됩니다.

정적 컨텐츠의 구동방식 중 제일 중요한 것은 스프링 컨테이너에 관련된 Controller가 존재하지 않는 것입니다.

profile
back-end에 대해 집중적으로 공부 내용을 업로드 예정입니다.
post-custom-banner

0개의 댓글