[✍혼자서 스프링 공부하기] 1일차 - View 설정

    스프링 프로젝트를 생성하고 난 직후에는 프로젝트를 실행한 후 localhost에 접속하면 Error 페이지만 뜬다. (이전 게시물 참고) 이번에는 에러 페이지가 아닌 실제 내가 작성한 페이지를 띄워보려고 한다. 스프링 부트에서는 Welcome Page 기능을 제공하는데, src/main/resources/static/index.html에 원하는 html 코드를 작성하면 된다. 공식 문서를 읽어보면, http://localhost:8080으로 접속할 때 static에서 자동으로 index.html을 찾아 띄워준다고 한다. (https://docs.spring.io/spring-boot/docs/2.3.1.RELEASE/reference/html/spring-boot-features.html#boot-fea..