public class DubboMvcEndpoint
extends org.springframework.boot.actuate.endpoint.mvc.EndpointMvcAdapter
MvcEndpoint to expose Dubbo MetadataMvcEndpoint| Modifier and Type | Field and Description |
|---|---|
static String |
DUBBO_CONFIGS_ENDPOINT_URI |
static String |
DUBBO_PROPERTIES_ENDPOINT_URI |
static String |
DUBBO_REFERENCES_ENDPOINT_URI |
static String |
DUBBO_SERVICES_ENDPOINT_URI |
static String |
DUBBO_SHUTDOWN_ENDPOINT_URI |
| Constructor and Description |
|---|
DubboMvcEndpoint(DubboEndpoint dubboEndpoint) |
| Modifier and Type | Method and Description |
|---|---|
Map<String,Map<String,Map<String,Object>>> |
configs() |
SortedMap<String,Object> |
properties() |
Map<String,Map<String,Object>> |
references() |
Map<String,Map<String,Object>> |
services() |
org.springframework.web.context.request.async.DeferredResult |
shutdown() |
invokepublic static final String DUBBO_SHUTDOWN_ENDPOINT_URI
public static final String DUBBO_CONFIGS_ENDPOINT_URI
public static final String DUBBO_SERVICES_ENDPOINT_URI
public static final String DUBBO_REFERENCES_ENDPOINT_URI
public static final String DUBBO_PROPERTIES_ENDPOINT_URI
public DubboMvcEndpoint(DubboEndpoint dubboEndpoint)
@RequestMapping(value="/shutdown",
method=POST,
produces="application/json")
@ResponseBody
public org.springframework.web.context.request.async.DeferredResult shutdown()
throws Exception
Exception@RequestMapping(value="/configs",
method=GET,
produces="application/json")
@ResponseBody
public Map<String,Map<String,Map<String,Object>>> configs()
@RequestMapping(value="/services",
method=GET,
produces="application/json")
@ResponseBody
public Map<String,Map<String,Object>> services()
@RequestMapping(value="/references",
method=GET,
produces="application/json")
@ResponseBody
public Map<String,Map<String,Object>> references()
Copyright © 2011–2020 The Apache Software Foundation. All rights reserved.