继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

SpringCloud项目实战:从入门到简单应用

慕莱坞森
关注TA
已关注
手记 280
粉丝 36
获赞 146
概述

本文深入讲解了如何从零开始搭建SpringCloud项目,并介绍了服务治理、服务间通信、服务网关、配置中心以及服务容错等多个关键模块的实际应用。通过详细步骤和示例代码,帮助读者快速掌握SpringCloud项目实战技巧。SpringCloud项目实战涵盖了从环境搭建到服务注册、服务间通信及容错处理等各个方面,旨在构建一个功能完善的微服务架构。

SpringCloud项目实战:从入门到简单应用
SpringCloud简介与环境搭建

SpringCloud是什么

Spring Cloud是一系列框架的有序集合,它基于Spring Boot约定优于配置的方式为分布式系统提供了一整套配置和治理的解决方案。Spring Cloud聚焦于快速构建分布式系统和微服务架构,提供了诸如服务发现、配置管理、断路器、智能路由、微代理、控制总线、全局锁、决策竞选、分布式会话等等一整套工具链。借助于Spring Cloud,开发者只需要编写少量的代码就可以迅速搭建一套功能完善的分布式系统。

开发环境准备

在开始开发Spring Cloud项目之前,需要做好相应的开发环境准备。以下是环境搭建的必须步骤:

  1. IDE安装:推荐使用IntelliJ IDEA或Eclipse作为开发工具。
  2. 安装Java开发工具包(JDK):建议使用JDK版本1.8及以上。
  3. 安装Maven:用于构建Java项目,配置Maven的环境变量。
  4. 安装Git:用于版本控制。
  5. 安装Docker:可选,用于容器化部署。

快速搭建第一个SpringCloud项目

为了快速上手,我们通过Spring Initializr工具搭建一个简单的Spring Cloud项目。

  1. 访问https://start.spring.io/,选择Spring Boot版本和依赖。
  2. 选择Maven Project,语言为Java。
  3. 选择Java版本为1.8及以上。
  4. 选择项目信息,如groupartifact
  5. 添加以下依赖:
    • Spring Web
    • Spring Cloud Starter Config
    • Spring Cloud Starter Eureka Server
  6. 点击Generate下载项目压缩包,解压后在IDE中打开。
  7. 项目根目录下创建application.yml,添加基础配置。
spring:
  application:
    name: eureka-server
server:
    port: 8761
eureka:
    instance:
        hostname: localhost
    client:
        register-with-eureka: false
        fetch-registry: false
        server: true
  1. 在IDE中运行主类,启动Eureka注册中心服务。
  2. 访问http://localhost:8761,若看到Eureka服务界面说明注册中心启动成功。
服务治理:Eureka注册中心

Eureka的作用与使用场景

Eureka是Netflix开源的一个服务治理组件,它提供了服务注册与发现的功能。在微服务架构中,服务之间需要了解彼此的位置以便进行调用。Eureka注册中心作为服务治理的核心,负责维护注册服务的实例列表,其他服务则通过注册中心来查找并调用目标服务。

使用场景包括:

  • 动态的服务发现与注册。
  • 服务间的负载均衡。
  • 服务容错与容灾处理。

配置并启动Eureka注册中心

配置并启动Eureka注册中心服务,只需在Spring Boot项目中添加Spring Cloud Starter Eureka Server依赖,并配置application.yml文件,如上文所展示的。

配置示例

spring:
 application:
    name: eureka-server
server:
    port: 8761
eureka:
    instance:
        hostname: localhost
    client:
        register-with-eureka: false
        fetch-registry: false
        server: true

启动类示例

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class EurekaServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(EurekaServerApplication.class, args);
    }
}

将服务注册到Eureka

假设我们有一个服务需要注册到Eureka注册中心,需要在该服务的Spring Boot应用配置中添加spring.cloud相关依赖,并配置application.yml

服务端配置示例

spring:
 application:
    name: hello-service
server:
    port: 8080
eureka:
    client:
        register-with-eureka: true
        fetch-registry: true
        service-url:
            defaultZone: http://localhost:8761/eureka/

服务端启动类示例

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
public class HelloServiceApplication {
    public static void main(String[] args) {
        SpringApplication.run(HelloServiceApplication.class, args);
    }

    @RestController
    public class HelloController {
        @GetMapping("/hello")
        public String hello() {
            return "Hello, Spring Cloud!";
        }
    }
}

上面示例展示了一个简单的服务注册到Eureka注册中心的过程,当服务启动后,它会自动注册到Eureka服务器,并且其他服务可以通过Eureka获取到该服务的地址。

服务间通信:Ribbon与Feign

Ribbon简介与使用场景

Ribbon是Netflix提供的一个客户端负载均衡器,它基于HTTP和TCP,可以灵活地配置连接池。Ribbon在使用时,通常与Eureka配合使用,通过Eureka来获取服务列表信息,然后使用Ribbon进行负载均衡。

使用场景包括:

  • 负载均衡的客户端服务调用。
  • 服务之间的动态路由。

示例

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
import org.springframework.context.annotation.Bean;
import org.springframework.web.client.RestTemplate;

@Bean
@LoadBalanced
public RestTemplate restTemplate() {
    return new RestTemplate();
}

Feign简介与使用场景

Feign是基于Netflix的开源库Ribbon和RestTemplate进行扩展的声明式HTTP客户端。Feign使得编写Web服务调用变得更为简单,即通过定义接口并使用注解,就可以快速生成一个HTTP请求。Feign也与Eureka结合,用于实现服务间的负载均衡。

使用场景包括:

  • 简化服务间HTTP请求的实现。
  • 实现服务间的负载均衡。

示例

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;

@FeignClient(value = "hello-service")
public interface HelloServiceClient {
    @GetMapping("/hello")
    String hello();
}

搭建服务间通信示例

为了实现服务间通信,需要配置和启动服务提供者和服务消费者。

服务提供者配置

spring:
 application:
    name: hello-service
server:
    port: 8080
eureka:
    client:
        register-with-eureka: true
        fetch-registry: true
        service-url:
            defaultZone: http://localhost:8761/eureka/

服务消费者配置

spring:
 application:
    name: consumer-service
server:
    port: 8081
eureka:
    client:
        register-with-eureka: true
        fetch-registry: true
        service-url:
            defaultZone: http://localhost:8761/eureka/

服务提供者启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

@SpringBootApplication
@EnableEurekaClient
public class HelloServiceApplication {
    public static void main(String[] args) {
        SpringApplication.run(HelloServiceApplication.class, args);
    }

    @RestController
    public class HelloController {
        @GetMapping("/hello")
        public String hello() {
            return "Hello, Spring Cloud!";
        }
    }
}

服务消费者启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;

@SpringBootApplication
@EnableFeignClients
public class ConsumerServiceApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConsumerServiceApplication.class, args);
    }

    @RestController
    public class HelloController {
        @Autowired
        private HelloServiceClient helloServiceClient;

        @GetMapping("/hello")
        public String hello() {
            return helloServiceClient.hello();
        }
    }
}

通过以上配置,服务消费者可以调用服务提供者的服务,从而实现服务间的通信。

服务网关:Zuul与Spring Cloud Gateway

Zuul的作用与使用场景

Zuul是Netflix开源的一个基于Java的压力代理,主要提供路由和过滤功能。它作为微服务的统一入口,主要负责服务的路由转发和过滤,提供负载均衡、服务容错等功能。

使用场景包括:

  • 统一的API入口。
  • 链路的请求信息处理。

示例

spring:
 cloud:
    gateway:
        routes:
        - id: route_to_hello
          uri: http://localhost:8080
          predicates:
          - Path=/hello/**
          filters:
          - name: RewritePath
            args:
                regex: "/hello/(?<segment>.*)"
                replacement: "/${segment}"

Spring Cloud Gateway的作用与使用场景

Spring Cloud Gateway是Spring Cloud的一个新组件,提供了一个基于Spring 5的响应式API网关实现。它基于Spring WebFlux,可以更好地与Spring Cloud的其他组件集成,提供了更稳定的性能表现。

使用场景包括:

  • 动态路由。
  • 过滤器操作。

示例

spring:
 cloud:
    gateway:
        routes:
        - id: route_to_hello
          uri: http://localhost:8080
          predicates:
          - Path=/hello/**
          filters:
          - name: RewritePath
            args:
                regex: "/hello/(?<segment>.*)"
                replacement: "/${segment}"

搭建服务网关实例

在搭建服务网关实例时,需要配置和启动网关服务,该服务会路由来自客户端的请求到后端的服务。

配置示例

spring:
 cloud:
    gateway:
        routes:
        - id: route_to_hello
          uri: http://localhost:8080
          predicates:
          - Path=/hello/**
          filters:
          - name: RewritePath
            args:
                regex: "/hello/(?<segment>.*)"
                replacement: "/${segment}"
server:
    port: 8085

启动类示例

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class GatewayApplication {
    public static void main(String[] args) {
        SpringApplication.run(GatewayApplication.class, args);
    }
}
配置中心:Spring Cloud Config

Spring Cloud Config的作用与使用场景

Spring Cloud Config提供了一种集中化的外部配置管理方案,它支持多个环境、多个应用服务器的配置管理。通过Git或SVN等版本控制系统存储配置文件,实现配置的版本控制。

使用场景包括:

  • 集中的配置管理。
  • 动态更新配置。

示例

spring:
 cloud:
    config:
        application-name: config-client
        profile: dev
server:
    port: 8086

配置中心的搭建与使用

为了搭建配置中心,需要一个配置服务端和一个或多个配置客户端。配置服务端负责从Git或SVN拉取配置文件,并提供给客户端使用。

配置服务端

spring:
 cloud:
    config:
        server:
            git:
                uri: https://github.com/your-user/config-repo
                username: your-username
                password: your-password
server:
    port: 8888

配置客户端

spring:
 cloud:
    config:
        application-name: config-client
        profile: dev
server:
    port: 8086

配置服务端启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.config.server.EnableConfigServer;

@SpringBootApplication
@EnableConfigServer
@EnableDiscoveryClient
public class ConfigServerApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConfigServerApplication.class, args);
    }
}

配置客户端启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.context.config.annotation.RefreshScope;

@SpringBootApplication
@EnableDiscoveryClient
@RefreshScope
public class ConfigClientApplication {
    public static void main(String[] args) {
        SpringApplication.run(ConfigClientApplication.class, args);
    }
}

多环境配置管理

通过Spring Cloud Config,可以为不同的环境提供不同的配置文件。例如,可以为devtestprod等环境提供不同的配置文件。

配置示例

在Git仓库中创建配置文件,例如:

  • config-client-dev.yml
  • config-client-test.yml
  • config-client-prod.yml

客户端的应用配置文件可以指定不同的环境,例如:

spring:
 cloud:
    config:
        application-name: config-client
        profile: dev
server:
    port: 8086
服务容错与熔断:Hystrix

Hystrix的作用与使用场景

Hystrix是Netflix开源的一个库,用于处理分布式系统中的延迟和容错。它可以帮助服务之间调用时,提高系统的抗负载能力和容错能力,防止某个服务挂掉导致整体系统崩溃。

使用场景包括:

  • 服务调用中的延迟控制。
  • 容错处理。

示例

import org.springframework.cloud.netflix.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@EnableCircuitBreaker
@EnableHystrix
@EnableFeignClients
@EnableHystrixDashboard
@RestController
public class HelloController {
    @Autowired
    private HelloServiceClient helloServiceClient;

    @GetMapping("/hello")
    public String hello() {
        return helloServiceClient.hello();
    }

    @GetMapping("/fallback")
    public String fallback() {
        return "Fallback response from Hystrix";
    }
}

配置与使用Hystrix进行服务容错

为了配置和使用Hystrix,需要在项目中添加相应的依赖,并在服务调用中使用Hystrix。

配置示例

spring:
 cloud:
    circuitbreaker:
        hystrix:
            enabled: true

服务端配置

spring:
 application:
    name: hello-service
server:
    port: 8080
eureka:
    client:
        register-with-eureka: true
        fetch-registry: true
        service-url:
            defaultZone: http://localhost:8761/eureka/

服务端启动类

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;

@SpringBootApplication
@EnableEurekaClient
@EnableHystrix
public class HelloServiceApplication {
    public static void main(String[] args) {
        SpringApplication.run(HelloServiceApplication.class, args);
    }
}

服务端控制器

import org.springframework.cloud.netflix.hystrix.HystrixCommand;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;

@FeignClient(value = "hello-service", fallback = HelloServiceFallback.class)
public interface HelloServiceClient {
    @GetMapping("/hello")
    String hello();
}

服务端熔断类

import org.springframework.stereotype.Component;

@Component
class HelloServiceFallback implements HelloServiceClient {
    @Override
    public String hello() {
        return "Fallback response from Hystrix";
    }
}

熔断器的工作原理与应用示例

Hystrix使用了断路器模式,当发现服务调用失败次数超过阈值时,会开启断路器,暂时停止服务调用,避免故障扩散。当调用成功次数达到阈值时,再关闭断路器,恢复调用。

示例

import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.cloud.netflix.hystrix.EnableHystrix;
import org.springframework.cloud.netflix.hystrix.dashboard.EnableHystrixDashboard;
import org.springframework.web.bind.annotation.GetMapping;

@EnableFeignClients
@EnableHystrix
@EnableHystrixDashboard
@FeignClient(value = "hello-service", fallback = HelloServiceFallback.class)
public interface HelloServiceClient {
    @GetMapping("/hello")
    String hello();
}

熔断类示例


import org.springframework.stereotype.Component;

@Component
class HelloServiceFallback implements HelloServiceClient {
    @Override
    public String hello() {
        return "Fallback response from Hystrix";
    }
}
``

以上是服务容错与熔断的基本使用方式。通过配置和使用Hystrix,可以有效地提高服务调用的稳定性和可靠性。
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP