짱아의 개발 기록장

Chapter 01. IntelliJ로 스프링 부트 시작하기 본문

개발 프로젝트 정리/[스프링 부트와 AWS로 혼자 구현하는 웹 서비스] 책 정리

Chapter 01. IntelliJ로 스프링 부트 시작하기

jungahshin 2021. 2. 20. 14:35
반응형

이 책의 예제는 기본적으로 다음과 같은 환경에서 실행됩니다.

 - Java 8(JDK 1.8)

 - Gradle 4.8~Gradle 4.10.2

 

그리고 IntelliJ는 얼티메이트(유료) 버전이 아닌 커뮤니티(무료) 버전으로 진행합니다.

 

1. 인텔리제이를 설치하고 Gradle로 프로젝트를 선택합니다.

 

2. build.gradle 파일에서 기존의 내용을 아래와 같이 수정합니다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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.example'
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')
}
cs

 

3. 코드 작성후 'Gradle projects need to be imported'라는 알람이 오면, Enable Auto-Import를 클릭하여 변경사항을 반영합니다.

 

4. 우측 Gradle에서 Dependencies를 확인해보면 spring-boot-starter-web, spring-boot-starter-test 의존성이 잘 받아진 것을 확인할 수 있습니다.

 

글쓴이는 추후에 깃허브와 연동할 예정이어서 깃허브 연동 부분은 넘어가겠습니다.

반응형
Comments