[Spring boot] 프로젝트 생성

SeonJin·2023년 8월 28일
0

Springboot

목록 보기
1/5
post-thumbnail
post-custom-banner

✨ 깃허브 링크 : MovieReview Project

📚 코드로 배우는 스프링 부트 웹 프로젝트


스프링부트 프로젝트 생성

spring initializr 바로가기

  1. Project 유형, Language, Spring Boot 버전, Project 정보, 라이브러리 선택 후 GENERATE
  2. .zip 파일 압축 해제하여 IntelliJ에서 프로젝트 폴더 Open
  3. File → Project Settings → SDK version 설정 후 Gradle Build
  4. Application Run (ctrl + shift + F10)
  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::               (v3.0.10)

// 생략

Tomcat initialized with port(s): 8080 (http)
Starting service [Tomcat]
Starting Servlet engine: [Apache Tomcat/10.1.12]
Initializing Spring embedded WebApplicationContext
Root WebApplicationContext: initialization completed in 956 ms
LiveReload server is running on port 35729
Tomcat started on port(s): 8080 (http) with context path ''


주의! 스프링 부트 버전과 Java 버전을 맞춰주어야 한다

  •    3.x 버전에서는 Java 17 이상 버전 사용
  •    2.x 버전에서는 Java 11 사용
profile
study notebook
post-custom-banner

0개의 댓글