반응형
강의
-
프로젝트 환경설정강의/실전! 스프링 부트와 JPA 활용1 2021. 12. 20. 20:24
1.spring initializr로 springboot 프로젝트 생성 1-1) jdk11 , Gradle, 패키징 - Jar 선택 2.spring boot 버전 2.6.1 및 dependency 선택 후 프로젝트 생성 생성후 build.gradle에 Junit4 dependency 추가 //JUnit4 추가 (미 추가시 Junit5로 동작) testImplementation("org.junit.vintage:junit-vintage-engine") { exclude group: "org.hamcrest", module: "hamcrest-core" } +devtool 추가 developmentOnly 'org.springframework.boot:spring-boot-devtools' 3. 롬복 적용하..