refactor(security/limiter): 重构限流器,支持自定义限流器名称生成器

This commit is contained in:
2024-06-28 23:34:51 +08:00
parent 13b3f24845
commit 51c47751f4
14 changed files with 429 additions and 340 deletions

View File

@@ -262,6 +262,16 @@ public class StringConstants {
*/
public static final String CHINESE_COMMA = "";
/**
* 圆括号(左) {@code "("}
*/
public static final String ROUND_BRACKET_START = "(";
/**
* 圆括号(右) {@code ")"}
*/
public static final String ROUND_BRACKET_END = ")";
/**
* 路径模式
*/