[Spring boot] 정적 컨텐츠

김나우·2021년 12월 23일
0

정적컨텐츠

스프링 부트는 정적 Static Content를 기본적으로 제공한다

참고 : https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81-%EC%9E%85%EB%AC%B8-%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8

웹 브라우저에서 localhost:8080에 hello-static.html을 입력
내장 톰캣서버가 요청을 받음
hello-static.html이라는 요청이 왔다고 스프링에게 넘김
스프링은 Controller에서 hello-static이라는 Controller가 있는지 확인(Controller가 우선순위를 가짐)
hello-static 관련 컨트롤러가 없으므로 resources: static/hello-static.html을 찾음

위치

profile
안녕하세요

0개의 댓글