본문 바로가기

개발중/troubleshooting

spring boot Process finished with exit code 0 해결

728x90
반응형

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

 

Gradle 프로젝트

 

build.gradle

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

 

Maven 프로젝트

pom.xml

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

 


 

728x90
반응형