nacos的使用学习笔记

nacos的部署和使用

nacos的使用学习笔记_第1张图片

然后浏览器中访问:ip:8848/nacos

账号密码都是:nacos,nacos

nacos的使用学习笔记_第2张图片

nacos的使用学习笔记_第3张图片

nacos的使用学习笔记_第4张图片

服务的消费方配置:客户端负载均衡器配置负载均衡策略

nacos的使用学习笔记_第5张图片

基于nacos和dubbo的搭建

nacos的使用学习笔记_第6张图片

nacos的使用学习笔记_第7张图片

dubbo服务的生产方

nacos的使用学习笔记_第8张图片

nacos的使用学习笔记_第9张图片

nacos的使用学习笔记_第10张图片

server:
    port: 56040 #启动端口 命令行注入
spring:
    application:
        name: dubbo‐service2
    main:
        allow‐bean‐definition‐overriding: true # Spring Boot 2.1 需要设定
    cloud:
        nacos:
            discovery:
                server‐addr: 127.0.0.1:8848
dubbo:
    scan:
        # dubbo 服务扫描基准包
        base‐packages: com.itheima.microservice.service2.service
    protocol:
        # dubbo 协议
        name: dubbo
        # dubbo 协议端口
        port: 20891
    registry:
        address: nacos://127.0.0.1:8848
    application:
        qos‐enable: false #dubbo运维服务是否开启
    consumer:
        check: false #启动时就否检查依赖的服务

nacos的使用学习笔记_第11张图片

nacos的使用学习笔记_第12张图片

nacos的使用学习笔记_第13张图片

nacos的使用学习笔记_第14张图片

消费方

nacos的使用学习笔记_第15张图片

nacos的使用学习笔记_第16张图片

nacos的使用学习笔记_第17张图片

nacos的使用学习笔记_第18张图片

nacos的使用学习笔记_第19张图片

nacos的使用学习笔记_第20张图片

nacos的使用学习笔记_第21张图片

nacos的使用学习笔记_第22张图片

nacos的使用学习笔记_第23张图片

如果一个配置了namespeace,那么相关微服务都要配置namespeace

nacos的使用学习笔记_第24张图片

nacos的使用学习笔记_第25张图片

nacos的使用学习笔记_第26张图片

nacos的使用学习笔记_第27张图片

nacos的使用学习笔记_第28张图片

nacos的使用学习笔记_第29张图片

nacos配置管理

nacos的使用学习笔记_第30张图片

nacos的使用学习笔记_第31张图片

nacos的使用学习笔记_第32张图片

nacos的使用学习笔记_第33张图片

nacos的使用学习笔记_第34张图片

nacos的使用学习笔记_第35张图片

nacos的使用学习笔记_第36张图片

nacos的使用学习笔记_第37张图片

nacos的使用学习笔记_第38张图片

对于同一个属性,多个配置都进行了配置,则要考虑优先级

nacos的使用学习笔记_第39张图片

你可能感兴趣的:(服务注册与发现)