두두의 IT/Trouble Shooting
IntelliJ + Spring Boot "Process finished with exit code 0"
두두연
2022. 7. 1. 09:46
728x90
https://jyj98020.tistory.com/130
새로 프로젝트 만들어야 해서 내꺼 보고 따라했는데,,
새로운 오류가 나오네?
.
.
.
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'
}
간-단