Spring Boot/[Spring boot] Mac 환경세팅 및 postgreSQL 연결

[Spring boot] Mac 환경세팅 및 postgreSQL 연결

재윤 2025. 1. 5. 05:33
반응형
  • 여기에 들어가면 spring boot를 쉽게 환경 세팅할 수 있다

start.spring.io

 

 

  • 이거 만들고 난 후 인텔리J 내가 만든 Kkrap-backend 폴더 안에 넣어주면 된다
  • 인텔리J로 만들어진 폴더를 열기만 하면 된다.
  • 켰더니 이런 경고 창이 뜬다 

 

해결 방법은 stack overflow에서 찾음

https://stackoverflow.com/questions/40448344/errorjava-invalid-flag-release

 

Error:java: invalid flag: -release

I use Java : Java(TM) SE Runtime Environment (build 9-ea+143) Java HotSpot(TM) 64- Bit Server VM (build 9-ea+143, mixed mode) and IntelliJ IDEA: IntelliJ IDEA 2016.2.5 Build #IU-162.2228.15, bui...

stackoverflow.com

 

아마 파일에서 빨간색 에러가 뜸

setting → build,execution .. → Build Tools → Gradle에서 밑 사진처럼 변경

 

  • 실행을 해보면 에러가 나옴 이게 DB랑 연결이 안 되어서 이럼 나는 DB를 postgreSQL을 사용
Action:

Consider the following:
	If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
	If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).

Process finished with exit code 1

 

  • 밑처럼 설정해주면 된다.

 

 

  • 밑 처럼 DB를 만듦

 

  • 이 명령어로 DB가 잘 만들어졌는지 확인
postgres-# \\l

 

 

이제 잘됨

반응형