You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sentinel-dashboard/src/main/java/com/alibaba/csp/sentinel/dashboard/domain/vo/gateway/api/ApiPredicateItemVo.java
+12
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,20 @@
23
23
*/
24
24
publicclassApiPredicateItemVo {
25
25
26
+
/**
27
+
* The pattern for matching url.
28
+
*/
26
29
privateStringpattern;
27
30
31
+
/**
32
+
* The matching Strategy in url. Constants are defined in class SentinelGatewayConstants.\
33
+
*
34
+
* <ul>
35
+
* <li>0(URL_MATCH_STRATEGY_EXACT): exact match mode</li>
36
+
* <li>1(URL_MATCH_STRATEGY_PREFIX): prefix match mode</li>
37
+
* <li>2(URL_MATCH_STRATEGY_REGEX): regex match mode</li>
0 commit comments