package com.xinquan.course.api.factory; import com.xinquan.course.api.feign.RemoteCourseService; import org.springframework.cloud.openfeign.FallbackFactory; /** * @author mitao * @date 2024/8/21 */ public class RemoteCourseFallbackFactory implements FallbackFactory { @Override public RemoteCourseService create(Throwable cause) { return null; } }