OpenFeign 定義後備工廠進行服務降級

天航星發表於2024-05-08

OpenFeign 定義後備工廠進行服務降級可以使得遠端介面呼叫失敗時進行降級處理,而不會直接報錯,影響後續程式碼邏輯。定義後備工廠的步驟如下:

  1. 遠端介面處定義。

    @FeignClient(value = ServiceConstants.SYSTEM, fallbackFactory = RemoteFileFallbackFactory.class)
    public interface RemoteFileService {
    
        /**
         * 使檔案生效
         * @param id 檔案ID
         * @return 結果
         */
        @PutMapping("file/enable/{id}")
        BaseResult<Boolean> enable(@PathVariable("id") Long id);
    }
    
  2. 定義後備工廠。

    @Slf4j
    @Component
    public class RemoteFileFallbackFactory implements FallbackFactory<RemoteFileService> {
        
        @Override
        public RemoteFileService create(Throwable cause) {
            
            log.error("遠端檔案服務:{}", cause.getMessage());
            return new RemoteFileService() {
                
                @Override
                public BaseResult<Boolean> enable(Long id) {
                    
                    return BaseResult.fail();
                }
            };
        }
    }
    
  3. 自動匯入後備工廠。

    resource/META-INF/spring下的org.springframework.boot.autoconfigure.AutoConfiguration.imports

    中進行定義:

    com.sevnce.base.api.service.system.factory.RemoteFileFallbackFactory
    

相關文章