SpringBoot

spring boot Process finished with exit code 0

simba 2021. 7. 5. 21:29

[기초]

spring boot Process finished with exit code 0 라고 뜨며 어플리케이션이 바로 종료되어버릴때가 있는데 이럴때는

 

Gradle 프로젝트일 경우

 

build.gradle에 추가하고

implementation 'org.springframework.boot:spring-boot-starter-web'

 

Maven 프로젝트일 경우에는

<dependency>     
	<groupId>org.springframework.boot</groupId>     
    <artifactId>spring-boot-starter-web</artifactId> 
</dependency>

를 추가해준다.