스프링부트 JPA활용 1 - 프로젝트 환경설정(1)
목차 📌프로젝트 생성 📌라이브러리 살펴보기 📌View 환경 설정 📌H2 데이터베이스 설치 📌JPA와 DB 설정, 동작확인 📌프로젝트 생성 plugins { id 'org.springframework.boot' version '2.7.0' id 'io.spring.dependency-management' version '1.0.11.RELEASE' id 'java' } group = 'jpabook' version = '0.0.1-SNAPSHOT' sourceCompatibility = '11' configurations { compileOnly { extendsFrom annotationProcessor } } repositories { mavenCentral() } dependencies { imple..