[기초]
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>
를 추가해준다.
'SpringBoot' 카테고리의 다른 글
@RequestParam validation @Min 활용하기 (0) | 2021.04.15 |
---|---|
[Spring Boot] @NotNull, @NotEmpty, @NotBlank (0) | 2021.03.10 |
[Spring boot] 서버 띄울때 UTC 시간으로 띄우기 (0) | 2021.02.01 |
[Springboot] URL로 이미지 다운로드 (0) | 2020.12.23 |
[Java] @Deprecated (0) | 2020.10.27 |