Class DispatcherServletsMappingDescriptionProvider
java.lang.Object
org.springframework.boot.actuate.web.mappings.servlet.DispatcherServletsMappingDescriptionProvider
- All Implemented Interfaces:
MappingDescriptionProvider
@ImportRuntimeHints(org.springframework.boot.actuate.web.mappings.servlet.DispatcherServletsMappingDescriptionProvider.DispatcherServletsMappingDescriptionProviderRuntimeHints.class)
public class DispatcherServletsMappingDescriptionProvider
extends Object
implements MappingDescriptionProvider
A
MappingDescriptionProvider
that introspects the HandlerMappings
that are known to one or more DispatcherServlets
.- Since:
- 2.0.0
- Author:
- Andy Wilkinson, Stephane Nicoll
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiondescribeMappings
(ApplicationContext context) Produce the descriptions of the mappings identified by this provider in the givencontext
.Returns the name of the mappings described by this provider.
-
Constructor Details
-
DispatcherServletsMappingDescriptionProvider
public DispatcherServletsMappingDescriptionProvider()
-
-
Method Details
-
getMappingName
Description copied from interface:MappingDescriptionProvider
Returns the name of the mappings described by this provider.- Specified by:
getMappingName
in interfaceMappingDescriptionProvider
- Returns:
- the name of the mappings
-
describeMappings
public Map<String,List<DispatcherServletMappingDescription>> describeMappings(ApplicationContext context) Description copied from interface:MappingDescriptionProvider
Produce the descriptions of the mappings identified by this provider in the givencontext
.- Specified by:
describeMappings
in interfaceMappingDescriptionProvider
- Parameters:
context
- the application context to introspect- Returns:
- the mapping descriptions
-