mitao
2025-03-10 9dbb6c26c81e94e8f969805b40b0e183bf306f83
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;
    }
}