博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Cloud超简单十分钟入门实例
阅读量:7117 次
发布时间:2019-06-28

本文共 5142 字,大约阅读时间需要 17 分钟。

简介

本文通过创建一个简单是实例,展示spring cloud的应用场景,使用eureka做服务注册和发现,管理其他服务,是系统的核心,移除宕机服务不会造成故障致使系统无法使用。使用zuul做路由转发和负载均衡,外部访问统一走网关。内部调用使用feign来注解服务,简化调用代码编写。整个spring cloud的微服务的应用雏形就是这样,上手还是非常简单的。

服务

服务就是提供相应功能的代码、模块,在系统里统一注册到服务中心,其他服务根据服务名等来调用这个服务,这也是eureka所做的工作。

网关

部署的服务很多的情况下,每一个服务都有自己的端口,前端或者其他外部调用如果都要指定ip和端口去访问,就会非常繁琐。网关做的工作是统一管理这些服务的路由,根据路径转发到不同的服务去,然后还做负载均衡这些。

github地址

新建项目

gradle父项目

选择gradle,然后勾选java

然后一路next

gradle.properties

如果根目录没有gradle.properties,则新建一个,添加公共版本号

springboot_version=2.1.3.RELEASEspringcloud_version=Greenwich.SR1复制代码

build.gradle

在跟目录的build.gradle中加入内容

buildscript {    repositories {        mavenCentral()    }    dependencies {        classpath "org.springframework.boot:spring-boot-gradle-plugin:${springboot_version}"    }}allprojects {    apply plugin: "java"    apply plugin: 'org.springframework.boot'    apply plugin: 'io.spring.dependency-management'    sourceCompatibility = 1.8    targetCompatibility = 1.8    repositories {        repositories {            mavenCentral()        }    }    dependencyManagement {        imports {            mavenBom "org.springframework.cloud:spring-cloud-dependencies:${springcloud_version}"        }    }}复制代码

子项目

点击项目名称 -> new

eureka-server

eureka负责服务发现和服务注册,是spring cloud的核心,新建一个eureka-server子项目,在子目录的build.gradle中加入依赖

依赖

dependencies {    implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-server'}复制代码

在src/main/java/包中添加Application

Application

@SpringBootApplication@EnableEurekaServerpublic class EurekaServerApplication {    public static void main(String[] args) {        SpringApplication.run(EurekaServerApplication.class, args);    }}复制代码

在src/main/resources添加配置application.yml

spring:  application:    name: eureka-serverserver:  port: 8761eureka:  instance:    hostname: localhost  client:    registerWithEureka: false    fetchRegistry: false    serviceUrl:      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/复制代码

启动

点击idea中运行main,浏览器访问http://localhost:8761即可看到页面

hello-service

hello-service是一个eureka client,它把自己的服务注册到eurake中,其他client可以从服务中心获取到其他client

依赖

dependencies {    implementation 'org.springframework.boot:spring-boot-starter-web'    implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'}复制代码

Application

@SpringBootApplication@EnableDiscoveryClient@RestControllerpublic class HelloServiceApplication {    public static void main(String[] args) {        SpringApplication.run(HelloServiceApplication.class, args);    }    @Value("${server.port}")    private int port;    @RequestMapping("/hi")    public String hello() {        return "hi, my port=" + port;    }}复制代码

配置

eureka:  client:    serviceUrl:      defaultZone: http://localhost:8761/eureka/server:  port: 8763spring:  application:    name: hello-service复制代码

启动

访问htto://localhost:8763/hi即可看到页面

api-gateway

api网关负责路由转发和负载均衡,转发特定路由到特定的服务中,由于其他服务都是通过特定的端口来暴露服务,网关负责把路由转发到特定的端口。

依赖

dependencies {    implementation 'org.springframework.cloud:spring-cloud-starter-netflix-zuul'    implementation 'org.springframework.cloud:spring-cloud-starter-netflix-eureka-client'}复制代码

Application

@EnableDiscoveryClient@EnableZuulProxy@SpringBootApplicationpublic class ApiGatewayApplication {    public static void main(String[] args) {        SpringApplication.run(ApiGatewayApplication.class, args);    }}复制代码

配置

server:  port: 8769eureka:  client:    service-url:      defaultZone: http://localhost:8761/eurekaspring:  application:    name: zuulzuul:  routes:    hello:      path: /hello/**      serviceId: hello-service复制代码

启动

访问http://localhost:8769/hello/hi可看到hello-service返回的页面

call-service

服务内部相互调用,直接使用feign注解service访问,feign提供了负载均衡等。

依赖

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-openfeign'}复制代码

Application

@SpringBootApplication@EnableDiscoveryClient@EnableFeignClients@RestControllerpublic class CallServiceApplication {    public static void main(String[] args) {        SpringApplication.run(CallServiceApplication.class, args);    }    @Autowired    private HelloService helloService;    @RequestMapping("/hi")    public String hello() {        return helloService.sayHiFromClientOne();    }}复制代码

HelloService

import org.springframework.cloud.openfeign.FeignClient;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.bind.annotation.RequestMethod;@FeignClient(value = "hello-service")public interface HelloService {    @RequestMapping(value = "/hi", method = RequestMethod.GET)    String sayHiFromClientOne();}复制代码

配置

eureka:  client:    serviceUrl:      defaultZone: http://localhost:8761/eureka/server:  port: 8764spring:  application:    name: call-service复制代码

修改api-gateway配置加入call路由到routes

routes:    hello:      path: /hello/**      serviceId: hello-service    call:      path: /call/**      serviceId: call-service复制代码

启动

启动call-service,重启api-gateway,访问http://localhost:8769/call/hi,可看到由call调用hello返回的页面

打包

进入子项目,运行

../gradlew clean build -x test复制代码

打好的jar包在./build/libs/中

转载地址:http://hzdel.baihongyu.com/

你可能感兴趣的文章
ubuntu 10.04下安装arm交叉编译器
查看>>
扩展认证协议:EAP-TLS/EAP-TTLS/EAP-PEAP
查看>>
一个密码改变了我的人生
查看>>
解析Sharding-Sphere的SQL执行引擎
查看>>
cvConvertImage 彩色灰度转换 垂直旋转图像
查看>>
windows XP系统内核文件分析
查看>>
nginx限速白名单配置
查看>>
我的友情链接
查看>>
2015年7月19日21:12:13 学习手册
查看>>
升级Android SDK后ADT找不到adb.exe文件的解决办法(转)
查看>>
C# & OR &&
查看>>
NAT和桥接的区别
查看>>
查看进程
查看>>
织梦的autoindex和intemindex的区别
查看>>
标准W3C盒子模型和IE盒子模型CSS布局经典盒子模型
查看>>
开源USM-AlienVault OSSIM
查看>>
Linux系统单用户模式
查看>>
android 中MVC与MVP,MVVM模式使用介绍
查看>>
lol skl
查看>>
postgreSQL 9.1 的安装、基本配置、简单使用
查看>>