本文主要是介绍Sentinel 流控-链路模式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
链路模式
A B C 三个服务
A 调用 C
B 调用 C
C 设置流控 ->链路模式 -> 入口资源是 A
A、B 服务
package com.learning.springcloud.order.controller;import com.learning.springcloud.order.service.BaseService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;/*** 链路模式:* 条件:* - A —> C; B -> C* - C 设置流控规则 入口资源是A*/
@RestController
@RequestMapping("/lianlu")
public class LianLuController {@AutowiredBaseService baseService;@RequestMapping("/A")public Object A() {String s = baseService.queryC();return "hi, A;" + s;}@RequestMapping("/B")public Object B() {String s = baseService.queryC();ret
这篇关于Sentinel 流控-链路模式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!