[Spring Boot #15] 스프링 웹 MVC : 인덱스 페이지와 파비콘
- Spring/Spring Boot
- 2019. 1. 3. 22:41
반응형
| 스프링 웹 MVC 인덱스 페이지
웰컴 페이지 : 웹 어플리케이션의 root(/)로 요청했을 때 보여주는 페이지입니다. index.html 을 만들고 resources 안에 두면 root(/) 요청 시 어플리케이션이 해당 html 파일을 반환합니다.
프로젝트 구조
| pom.xml
+---src
| +---main
| | +---java
| | | \---com
| | | \---tutorial
| | | \---sptringbootmvc
| | | | SptringBootMvcApplication.java
| | | |
| | | |
| | |
| | \---resources
| | | application.properties
| | |
| | \---static
| | index.html
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>Welcome to Spring Boot</h1>
</body>
</html>
http://localhost:8080 요청 시
| 스프링 파비콘(favicon.ico) 설정
https://favicon.io/ 사이트에서 아이콘 파일을 하나 만듭니다.
다음 아래의 경로에 파비콘을 추가합니다. 단 파일명은 favicon.ico으로 해야합니다.
http://localhost:8080 요청 시
참고자료 : https://www.inflearn.com/course/스프링부트
반응형
'Spring > Spring Boot' 카테고리의 다른 글
[Spring Boot #17] 스프링 부트 HtmlUnit 써보기 (0) | 2019.01.05 |
---|---|
[Spring Boot #16] 스프링 웹 MVC : Thymeleaf 템플릿 (0) | 2019.01.04 |
[Spring Boot #14] 스프링 웹 MVC : 정적 리소스 지원 (0) | 2019.01.03 |
[Spring Boot #13] 스프링 웹 MVC : HttpMessageConverter, ViewResolver (0) | 2019.01.03 |
[Spring Boot #12] 스프링부트에서 테스트 작성하기( Spring Boot Test ) (1) | 2019.01.01 |
이 글을 공유하기