Welcome Page 만들기 스프링 부트가 제공하는 Welcome Page 기능 static/index.html 을 올려두면 Welcome page 기능을 제공한다. 정적 페이지를 띄워준다. Spring boot가 제공하는 기능 찾아보기 spring.io projects → Spring Boot → Learn → Reference Doc 참고 thymeleaf 템플릿 엔진 thymeleaf 공식 사이트: https://www.thymeleaf.org/ localhost:8080/hello로 접근 GetMapping annotation에 의해 hello 함수에 매칭된다. hello 함수 실행 model에 attribute를 추가해준다. hello를 return 해준다. @GetMapping("hello"..