스프링부트 이용하여 웹페이지 띄우기 먼저 IntelliJ 가 설치되어 있다는 전제로 시작하겠습니다. https://start.spring.io/ 위 사이트에서 프로젝트를 만듭니다. depenencies 에서 Thymeleaf 와 Spring Web 을 추가합니다. Thymeleaf : 자바기반 템플릿 엔진. => 데이터 + 템플릿 (템플릿 : 틀, html와 같은) Spring Web : web을 빌드하는데 도움 com.example.memeber 패키지 => controller 패키지를 생성 => HomeController 생성 resources => templates => index.html 생성 package com.example.member.controller; import org.springfr..