仪表盘
版本库
文件存储
活动
搜索
登录
main
/
lbqms
兰宝车间质量管理系统
概况
操作记录
提交次数
目录
文档
分支
对比
blame
|
历史
|
原始文档
add common 依赖 spring-boot-properties-migrator ; add 新增 modules 模块, 包含 demo,...
zlyx
2023-01-18
2ae368128606f8bf3aa290c029bdc71296ad152e
[lbqms.git]
/
ruoyi-common
/
ruoyi-common-ratelimiter
/
src
/
main
/
java
/
com
/
ruoyi
/
common
/
ratelimiter
/
enums
/
LimitType.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.common.ratelimiter.enums;
/**
* 限流类型
*
* @author ruoyi
*/
public enum LimitType {
/**
* 默认策略全局限流
*/
DEFAULT,
/**
* 根据请求者IP进行限流
*/
IP,
/**
* 实例限流(集群多后端实例)
*/
CLUSTER
}