运行gateway网关微服务时,没有报错直接就运行退出
报错
Process finished with exit code 0
原因:
微服务没有添加springboot的web环境依赖,或是没有继承父工程
解决方案:
微服务的pom.xml中添加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>