Spring Cloud超簡單十分鐘入門例項

qiushijie發表於2019-04-02

簡介

本文通過建立一個簡單是例項,展示spring cloud的應用場景,使用eureka做服務註冊和發現,管理其他服務,是系統的核心,移除當機服務不會造成故障致使系統無法使用。使用zuul做路由轉發和負載均衡,外部訪問統一走閘道器。內部呼叫使用feign來註解服務,簡化呼叫程式碼編寫。整個spring cloud的微服務的應用雛形就是這樣,上手還是非常簡單的。

服務

服務就是提供相應功能的程式碼、模組,在系統裡統一註冊到服務中心,其他服務根據服務名等來呼叫這個服務,這也是eureka所做的工作。

閘道器

部署的服務很多的情況下,每一個服務都有自己的埠,前端或者其他外部呼叫如果都要指定ip和埠去訪問,就會非常繁瑣。閘道器做的工作是統一管理這些服務的路由,根據路徑轉發到不同的服務去,然後還做負載均衡這些。

github地址 spring-cloud-simple

新建專案

gradle父專案

選擇gradle,然後勾選java

Spring Cloud超簡單十分鐘入門例項

然後一路next

gradle.properties

如果根目錄沒有gradle.properties,則新建一個,新增公共版本號

springboot_version=2.1.3.RELEASE
springcloud_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

Spring Cloud超簡單十分鐘入門例項

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
@EnableEurekaServer
public class EurekaServerApplication {

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

}
複製程式碼

在src/main/resources新增配置application.yml

spring:
  application:
    name: eureka-server

server:
  port: 8761

eureka:
  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
@RestController
public 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: 8763
spring:
  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
@SpringBootApplication
public class ApiGatewayApplication {

    public static void main(String[] args) {
        SpringApplication.run(ApiGatewayApplication.class, args);
    }

}
複製程式碼

配置

server:
  port: 8769
eureka:
  client:
    service-url:
      defaultZone: http://localhost:8761/eureka
spring:
  application:
    name: zuul
zuul:
  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
@RestController
public 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: 8764
spring:
  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/中

相關文章