marcosbarbero / spring-cloud-zuul-ratelimit

Rate limit auto-configure for Spring Cloud Netflix Zuul

Home Page:https://blog.marcosbarbero.com/spring-cloud-netflix-zuul-rate-limit/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Does the project support zuul-core?

isaacchiang opened this issue · comments

Greetings,
We are building an API gateway in a project, instead of using spring-cloud-zuul, we use zuul-core for some reasons.
Recently we have a need of doing ratelimit and found this project. We were wondering if this project can be used with zuul-core? If not, does it have a version or module that directly support the zuul-core?

Thanks,

Hello @isaacchiang ,thank you for submitting an issue!

Hi @isaacchiang this project is built expecting some of the spring-cloud-* features to work. If you want to use it with the plain zuul-core you probably need to declare manually all the filters, and @Beans from the RateLimitAutoConfiguration.

Unfortunately, there's not a version only for zuul-core.

@marcosbarbero Got it, thank you!