SPRING/Spring Boot
Welcome 페이지 만들기
파이리파
2021. 9. 14. 17:09
1. new file 생성
src > resources > static 우클릭
new > File
2. index.html -> OK
간단한 코드 입력
<!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>