Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Kwan的解忧杂货铺@新空间代码工作室
SpringCloudAlibaba
提交
8e02153b
S
SpringCloudAlibaba
项目概览
Kwan的解忧杂货铺@新空间代码工作室
/
SpringCloudAlibaba
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
SpringCloudAlibaba
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
8e02153b
编写于
2月 15, 2023
作者:
Kwan的解忧杂货铺@新空间代码工作室
🐭
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:本地启动nacos
上级
ead9e181
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
56 addition
and
4 deletion
+56
-4
nacos-server-sentinel-consumer/pom.xml
nacos-server-sentinel-consumer/pom.xml
+0
-1
nacos-server-sentinel-consumer/src/main/java/com/kwan/springcloudalibaba/controller/FlowLimitController.java
...an/springcloudalibaba/controller/FlowLimitController.java
+46
-0
nacos-server-sentinel-consumer/src/main/resources/bootstrap.yml
...server-sentinel-consumer/src/main/resources/bootstrap.yml
+10
-3
未找到文件。
nacos-server-sentinel-consumer/pom.xml
浏览文件 @
8e02153b
...
...
@@ -84,7 +84,6 @@
<version>
1.8.2
</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
nacos-server-sentinel-consumer/src/main/java/com/kwan/springcloudalibaba/controller/FlowLimitController.java
浏览文件 @
8e02153b
package
com.kwan.springcloudalibaba.controller
;
import
com.alibaba.csp.sentinel.annotation.SentinelResource
;
import
com.alibaba.csp.sentinel.slots.block.BlockException
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
java.util.concurrent.TimeUnit
;
...
...
@@ -15,6 +18,7 @@ import java.util.concurrent.TimeUnit;
* @version : 2.2.0
* @date : 2023/2/2 17:13
*/
@Slf4j
@RestController
@RequestMapping
(
"/flowLimit"
)
public
class
FlowLimitController
{
...
...
@@ -71,4 +75,46 @@ public class FlowLimitController {
}
return
"------testE"
;
}
/**
* 热点规则
*
* @param p1
* @param p2
* @return
*/
@GetMapping
(
"/testHotKey"
)
@SentinelResource
(
value
=
"testHotKey"
)
public
String
testHotKey
(
@RequestParam
(
value
=
"p1"
,
required
=
false
)
String
p1
,
@RequestParam
(
value
=
"p2"
,
required
=
false
)
String
p2
)
{
return
"------testHotKey"
;
}
@GetMapping
(
"/testHotKey2"
)
@SentinelResource
(
value
=
"testHotKey2"
,
blockHandler
=
"dealHandler_testHotKey"
)
public
String
testHotKey2
(
@RequestParam
(
value
=
"p1"
,
required
=
false
)
String
p1
,
@RequestParam
(
value
=
"p2"
,
required
=
false
)
String
p2
)
{
log
.
info
(
"testE 热点参数"
);
return
"------testHotKey2"
;
}
/**
* 自定义异常
*
* @param p1
* @param p2
* @param exception
* @return
*/
public
String
dealHandler_testHotKey
(
String
p1
,
String
p2
,
BlockException
exception
)
{
// 默认 Blocked by Sentinel (flow limiting)
return
"-----dealHandler_testHotKey"
;
}
@GetMapping
(
"/persistent"
)
public
String
persistent
()
{
log
.
info
(
"persistent 测试持久化"
);
return
"------persistent 测试持久化"
;
}
}
\ No newline at end of file
nacos-server-sentinel-consumer/src/main/resources/bootstrap.yml
浏览文件 @
8e02153b
...
...
@@ -11,9 +11,9 @@ spring:
cloud
:
nacos
:
discovery
:
server-addr
:
http://120.79.36.53
:8848
#服务注册地址
server-addr
:
localhost
:8848
#服务注册地址
config
:
server-addr
:
http://120.79.36.53
:8848
#配置中心地址
server-addr
:
localhost
:8848
#配置中心地址
file-extension
:
yaml
#文件类型
group
:
DEV_GROUP
#组别
namespace
:
4cd9bd32-8f25-45cd-b919-df1a0df146e0
#命名空间
...
...
@@ -22,4 +22,11 @@ spring:
transport
:
dashboard
:
127.0.0.1:8181
port
:
8719
#默认端口,如果被占用则从8719依次+1扫描
datasource
:
ds1
:
nacos
:
server-addr
:
localhost:8848
dataId
:
nacos-server-sentinel-consumer
# 微服务名称
groupId
:
DEFAULT_GROUP
data-type
:
json
rule-type
:
flow
# 流控规则
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录