[Spring Boot #15] 스프링 웹 MVC : 인덱스 페이지와 파비콘

2021. 3. 15. 03:38 Spring Framework/Spring boot #2

| 스프링 웹 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>

https://localhost:8080 요청 시

 

 

| 스프링 파비콘(favicon.ico) 설정 

 

https://favicon.io/ 사이트에서 아이콘 파일을 하나 만듭니다. 

 

다음 아래의 경로에 파비콘을 추가합니다. 단 파일명은 favicon.ico으로 해야합니다.

 

http://localhost:8080 요청 시 

 

 

 

참고자료 : https://www.inflearn.com/course/스프링부트



출처: https://engkimbs.tistory.com/773?category=767865 [새로비]