인텔리제이로 스프링부트 시작하기

2021. 8. 29. 17:25IT공부/Java&Spring 이용한 웹프로그래밍

1.  Gradle  프로젝트 선택 

2. GroupId & ArtifactId 설정 

Finish 선택 -> Gradle 기반 자바 프로젝트 생성 

3. Gradle 기반 프로젝트를 Spring Boot 프로젝트로 변경

buildscript{
ext{
springBootVersion = '2.1.7.RELEASE'
}
repositories{
mavenCentral()
}
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.gominno.book'
version '1.0-SNAPSHOT'
sourceCompatibility =1.8

repositories {
mavenCentral()
}

dependencies {
implementation('org.springframework.boot:spring-boot-starter-web')
testImplementation('org.springframework.boot:spring-boot-starter-test')
}