본문 바로가기
Spring boot/스프링 부트 3 백엔드 개발자 되기(자바편)

[0장] 개발 환경 구축하기 - 스프링 부트 3 프로젝트 만들기

by 리버🐦‍🔥 2023. 7. 25.

1. IntelliJ IDEA 설치

 

2. 프로젝트 만들기

    2-1. Build system - Gradle

    2-2. GroupId - me.본인영문이름

 

3. build.gradle 파일 수정

plugins {
    id 'java'
    id 'org.springframework.boot' version '3.0.2'   // 스프링 부트 플러그인
    id 'io.spring.dependency-management' version '1.1.0'    // 스프링 의존성 자동 관리 플러그인
}

group 'me.kyungsoolee'  // 그룹 이름
version '1.0'   // 버전
sourceCompatibility = '17'  // 자바 버전

repositories {  // 의존성을 받을 저장소
    mavenCentral()
}

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-web'   // 웹 관련 기능 제공
    testImplementation 'org.springframework.boot:spring-boot-starter-test'  // 테스트 기능 제공
}

test {
    useJUnitPlatform()
}

 

4. Reload All Gradle Projects

 

5. main 클래스 생성 후 springboot 실행