start.spring.io => 프로젝트 생성 => 압축 해제 => intellij에서 불러옴 (web, thymeleaf implement) java version이 11로 되어 있어서 애러남 -> setting => gradle 설정에서 17로 변경 project setting에서 17로 변경 , 모두 통일 하면 애러 없음 기본으로 8080 포트를 열음 기본 Home page는 resources/static/intex.html 을 불러옴(localhost:8080 => 실행) controller 구성 project/controller/NameController.java 를 생성 @Controller public class HelloController { List list = new ArrayList..