rentaiming
2024-07-14 a45ef0534356b00a0b4a3f5888b74c900b83978b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.ruoyi.system.api.factory;
 
import com.ruoyi.system.api.feignClient.ArticleClient;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;
 
@Component
public class ArticleFallbackFactory implements FallbackFactory<ArticleClient> {
 
    @Override
    public ArticleClient create(Throwable cause) {
        return null;
    }
}