[SpringBoot][WebMVC] 웰컴페이지와 파비콘
2022. 11. 10. 12:29ㆍJAVA/Spring
1. 웰컴 페이지란 무엇인가?
- 애플리케이션의 루트 주소(/)를 요청했을때 보여주는 페이지
- 애플리케이션에 index.html 파일이 있으면 제공
- 애플리케이션에 index.템플릿이 있으면 제공
- index.html, index.템플릿 둘다 없으면 에러 페이지를 보여줌
2. 실습, index.html (웰컴 페이지) 생성
1. resources/static/index.html 페이지 생성하고 작성
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome</title>
</head>
<body>
<h1>Welcome Page</h1>
</body>
</html>
2. 애플리케이션을 실행하여 “http://localhost:8080/” 요청하여 결과 확인
3. 파비콘(favicon)
- 파비콘은 웹 사이트 또는 웹 페이지를 대표하기 위해 웹 브라우저에 사용되는 16x16 픽셀 작은 이미지입니다.
4. 실습, 파비콘 생성 및 변경
1. https://favicon.io/ 방문하여 파비콘 생성
2. 다운로드하여 favicon.ioc 파일을 resources 디렉토리에 저장
3. 브라우저를 종료했다가 애플리케이션을 실행하여 파비콘을 확인합니다.
References
source code : https://github.com/yonghwankim-dev/springboot_study/tree/main/springboot_webmvc/src
[인프런] 스프링부트 개념과 활용
'JAVA > Spring' 카테고리의 다른 글
[SpringBoot] Spring Security #1 MVC, WebFlux Security (0) | 2022.11.20 |
---|---|
[SrpingBoot] RestAPI에 대한 에러 핸들링 (0) | 2022.11.18 |
[SpringBoot][WebMVC] 웹 JAR (0) | 2022.11.10 |
[SpringBoot][WebMVC] 정적 리소스 지원 (0) | 2022.11.09 |
[SpringBoot][WebMVC] HttpMessageConverters (0) | 2022.11.08 |