Spring Cloud Alibaba简单搭建使用--卖票功能

目的:

初次学习Spring Cloud Alibaba,为了方便学习,搭建环境并完成了一个简单的卖票功能,主要是为了熟悉基本的组件和操作。

需求:

使用Spring Cloud Alibaba 搭建微服务,完成卖票系统的项目构建,您需要搭建如下微服务:

1.服务注册与发现(nacos):搭建Nacos注册中心,所有的微服务都需要注册到Nacos中

2.电影服务(movice-service):负责电影即电影票的基本CURD工作,数据库连接 itsource-movice

3.购票服务(buyticket-service):提供购票接口,调用movice-server购买买电影票,连接数据库itsource-buyticket

4.服务网关:微服务的统一入口,使用Spring Cloud Gateway 搭建, 对movice-service和buyticket-service做请求路由

5.服务通信: buyticket-service和movice之间可能会有远程调用,使用OpenFeign来实现

6.服务降级:使用Sentinel组件实现服务降级

7.配置中心:使用Nacos作为微服务的配置中心

Spring Cloud和Spring Cloud Alibaba简单对比

image.png

开始················

1.搭建一个Maven的父项目 ,并导入相关依赖

    
        UTF-8
        UTF-8
        1.8
        Greenwich.SR2
        2.1.0.RELEASE
        2.1.13.RELEASE
    

    
    
         org.springframework.boot
        spring-boot-starter-parent
        2.1.13.RELEASE
    

    
        
            
                com.alibaba.cloud
                spring-cloud-alibaba-dependencies
                ${alibaba.version}
                pom
                import
            

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

2.搭建电影父服务 movie-server-parent

image

3.使用mybatis-plus生成基础代码

4.创建启动类

@SpringBootApplication
@EnableDiscoveryClient
@MapperScan("cn.hzy.hrm.mapper")
public class MovieServerApp {
    public static void main(String[] args) {
        SpringApplication.run(MovieServerApp.class);
    }
}

导入依赖


        
        
            com.alibaba.cloud 
            spring-cloud-starter-alibaba-nacos-discovery
        
        
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-nacos-config
        
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            cn.hzy
            hrm-basic-util
            1.0-SNAPSHOT
        
        
            com.baomidou
            mybatis-plus-support
            RELEASE
        
        
            cn.hzy
            movie-server-common
            1.0-SNAPSHOT
        

    

5.启动Nacos=====>

5.1、Nacos是什么
Nacos是一个注册中心,相当于SpringCloud里面中的Erueka,它也是一个配置中心,相当于SpringCloud里面的Config,他可以将配置文件版本化管理。

5.2、开启Nacos服务
1、 下载Nacos,下载地址:https://github.com/alibaba/nacos/releases
2、解压后打开/bin/startup.cmd启动

image.png

3、启动后可打开网址http://127.0.0.1:8848/nacos/index.html查看主页,用户名密码默认值为nacos

6.在Nacos配置中心中进行配置,把服务的配置文件注册到配置中心

设置命名空间(单个项目时可以用默认的,多个项目时可以设置)


image.png

打开Nacos监控面板 - 进入配置列表 -点击 “+” 图标添加配置 如下:


image.png

填写Data ID,选择YAML,编辑配置文件内容:

image.png

这里定义了一个名字为application-user-dev.yaml的配置,使用的是YAML格式。

server:
  port: 1010
spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://localhost:3306/itsource-movie?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT%2b8
    username: root
    password: a19950116
  application:
    name: movie-server
  cloud:
    nacos:
      discovery:
        server-addr: 127.0.0.1:8848 #注册中心地址
mybatis-plus:
  type-aliases-package: cn.hzy.hrm.domain

Data ID : 非常重要,可以看做是配置的文件的名字,在程序中拉取配置文件的时候需要指定Data ID。

Group : 分组,默认是 DEFAULT_GROUP , 可以针对不同的项目指定不同的配置组。

6.此时电影父服务 movie-server-parent已经接入成功。启动项目检测

7.搭建购票服务buyticket-server-parent (同电影服务,不在赘述!)

8.搭建gateway-server-1110 网关中心

导包

 
        
            org.springframework.cloud
            spring-cloud-starter-gateway
        
        
            com.alibaba.cloud 
            spring-cloud-starter-alibaba-nacos-discovery
        
        
        
            com.alibaba.cloud
            spring-cloud-starter-alibaba-nacos-config
        
    

创建启动类

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

bootstrap.yml配置文件

spring:
  profiles:
    active: dev
  cloud:
    nacos:
      discovery:
        server-addr: localhost:8848 #注册中心
      config:
        server-addr: localhost:8848 #配置中心
        file-extension: yaml #配置文件格式
        prefix: application-gateway #配置前缀 ,默认使用sring.application.name
        group: DEFAULT_GROUP #默认分组
        namespace: 01f747cd-14a6-4d83-9211-bba667558772 #命名空间的ID

在配置中心中创建配置文件application-gateway-dev.yaml

server:
  port: 80
spring:
  application:
    name: gateway-server
  cloud:
    gateway:
      discovery:
        locator:
          enabled: false #开放服务名访问方式
          lower-case-service-id: true #服务名小写
      routes:
        - id : application-buyticket #指定服务名
          uri: lb://buyticket-server #去注册中心找这个服务名
          predicates:    #断言,匹配访问的路径
          - Path=/buyticket/**  #服务访问路径
          filters:
            - StripPrefix=1 #请求转发的时候会去掉

基本服务搭建完成,如何开启熔断,在另一篇文章SpringCloudAlibaba 限流熔断--Sentinel 里面有详细描述。

你可能感兴趣的:(Spring Cloud Alibaba简单搭建使用--卖票功能)