본문으로 바로가기
728x90

 

Chapter 01

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

 

https://www.jetbrains.com/toolbox/app/

 

JetBrains Toolbox App: Manage Your Tools with Ease

Open any of your projects in any of the IDEs with one click.

www.jetbrains.com

 

이를 통해, IntelliJ IDEA Community 버전을 설치한다.

 

그레이들 프로젝트를 생성 후, 아래와 같이 설정하기로 한다.

 

이후, 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
33
34
35
36
37
 
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.qwon.blog'
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')
}
 
 
 
 
 

 

다음으로, 프로젝트를 깃허브에 연동시켜보자.

 

인텔리제이에서 ctrl+shift+A 를 누른 후, share project on github를 검색해 로그인을 진행한다.

 

 

깃허브에 아래와 같은 파일만 생성되도록 체크를 진행한다.

 

 

.ignore 플러그인 설치하기

 

ctrl+shift+a -> plugins 검색 -> MarketPlace 탭 -> ignore 검색

 

 

프로젝트 우클릭 -> New ->.ignore file->gitignore file(Git) 클릭

 

 

인텔리제이에서 자동으로 생성되는 파일들을 이그노어 처리해보기

 

.gradle

.idea

 

 

커밋 : ctrl+k를 눌러 .gitignore 체크 후 commit

 

푸시 : ctrl+shift+k를 눌러 push

 

728x90