본문 바로가기

SPRING/Spring Boot

Welcome 페이지 만들기

 

1. new file 생성

src > resources > static 우클릭

 

new > File

 

 

 

2. index.html -> OK

 

 

 

index.html

 

간단한 코드 입력

 

<!DOCTYPE HTML>
<html>
	
<head>
   <title>Hello, HiFive</title>
   <meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
	
<body>

HiFive Korea!
<a href="/hifive"> Hello </a>

</body>

</html>