<groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud<...
网关服务我暂时使用的是Zuul来实现网关的,后续有可能改成SpringCloudGateway这个组件,毕竟是官方自己出的,用起来应该更如丝滑般柔顺吧。 最终的项目结构 关于如何在IDEA中创建多模块请参考我 springboot版本创建多模块项目,这里唯一的区别在于:在单体的SpringBoot多模块项目中,每个模块是有依赖关系的,最终只有一个启动类...