1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.system.api.factory;
|
| import com.ruoyi.system.api.feignClient.AuctionClient;
| import org.springframework.cloud.openfeign.FallbackFactory;
|
| /**
| * @author mitao
| * @date 2024/5/17
| */
| public class AuctionFallbackFactory implements FallbackFactory<AuctionClient> {
|
| @Override
| public AuctionClient create(Throwable cause) {
| return null;
| }
| }
|
|