cdfive
cdfive
### Describe what this PR does / why we need it Sentinel dashboard provide web UI where we can setting rules, viewing machines, viewing monitoring, etc, it's very useful and...
### Describe what this PR does / why we need it Add some test cases for different ProcessorSlot, `NodeSelectorSlot`,`ClusterBuilderSlot` and so on. ### Does this pull request fix one issue?...
**Affects:** spring-aop:5.0.9.RELEASE, spring-boot-starter-aop:2.0.5.RELEASE ``` public interface FooService { @MyAnnotation void hello(); } public class FooServiceImpl implements FooService { void hello(); } ``` ``` public class MyAspect { @Pointcut("@annotation(MyAnnotation") public void...
ConfigService接口提供了以下方法: String getConfig(String dataId, String group, long timeoutMs) throws NacosException; void addListener(String dataId, String group, Listener listener) throws NacosException; 都是单个dataId的,比如想批量获取group下所有dataId配置,以及想监听某个group下新增dataId变化, 请问有什么方法呢?