스프링 부트 프로젝트 실행하자마자
Process finished with exit code 0 가 뜨는 경우가 있다.
이는 실행은 되었는데 톰캣에 문제가 있는경우다.
주로 프로젝트 생성후 프로젝트를 바로실행하면 이런경우가 많다.

이땐 아래의 의존성을 추가해주자.
- Gradle 프로젝트
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
}

- Maven 프로젝트
pom.xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>