運行gateway網(wǎng)關微服務時,沒有報錯直接就運行退出
報錯
Process finished with exit code 0
原因:
微服務沒有添加springboot的web環(huán)境依賴,或是沒有繼承父工程
解決方案:
微服務的pom.xml中添加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>