Skip to content

hystrix-javanica annotation support? #515

@johnpang28

Description

@johnpang28

Will Feign support hystrix-javanica annotations? Example below:

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);

}

Metadata

Metadata

Assignees

No one assigned

    Labels

    waiting for votesEnhancements or changes proposed that need more support before consideration

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions