본문 바로가기

두두의 IT/Trouble Shooting

IntelliJ + Spring Boot "Process finished with exit code 0"

728x90

https://jyj98020.tistory.com/130

 

IntelliJ를 활용한 스프링 부트 프로젝트 환경설정

1. h2 데이터베이스 1.4.200 버전 다운로드 https://www.h2database.com/html/download-archive.html Archive Downloads www.h2database.com 2. java 11 버전. exe 다운로드 https://www.oracle.com/java/technolo..

jyj98020.tistory.com

 

새로 프로젝트 만들어야 해서 내꺼 보고 따라했는데,,

새로운 오류가 나오네?

.

.

.

 

No active profile set, falling back to 1 default profile: "default"

Process finished with exit code 0

처음에 첫번째 줄 "default" 오류인줄 알고 application.properties에 active 추가하고 그랬는데,,,

 

범인은 Process finished with exit code 0이었다

 

참나,,

 

build.gradle에 아래 코드 추가해주면 된당!

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-web'
}

 

간-단