在SpringBoot中怎么使用SpringCloud(3)
wptr33 2024-12-07 17:45 41 浏览
在 Spring Boot 中使用 Spring Cloud,主要是通过集成 Spring Cloud 提供的一些功能来构建微服务应用。Spring Cloud 提供了一些有用的组件来支持微服务架构,如服务注册与发现、负载均衡、API 网关、配置管理、断路器等。
下面是如何在 Spring Boot 项目中使用 Spring Cloud 的基本步骤。
1.设置 Spring Boot 项目
首先,确保你已经创建了一个 Spring Boot 项目。你可以使用 Spring Initializr(https://start.spring.io/)来快速生成一个 Spring Boot 项目,选择 Spring Web 和 Spring Boot DevTools 等常见的依赖。
2.添加 Spring Cloud 依赖
在 pom.xml 或 build.gradle 文件中添加 Spring Cloud 相关的依赖。
使用 Maven:
在 pom.xml 文件中,添加 Spring Cloud 相关的依赖,并指定 Spring Cloud 的版本。在 Spring Boot 2.x 和 Spring Cloud 2020.x 版本中,Spring Cloud 提供了一个 BOM(Bill of Materials)来管理依赖的版本。
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>2020.0.4</version> <!-- 选择适合的版本 -->
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- 选择你需要的Spring Cloud组件,例如服务注册与发现 -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
<!-- Spring Boot Web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Spring Boot Actuator(用于监控) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
</dependencies>
查看全部
使用 Gradle:
dependencyManagement {
imports {
mavenBom "org.springframework.cloud:spring-cloud-dependencies:2020.0.4" // 选择适合的版本
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'
implementation 'org.springframework.cloud:spring-cloud-starter-config'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
}
3.启用 Spring Cloud 组件
在 application.properties 或 application.yml 配置文件中启用 Spring Cloud 相关组件的功能。
服务注册与发现:Eureka 客户端
例如,如果你想使用 Eureka 作为服务注册与发现框架,你需要添加 @EnableEurekaClient 注解,并配置 Eureka 的相关属性。
在application.yml中配置 Eureka:
spring:
application:
name: my-service
cloud:
discovery:
enabled: true
eureka:
client:
service-url:
defaultZone: http://localhost:8761/eureka # Eureka 服务器地址
在 Spring Boot 主类上启用 Eureka 客户端:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
@SpringBootApplication
@EnableDiscoveryClient // 启用服务发现功能
public class MyServiceApplication {
public static void main(String[] args) {
SpringApplication.run(MyServiceApplication.class, args);
}
}
服务注册与发现:Eureka 服务器
如果你也想启动一个 Eureka 服务器,可以创建另一个 Spring Boot 项目,并配置为 Eureka 服务器。
在application.yml中配置 Eureka 服务器:
server:
port: 8761
spring:
application:
name: eureka-server
cloud:
eureka:
server:
enable-self-preservation: false # 禁用自我保护机制(方便开发测试)
client:
register-with-eureka: false # 该应用作为 Eureka 服务器,不注册自己
instance:
hostname: localhost
启动 Eureka 服务器:
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@SpringBootApplication
@EnableEurekaServer // 启用 Eureka 服务器功能
public class EurekaServerApplication {
public static void main(String[] args) {
SpringApplication.run(EurekaServerApplication.class, args);
}
}
4.API 网关:Spring Cloud Gateway
如果你想为微服务应用设置一个 API 网关(统一的入口点),你可以使用 Spring Cloud Gateway。它可以帮助你处理请求路由、认证、限流等。
添加依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
配置 Gateway 路由规则:
在 application.yml 中配置网关路由:
spring:
cloud:
gateway:
routes:
- id: my-service-route
uri: lb://MY-SERVICE # 微服务的名称(Eureka 服务名)
predicates:
- Path=/my-service/** # 以 `/my-service` 开头的请求都会转发到该服务
5.分布式配置管理:Spring Cloud Config
Spring Cloud Config 提供了集中式配置管理服务,允许将配置文件存储在 Git 仓库或文件系统中,微服务应用可以从 Config Server 拉取配置。
配置 Spring Cloud Config 服务器:
- 添加 Spring Cloud Config 服务器依赖:
- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-config-server</artifactId> </dependency>
- 启动 Config Server:
- import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.config.server.EnableConfigServer; @SpringBootApplication @EnableConfigServer // 启用 Config Server public class ConfigServerApplication { public static void main(String[] args) { SpringApplication.run(ConfigServerApplication.class, args); } }
- 在 application.yml 中配置 Config Server 的 Git 仓库路径:
- spring: cloud: config: server: git: uri: https://github.com/my-repo/config-repo # 配置文件的 Git 仓库地址 search-paths: '{application}' # 按服务名查找配置
配置 Spring Cloud Config 客户端:
- 添加 spring-cloud-starter-config 依赖:
- <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency>
- 配置客户端获取配置:
- spring: application: name: my-service # 从 Config Server 获取与该名称相关的配置 cloud: config: uri: http://localhost:8888 # Config Server 地址
6.断路器:Hystrix
Spring Cloud 集成了 Netflix Hystrix 作为断路器,用于处理服务间的调用故障。
添加依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
启用 Hystrix 注解:
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import org.springframework.stereotype.Service;
@Service
public class MyService {
@HystrixCommand(fallbackMethod = "fallbackMethod")
public String callExternalService() {
// 外部服务调用
return "Success";
}
public String fallbackMethod() {
return "Fallback response";
}
}
7.启动微服务
- 启动 Eureka 服务器。
- 启动服务提供者(如 MyServiceApplication)。
- 启动 API 网关(如 GatewayApplication),通过网关访问微服务。
通过 Spring Cloud 你可以非常方便地在 Spring Boot 中构建一个完整的微服务架构。通过配置服务发现、负载均衡、API 网关、分布式配置等功能,能够解决许
相关推荐
- 什么是Java中的继承?如何实现继承?
-
什么是继承?...
- Java 继承与多态:从基础到实战的深度解析
-
在面向对象编程(OOP)的三大支柱中,继承与多态是构建灵活、可复用代码的核心。无论是日常开发还是框架设计,这两个概念都扮演着至关重要的角色。本文将从基础概念出发,结合实例与图解,带你彻底搞懂Java...
- Java基础教程:Java继承概述_java的继承
-
继承概述假如我们要定义如下类:学生类,老师类和工人类,分析如下。学生类属性:姓名,年龄行为:吃饭,睡觉老师类属性:姓名,年龄,薪水行为:吃饭,睡觉,教书班主任属性:姓名,年龄,薪水行为:吃饭,睡觉,管...
- java4个技巧:从继承和覆盖,到最终的类和方法
-
日复一日,我们编写的大多数Java只使用了该语言全套功能的一小部分。我们实例化的每个流以及我们在实例变量前面加上的每个@Autowired注解都足以完成我们的大部分目标。然而,有些时候,我们必须求助于...
- java:举例说明继承的概念_java继承的理解
-
在现实生活中,继承一般指的是子女继承父辈的财产。在程序中,继承描述的是事物之间的所属关系,通过继承可以使多种事物之间形成一种关系体系。例如猫和狗都属于动物,程序中便可以描述为猫和狗继承自动物,同理,...
- 从零开始构建一款开源的 Vibe Coding 产品 Week1Day4:业界调研之 Agent 横向对比
-
前情回顾前面两天我们重点调研了了一下Cursor的原理和Cursor中一个关键的工具edit_file的实现,但是其他CodingAgent也需要稍微摸一下底,看看有没有优秀之处,下...
- 学会这几个插件,让你的Notepad++使用起来更丝滑
-
搞程序开发的小伙伴相信对Notepad++都不会陌生,是一个占用空间少、打开启动快的文件编辑器,很多程序员喜欢使用Notepad++进行纯文本编辑或者脚本开发,但是Notepad++的功能绝不止于此,...
- 将 node_modules 目录放入 Git 仓库的优点
-
推荐一篇文章Whyyoushouldcheck-inyournodedependencies[1]...
- 再度加码AI编程,腾讯发布AI CLI并宣布CodeBuddy IDE开启公测
-
“再熬一年,90%的程序员可能再也用不着写for循环。”凌晨两点半,王工还在公司敲键盘。他手里那份需求文档写了足足六页,产品经理反复改了三次。放在过去,光数据库建表、接口对接、单元测试就得写两三天。现...
- git 如何查看stash的内容_git查看ssh key
-
1.查看Stash列表首先,使用gitstashlist查看所有已保存的stash:...
- 6万星+ Git命令懒人必备!lazygit 终端UI神器,效率翻倍超顺手!
-
项目概览lazygit是一个基于终端的Git命令可视化工具,通过简易的TUI(文本用户界面)提升Git操作效率。开发者无需记忆复杂命令,即可完成分支管理、提交、合并等操作。...
- 《Gemini CLI 实战系列》(一)Gemini CLI 入门:AI 上命令行的第一步
-
谷歌的Gemini模型最近热度很高,而它的...
- deepin IDE新版发布:支持玲珑构建、增强AI智能化
-
IT之家8月7日消息,深度操作系统官方公众号昨日(8月6日)发布博文,更新推出新版deepin集成开发环境(IDE),重点支持玲珑构建。支持玲珑构建deepinIDE在本次重磅更...
- 狂揽82.7k的star,这款开源可视化神器,轻松创建流程图和图表
-
再不用Mermaid,你的技术文档可能已经在悄悄“腐烂”——图表版本对不上、同事改完没同步、评审会上被一句“这图哪来的”问得哑口无言。这不是危言耸听。GitHub2025年开发者报告显示,63%的新仓...
- 《Gemini CLI 实战系列》(五)打造专属命令行工具箱
-
在前几篇文章中,我们介绍了GeminiCLI的基础用法、效率提升、文件处理和与外部工具结合。今天我们进入第五篇...
- 一周热门
-
-
C# 13 和 .NET 9 全知道 :13 使用 ASP.NET Core 构建网站 (1)
-
程序员的开源月刊《HelloGitHub》第 71 期
-
详细介绍一下Redis的Watch机制,可以利用Watch机制来做什么?
-
如何将AI助手接入微信(打开ai手机助手)
-
SparkSQL——DataFrame的创建与使用
-
假如有100W个用户抢一张票,除了负载均衡办法,怎么支持高并发?
-
Java面试必考问题:什么是乐观锁与悲观锁
-
redission YYDS spring boot redission 使用
-
如何利用Redis进行事务处理呢? 如何利用redis进行事务处理呢英文
-
一文带你了解Redis与Memcached? redis与memcached的区别
-
- 最近发表
-
- 什么是Java中的继承?如何实现继承?
- Java 继承与多态:从基础到实战的深度解析
- Java基础教程:Java继承概述_java的继承
- java4个技巧:从继承和覆盖,到最终的类和方法
- java:举例说明继承的概念_java继承的理解
- 从零开始构建一款开源的 Vibe Coding 产品 Week1Day4:业界调研之 Agent 横向对比
- 学会这几个插件,让你的Notepad++使用起来更丝滑
- 将 node_modules 目录放入 Git 仓库的优点
- 再度加码AI编程,腾讯发布AI CLI并宣布CodeBuddy IDE开启公测
- git 如何查看stash的内容_git查看ssh key
- 标签列表
-
- git pull (33)
- git fetch (35)
- mysql insert (35)
- mysql distinct (37)
- concat_ws (36)
- java continue (36)
- jenkins官网 (37)
- mysql 子查询 (37)
- python元组 (33)
- mybatis 分页 (35)
- vba split (37)
- redis watch (34)
- python list sort (37)
- nvarchar2 (34)
- mysql not null (36)
- hmset (35)
- python telnet (35)
- python readlines() 方法 (36)
- munmap (35)
- docker network create (35)
- redis 集合 (37)
- python sftp (37)
- setpriority (34)
- c语言 switch (34)
- git commit (34)