SpringCloud--13使用Spring Cloud 构建微服务综合案例1(搭建父工程和eureka和config-server)

1.服务介绍

   注册中心eureka-server,配置中心config-server,授权中心服务uaa-service,Turbine聚合监控服务monitoring-service,链路追踪服务zipkin-service,聚合监控服务admin-service,路由网关服务gateway-service,日志服务log-service.另外包含两个资源服务user-service和blog-service.还有一个common工程。

 eureka-server:所有的服务都向注册中心eureka-server进行服务注册,使用服务注册中心有两个好处,首先方便查看每个服务的状况,其次时服务注册中心维护了一份服务注册的列表,每个服务的实例都能获得这个列表,可以用于Ribbon的负载均衡和Zuul的智能路由。

config-server:配置中心,服务的所有配置由config-server统一管理,config-server可以从远程Git拉取配置,也可以从本地仓库读取,如果将配置文件放在远程仓库,配置Spring Cloud Bus,可以不在人工重启服务的情况下,进行全局服务的配置刷新。

gateway-service:网关服务使用的是zuul组件,Zuul组件可以实现智能路由,负载均衡的功能。

zipkin-service:它是Spring Cloud Sluth的组件,可以擦好看每个请求在微服务系统中的链路关系。

turbine-service:聚合了user-service和bolg-service的Hystrix Dashboard,可以查看这两个服务的熔断状况。

admin-service:一个Spring boot Admin 工程,提供了非常强大的服务监控功能。

uaa-service:集成了Spring Cloud OAuth2,由这个服务统一授权,返回token,其他的应用服务,如user-service和bolg-service作为资源服务,他的API接口资源是受保护的,需要验证token,并且鉴权后才能访问,

user-service和blog-service:作为资源服务,对外暴露API接口资源。

log-service:作为日志服务,user-service和blog-service服务通过RabbitMQ向log-service发送业务操作日志的消息,日志服务统一持久化操作日志,如有大量的日志需要处理可以使用ELK组件进行处理。

2.搭建项目

首先搭建父工程,SpringBoot版本选择最新的2.1.7,Spring Cloud的版本为G版。

父工程pom:

 



    4.0.0

    com.wx
    SpringCloudInAction
    1.0-SNAPSHOT
    pom
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.7.RELEASE
        
    
    
        UTF-8
        UTF-8
        1.8
        Greenwich.SR2
    

    
        eureka-server
    

    
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
        
        
            org.jolokia
            jolokia-core
        
    


    
        
            
                org.springframework.cloud
                spring-cloud-dependencies
                ${spring-cloud.version}
                pom
                import
            
        
    

 eureka pom:

 



    4.0.0
    
        com.wx
        SpringCloudInAction
        1.0-SNAPSHOT
    
    com.wx
    eureka-server
    0.0.1-SNAPSHOT
    eureka-server
    Demo project for Spring Boot

    
        UTF-8
        UTF-8
        1.8
    
    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.cloud
            spring-cloud-starter-netflix-eureka-server
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        app
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


 yml文件:

server:
  port: 8000
eureka:
  client:
    register-with-eureka: false
    fetch-registry: false
    serviceUrl:
      defaultZone: http://localhost:${server.port}/eureka/

 加上注解开启eureka server得功能

 SpringCloud--13使用Spring Cloud 构建微服务综合案例1(搭建父工程和eureka和config-server)_第1张图片

搭建config-server工程

  配置使用的是本地配置的模式

pom文件:



    4.0.0
    
        com.wx
        SpringCloudInAction
        1.0-SNAPSHOT
    
    com.wx
    config-server
    0.0.1-SNAPSHOT
    config-server
    Demo project for Spring Boot

    
        UTF-8
        UTF-8
        1.8
    

    
        
            org.springframework.cloud
            spring-cloud-config-server
        
        
        
            org.springframework.boot
            spring-boot-starter-actuator
        

        
            org.springframework.cloud
            spring-cloud-starter-bus-amqp
        
        
            org.springframework.retry
            spring-retry
        

        
            org.springframework.boot
            spring-boot-starter-aop
        
    

    
        app
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


 yml文件:

# remote git
#spring:
#  cloud:
#    config:
#      server:
#        git:
#          uri: https://git.coding.net/xiaoantimes/xiaoantimes-taichi
#          searchPaths: backend/repo
#          username: [email protected]
#          password:
#      label: master

# ---native
spring:
  cloud:
    config:
      server:
        native:
          search-locations: classpath:/shared
  profiles:
     active: native
  application:
    name: config-server

# port
server:
  port: 8001

#management:
#  security:
#    enabled: false

 加上注解开启config server的功能

SpringCloud--13使用Spring Cloud 构建微服务综合案例1(搭建父工程和eureka和config-server)_第2张图片

配置中心是不向eureka 注册服务的。

 

 

 

你可能感兴趣的:(Spring,Cloud,储备之路)