📌 New Spring project 생성하기 📌 Dependencies 설정 📌 추가 라이브러리 1. 먼저 build.gradle로 들어간다. 2. dependencies에 추가라이브러리를 적어넣는다. plugins { id 'org.springframework.boot' version '2.6.4' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'com.example' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' configurations { compileOnly { extendsFrom annotationProcessor } } repositorie..