Spring Colud Alibaba Nacos微服务组件的使用教程

Spring Colud Alibaba Nacos微服务组件的使用教程 Nacos官网 什么是nacos Dynamic Naming and Configuration Service(动态命名和配置服务) nacos可以作为服务注册中心 nacos可以作为配置中心 nacos即支持AP也支持C

Spring Cloud Sleuth + Zipkin使用教程

Spring Cloud Sleuth + Zipkin使用教程 Sleuth官方文档 Sleuth提供了一套完整的服务跟踪的解决方案并兼容Zipkin Sleuth做链路追踪,Zipkin做数据搜集/存储/可视化 在分布应用中,存在服务之间的相互调用,在这里相互调用之间就形成了一条调用链路 一条链

SpringCloudGateWay网关组件使用教程

SpringCloudGateWay网关组件使用教程 Spring Cloud GateWay官方文档 使用的springcolud版本是 <dependency> <groupId>org.springframework.cloud</groupId>

Eureka服务注册与发现组件使用教程

Eureka服务注册与发现组件使用教程 服务注册与发现 负载均衡 远程调用 父模块的pom.xml配置 采用服务组件需要特别注意版本的关系,避免依赖冲突 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apach

Kotlin系列四(kotlin中的数组)

1.基本数据类型数组 2.引用类型数组 3.数组的创建方式 4.数据常用操作 5.多维数组

kotlin 

Kotlin系列三(kotlin中的流程控制)

1.条件语句, if单分支的使用,if else双分支的使用,if elseif else 多分支的使用. if单分支表达式的使用(类似三元表达式),if多分支表达式的使用. when条件语句的使用, when表达式的使用. 2.循环语句 while循环的使用, do while循环的使用, for 循环的使用, repeat循环的使用, continue和beark关键字在循环中的使用, kotlin标签语法在循环中的使用

kotlin