在shop-order-server项⽬中新增HotSpotController.java,代码如下:
@RestController
@Slf4j
public class HotSpotController {
@RequestMapping("/hotSpot1")
@SentinelResource(value = "hotSpot1")
public String hotSpot1(Long productId){
log.info("访问编号为:{}的商品",productId);
return "hotSpot1";
}
}
访问http://localhost:8091/hotSpot1?productId=1后,新增热点规则:
访问http://localhost:8091/hotSpot1?productId=1后对id=1的商品进行指定的限流:
这时候我们疯狂刷新productId = 1的页面出现错误,但product = 2却不会受到影响: