如果在啟動Spring Boot專案時發現啟動後立刻自動被結束的原因如下。
通常應該是專案沒有匯入如下的spring-boot-starter-web
函式庫。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
spring-boot-starter-web
函式庫中包括了內嵌的tomcat,若少了這個函式庫,則Spring Boot專案就缺少所需的web container,導致專案無法運行。
參考:
沒有留言:
張貼留言