1
0
mirror of https://gitee.com/mirrors/Spring-Cloud-Alibaba.git synced 2021-06-26 13:25:11 +08:00

dubbo endpoint

This commit is contained in:
theonefx 2021-01-28 09:11:33 +08:00
parent dfa7747579
commit 4a2f90f13e
3 changed files with 5 additions and 50 deletions

View File

@ -17,7 +17,6 @@
package com.alibaba.cloud.dubbo.actuate;
import com.alibaba.cloud.dubbo.actuate.endpoint.DubboDiscoveryEndpoint;
import com.alibaba.cloud.dubbo.actuate.endpoint.DubboRegistryEndpoint;
import com.alibaba.cloud.dubbo.actuate.endpoint.DubboRestMetadataEndpoint;
import org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnAvailableEndpoint;
@ -52,11 +51,4 @@ public class DubboMetadataEndpointAutoConfiguration {
return new DubboDiscoveryEndpoint();
}
@Bean
@ConditionalOnMissingBean
@ConditionalOnAvailableEndpoint
public DubboRegistryEndpoint dubboRegistryEndpoint() {
return new DubboRegistryEndpoint();
}
}

View File

@ -16,6 +16,7 @@
package com.alibaba.cloud.dubbo.actuate.endpoint;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@ -50,6 +51,10 @@ public class DubboDiscoveryEndpoint {
.getRegistries().stream().filter(o -> o instanceof DubboCloudRegistry)
.findFirst().orElse(null);
if (registry == null) {
return Collections.emptyMap();
}
Map<URL, Set<NotifyListener>> map = registry.getSubscribed();
Map<String, List<String>> result = new HashMap<>();

View File

@ -1,42 +0,0 @@
/*
* Copyright 2013-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.alibaba.cloud.dubbo.actuate.endpoint;
import com.alibaba.cloud.dubbo.registry.DubboCloudRegistry;
import org.springframework.boot.actuate.endpoint.annotation.Endpoint;
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation;
import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
/**
* Dubbo Rest Metadata {@link Endpoint}.
*
* @author <a href="mailto:chenxilzx1@gmail.com">Mercy</a>
*/
@Endpoint(id = "dubboregistry")
public class DubboRegistryEndpoint {
// @Autowired
private DubboCloudRegistry dubboCloudRegistry;
@ReadOperation(produces = APPLICATION_JSON_VALUE)
public Object get() {
return dubboCloudRegistry;
}
}