我正在尝试使用 JPA 存储库在 Spring Cloud Netflix Zuul 中配置速率限制。但是一开始我收到这个异常:
java.sql.SQLSyntaxErrorException:表“kirillbq_bl_acc.rate”不存在
我的application.yaml:
zuul:
routes:
my-service:
path: /
ratelimit:
enabled: true
repository: JPA
policy-list:
my-service:
- limit: 2
refresh-interval: 60
type:
- origin
strip-prefix: true
我在项目中也有spring-boot-starter-data-jpa依赖项。
我假设 Zuul 需要一个“Rate”表来存储有关请求的信息,但是我找不到有关该表结构的任何信息。应该是什么?
万千封印
相关分类