[Spring Boot] IntelliJ 설치 & 프로젝트 실행

Updated:

IntelliJ 설치

https://www.jetbrains.com/ko-kr/idea/download/#section=mac

  • macOS Community 버전 다운

7

  • 런치패드에 IntelliJ IDEA 클릭 > Open

8

프로젝트 만들기

  • 스프링 부트 프로젝트 생성 https://start.spring.io/

  • 프로젝트 이름 firstproject로 변경
  • 설치한 java 버전에 맞게 체크
  • ADD Dependencies

9

  • GENERATE 클릭 > 프로젝트 다운 > 압출 풀기

  • IntelliJ에서 열기

10

프로젝트 실행

  • src/java : java 코드
  • src/resources : 외부파일

  • 실행해보기

11

  • http://localhost:8080/ 로 들어가면 아래와 같은 오류가 난다.

12

  • resources/static 에 html 파일 추가
  • body작성
  • 서버 재실행

13

  • http://localhost:8080/ 로 재접속

14

git 연결하기

  • Repository 생성 > Repository 경로 복사
  • terminal 에서 연결할 폴더 경로로 이동
git init
git remote add origin [copy한 Repository url]
  • git remote -v 명령어로 확인
git remote -v
  • README.md 파일을 생성했기 때문에 pull
git pull origin main
  • .ignore 추가

    불필요한 파일들이 같이 올라가는게 싫어 추가했다. 깃허브 Repository에서 직접 추가해줬다.

    여기서 https://www.toptal.com/developers/gitignore intellij 검색해서 나오는 거 복붙

15

  • 깃 Repository에서 .ignore 을 추가했기 때문에 다시 로컬 Repository로 pull
git pull origin main
  • 로컬 Repository push 하기
git add .
git commit -m "커밋 내용"
git push

Leave a comment