SpringCloud
介绍 Greenwich 版中文文档、github Spring Cloud是基于Spring Boot的用于快速构建分布式系统工具集 Spring Cloud特点:约定优于配置、开箱即用,快速启动、轻量级组件、组件丰富、选型中立 本文相关软件:JDK: 1.8,SpringCloud: Dalston.SR1(如无特殊说明) 历史版本,历史文档可以找网上的PDF资源(官网貌似没有) 本文相关源码 微服务构建 服务提供者、服务消费者 服务消费者中通过restTemp调用服务提供者提供的服务 如:User user = this.restTemplate.getForObject("http://localhost:7900/simple/" + id, User.class); maven依赖 123456789101112131415161718<!-- maven的parent是单继承,如果需要依赖多个父项目可以在dependencyManagement中添加依赖的scope为import --><parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent&l ...