SpringBoot之SpringCloud体验
前言:很早就发现cloud微服务,一直没有尝试弄,今天花了点时间跑了一下demo,cloud远程调用是基于http rest风格调用的方式。感觉没有dubbo那么方便,远程调用像调用本地方法。因为我也是参考网上的博客写的,只是了解的很浅的没有深入。如果以后在工作中接触的话再花时间学习学习。 1.注册中心 SpringCloud的注册中心不需要借助第三方,这点还是很方便,不需要多维护 比如 zookeeper 类似的软件。 1.1 先导入依赖 <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka-server</artifactId> </dependency> 1.2 如果maven更新不下来需要导入 <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Brixton.RELEASE</version> <type>pom</type> <scope>import</scope> <