🙂강의🙂
[무료] 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술 - 인프런 | 강의
스프링 입문자가 예제를 만들어가면서 스프링 웹 애플리케이션 개발 전반을 빠르게 학습할 수 있습니다., 스프링 학습 첫 길잡이! 개발 공부의 길을 잃지 않도록 도와드립니다. 📣 확인해주세
www.inflearn.com
✅ 스프링 부트 정적 컨텐츠 기능
Spring Boot Features
Graceful shutdown is supported with all four embedded web servers (Jetty, Reactor Netty, Tomcat, and Undertow) and with both reactive and Servlet-based web applications. It occurs as part of closing the application context and is performed in the earliest
docs.spring.io
1. src/resources/static 에 hello-static.html 생성
<!DOCTYPE html>
<html>
<head>
<title>static content</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
</head>
<body>
정적 컨텐츠 입니다.
</body>
</html>
2. 웹 브라우저에서 확인
- 동작 방식
'Spring > 스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술' 카테고리의 다른 글
[ 스프링 웹 개발 기초 ] API (0) | 2023.09.07 |
---|---|
[ 스프링 웹 개발 기초 ] MVC 와 템플릿 엔진 (0) | 2023.09.07 |
[ 프로젝트 환경설정 ] 빌드하고 실행하기 (0) | 2023.09.06 |
[ 프로젝트 환경설정 ] View 환경설정 (0) | 2023.09.05 |
[ 프로젝트 환경설정 ] 라이브러리 살펴보기 (0) | 2023.09.04 |