import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixProperty;
import feign.Param;
import feign.RequestLine;
public interface ReviewManager {
@RequestLine("GET /reviews/{id}")
@HystrixCommand(commandProperties = {
@HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "2000")
})
String getReview(@Param("id") String reviewId);
}
Will Feign support hystrix-javanica annotations? Example below: