728x90
build.gradle
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.h2database:h2'
annotationProcessor 'org.projectlombok:lombok'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
}
compile 'org.springframework.boot:spring-boot-starter-web:2.3.1.RELEASE'
compile 'org.springframework.boot:spring-boot-starter-data-jpa:2.3.1.RELEASE'
}
728x90
'Spring > Spring Boot(스프링 부트)' 카테고리의 다른 글
spring boot cache 넣기 (0) | 2019.01.09 |
---|---|
Spring Boot Field Injection 피하기 (0) | 2018.12.20 |
Spring Boot 앱 빌드하고 실행하기 with jpa, h2 (0) | 2018.12.11 |
스프링 부트 API 빌드 & 테스트 (0) | 2018.11.30 |
스프링부트 spring.profiles.active에 default값 설정하기 (0) | 2018.11.16 |
Spring Boot Controller를 만들고 Test하기 (0) | 2018.08.17 |