build.gradle 에 코드추가 및 수정 (group 값은 각자의 패키지로 다를수 있다)
buildscript {
ext {
springBootVersion = '2.1.7.RELEASE'
}
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
group 'com.anse.book'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.springframework.boot:spring-boot-starter-web')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
'DEV > Spring' 카테고리의 다른 글
[JPA] 스프링부트 쿼리 로그보기 (0) | 2020.02.18 |
---|---|
[JPA] JPA 세팅, h2(인메모리 관계형 데이터 베이스), 어노테이션정리 (0) | 2020.02.18 |
[SpringBoot] SpringBootApplication 생성 (스프링부트 프로젝트 만들기) (0) | 2020.02.15 |
@RequestMapping, @PostMapping, @GetMapping (0) | 2020.02.05 |
@Controller 와 @RestController 차이 (0) | 2020.02.05 |