Spring Cloud 5分钟搭建教程

1.前言:

1.1.以下内容是我通过阅读官方文档,并成功实践后的经验总结,希望能帮助你更快地理解和使用spring Cloud. 

1.2.默认读者已经熟练掌握Spring 全家桶,Spring Boot和注解开发.

1.3.陆续更新


2.开发环境:

2.1.开发工具:idea

2.2.开发环境:jdk1.7

2.3.Spring版本:

2.3.1.Spring Boot :1.4.0 release

2.3.2.Spring Cloud : Camden SR2


3.demo:(献给急于速成的各位大兄弟): demo地址: https://github.com/leoChaoGlut/spring-cloud-demo

3.1.服务注册demo:

3.1.1.创建工程模块,如图所示Spring Cloud 5分钟搭建教程_第1张图片

3.1.2.将官方提供的maven依赖,加入pom.

[html]  view plain  copy
 
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"  
  3.          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">  
  5.     <modelVersion>4.0.0modelVersion>  
  6.   
  7.     <groupId>demogroupId>  
  8.     <artifactId>spring-cloud-demoartifactId>  
  9.     <packaging>pompackaging>  
  10.     <version>1.0-SNAPSHOTversion>  
  11.   
  12.     <modules>  
  13.         <module>discoverymodule>  
  14.         <module>service0module>  
  15.         <module>service1module>  
  16.     modules>  
  17.   
  18.       
  19.     <parent>  
  20.         <groupId>org.springframework.bootgroupId>  
  21.         <artifactId>spring-boot-starter-parentartifactId>  
  22.         <version>1.4.0.RELEASEversion>  
  23.     parent>  
  24.   
  25.     <dependencyManagement>  
  26.         <dependencies>  
  27.             <dependency>  
  28.                 <groupId>org.springframework.cloudgroupId>  
  29.                 <artifactId>spring-cloud-dependenciesartifactId>  
  30.                 <version>Camden.SR2version>  
  31.                 <type>pomtype>  
  32.                 <scope>importscope>  
  33.             dependency>  
  34.         dependencies>  
  35.     dependencyManagement>  
  36.   
  37.     <dependencies>  
  38.         <dependency>  
  39.             <groupId>org.springframework.cloudgroupId>  
  40.             <artifactId>spring-cloud-starter-configartifactId>  
  41.         dependency>  
  42.         <dependency>  
  43.             <groupId>org.springframework.cloudgroupId>  
  44.             <artifactId>spring-cloud-starter-eurekaartifactId>  
  45.         dependency>  
  46.         <dependency>  
  47.             <groupId>org.springframework.bootgroupId>  
  48.             <artifactId>spring-boot-devtoolsartifactId>  
  49.             <optional>trueoptional>  
  50.         dependency>  
  51.     dependencies>  
  52.   
  53.   
  54. project>  
3.1.3.如图步骤,完成Discovery Spring Cloud 5分钟搭建教程_第2张图片

3.1.4.如图步骤完成Service0,Service1类似Spring Cloud 5分钟搭建教程_第3张图片

3.1.5.简单到爆炸有没有...........,接下来先启动Discovery,然后启动Service0和Service1

3.1.6.打开浏览器,访问 localhost:8080 ,8080是Discovery里配置的端口号.一切顺利的话,可以看到:

Spring Cloud 5分钟搭建教程_第4张图片

3.1.7.已经成功注册了service0,service1两个服务

3.2.网关demo: 光是注册了服务还不行,这里可以再配一个网关,让服务调用有统一的入口. 

Spring Cloud 5分钟搭建教程_第5张图片

3.2.1.通过上图配置后,首先启动Discovery,其次的服务和网关启动顺序随意.通过访问localhost:8083/service0/service0,即可看到,gateway帮我们转发了请求.

3.3.Ribbon负载均衡(未完待续)

你可能感兴趣的:(Spring,Cloud构建微服务架构)