Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
fbb1ba1b
Commit
fbb1ba1b
authored
Jan 22, 2018
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move actuator mappings introspection classes into dedicated packages
Closes gh-9979
parent
9da9221b
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
71 additions
and
50 deletions
+71
-50
MappingsEndpointAutoConfiguration.java
...igure/web/mappings/MappingsEndpointAutoConfiguration.java
+8
-7
package-info.java
...boot/actuate/autoconfigure/web/mappings/package-info.java
+20
-0
spring.factories
...utoconfigure/src/main/resources/META-INF/spring.factories
+1
-1
MappingsEndpointReactiveDocumentationTests.java
...mentation/MappingsEndpointReactiveDocumentationTests.java
+3
-3
MappingsEndpointServletDocumentationTests.java
...umentation/MappingsEndpointServletDocumentationTests.java
+5
-5
EndpointAutoConfigurationClasses.java
...ure/integrationtest/EndpointAutoConfigurationClasses.java
+1
-1
MappingDescriptionProvider.java
...boot/actuate/web/mappings/MappingDescriptionProvider.java
+1
-1
MappingsEndpoint.java
...framework/boot/actuate/web/mappings/MappingsEndpoint.java
+1
-1
package-info.java
...ringframework/boot/actuate/web/mappings/package-info.java
+2
-2
DispatcherHandlerMappingDescription.java
...appings/reactive/DispatcherHandlerMappingDescription.java
+1
-1
DispatcherHandlersMappingDescriptionProvider.java
...eactive/DispatcherHandlersMappingDescriptionProvider.java
+2
-2
package-info.java
...work/boot/actuate/web/mappings/reactive/package-info.java
+2
-2
DispatcherServletHandlerMappings.java
...eb/mappings/servlet/DispatcherServletHandlerMappings.java
+1
-1
DispatcherServletMappingDescription.java
...mappings/servlet/DispatcherServletMappingDescription.java
+1
-1
DispatcherServletsMappingDescriptionProvider.java
...servlet/DispatcherServletsMappingDescriptionProvider.java
+2
-2
FilterRegistrationMappingDescription.java
...appings/servlet/FilterRegistrationMappingDescription.java
+1
-1
FiltersMappingDescriptionProvider.java
...b/mappings/servlet/FiltersMappingDescriptionProvider.java
+2
-2
RegistrationMappingDescription.java
.../web/mappings/servlet/RegistrationMappingDescription.java
+1
-1
ServletRegistrationMappingDescription.java
...ppings/servlet/ServletRegistrationMappingDescription.java
+1
-1
ServletsMappingDescriptionProvider.java
.../mappings/servlet/ServletsMappingDescriptionProvider.java
+2
-2
package-info.java
...ework/boot/actuate/web/mappings/servlet/package-info.java
+2
-2
MappingsEndpointTests.java
...work/boot/actuate/web/mappings/MappingsEndpointTests.java
+11
-11
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/MappingsEndpointAutoConfiguration.java
→
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/
mappings/
MappingsEndpointAutoConfiguration.java
View file @
fbb1ba1b
...
...
@@ -14,19 +14,20 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
web
;
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
web
.
mappings
;
import
java.util.Collection
;
import
java.util.Collections
;
import
org.springframework.beans.factory.ObjectProvider
;
import
org.springframework.boot.actuate.autoconfigure.endpoint.condition.ConditionalOnEnabledEndpoint
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.MappingsEndpoint
;
import
org.springframework.boot.actuate.web.reactive.DispatcherHandlersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.DispatcherServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.FiltersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.ServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.autoconfigure.web.ManagementContextConfiguration
;
import
org.springframework.boot.actuate.web.mappings.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.mappings.MappingsEndpoint
;
import
org.springframework.boot.actuate.web.mappings.reactive.DispatcherHandlersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.mappings.servlet.DispatcherServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.mappings.servlet.FiltersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.mappings.servlet.ServletsMappingDescriptionProvider
;
import
org.springframework.boot.autoconfigure.EnableAutoConfiguration
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnBean
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnClass
;
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/mappings/package-info.java
0 → 100644
View file @
fbb1ba1b
/*
* Copyright 2012-2017 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
*
* http://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.
*/
/**
* Classes for auto-configuration of actuator web request mapping concerns.
*/
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
web
.
mappings
;
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/spring.factories
View file @
fbb1ba1b
...
...
@@ -41,7 +41,7 @@ org.springframework.boot.actuate.autoconfigure.system.DiskSpaceHealthIndicatorAu
org.springframework.boot.actuate.autoconfigure.trace.TraceEndpointAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.trace.TraceRepositoryAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.trace.TraceWebFilterAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.web.MappingsEndpointAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.web.
mappings.
MappingsEndpointAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.web.reactive.ReactiveManagementContextAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.web.servlet.ServletManagementContextAutoConfiguration
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/MappingsEndpointReactiveDocumentationTests.java
View file @
fbb1ba1b
...
...
@@ -23,9 +23,9 @@ import org.junit.Rule;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.MappingsEndpoint
;
import
org.springframework.boot.actuate.web.reactive.DispatcherHandlersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingsEndpoint
;
import
org.springframework.boot.actuate.web.
mappings.
reactive.DispatcherHandlersMappingDescriptionProvider
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.context.SpringBootTest.WebEnvironment
;
import
org.springframework.boot.web.embedded.netty.NettyReactiveWebServerFactory
;
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/endpoint/web/documentation/MappingsEndpointServletDocumentationTests.java
View file @
fbb1ba1b
...
...
@@ -23,11 +23,11 @@ import org.junit.Rule;
import
org.junit.Test
;
import
org.junit.runner.RunWith
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.MappingsEndpoint
;
import
org.springframework.boot.actuate.web.servlet.DispatcherServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.FiltersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.ServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingsEndpoint
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.DispatcherServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.FiltersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.ServletsMappingDescriptionProvider
;
import
org.springframework.boot.test.context.SpringBootTest
;
import
org.springframework.boot.test.context.SpringBootTest.WebEnvironment
;
import
org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory
;
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/integrationtest/EndpointAutoConfigurationClasses.java
View file @
fbb1ba1b
...
...
@@ -29,7 +29,7 @@ import org.springframework.boot.actuate.autoconfigure.health.HealthEndpointAutoC
import
org.springframework.boot.actuate.autoconfigure.info.InfoEndpointAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.trace.TraceEndpointAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.web.MappingsEndpointAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.web.
mappings.
MappingsEndpointAutoConfiguration
;
/**
* A list of all endpoint auto-configuration classes for use in tests.
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/MappingDescriptionProvider.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
MappingDescriptionProvider.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
;
import
java.util.List
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/MappingsEndpoint.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
MappingsEndpoint.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
;
import
java.util.Collection
;
import
java.util.HashMap
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
servlet
/package-info.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings
/package-info.java
View file @
fbb1ba1b
...
...
@@ -15,6 +15,6 @@
*/
/**
* Actuator web
support using Spring MVC
.
* Actuator web
request mappings support
.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
;
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/reactive/DispatcherHandlerMappingDescription.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
reactive/DispatcherHandlerMappingDescription.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
reactive
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
reactive
;
import
org.springframework.web.servlet.DispatcherServlet
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/reactive/DispatcherHandlersMappingDescriptionProvider.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
reactive/DispatcherHandlersMappingDescriptionProvider.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
reactive
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
reactive
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
...
...
@@ -28,7 +28,7 @@ import java.util.stream.Stream;
import
reactor.core.publisher.Mono
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingDescriptionProvider
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.core.io.Resource
;
import
org.springframework.web.method.HandlerMethod
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/package-info.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/reactive/
package-info.java
View file @
fbb1ba1b
...
...
@@ -15,6 +15,6 @@
*/
/**
* Actuator
web
support.
* Actuator
reactive request mappings
support.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
reactive
;
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/DispatcherServletHandlerMappings.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/DispatcherServletHandlerMappings.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
java.util.Collections
;
import
java.util.List
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/DispatcherServletMappingDescription.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/DispatcherServletMappingDescription.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
org.springframework.web.servlet.DispatcherServlet
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/DispatcherServletsMappingDescriptionProvider.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/DispatcherServletsMappingDescriptionProvider.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
java.util.ArrayList
;
import
java.util.Collections
;
...
...
@@ -25,7 +25,7 @@ import java.util.Map.Entry;
import
java.util.stream.Collectors
;
import
java.util.stream.Stream
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingDescriptionProvider
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.data.rest.webmvc.support.DelegatingHandlerMapping
;
import
org.springframework.util.ClassUtils
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/FilterRegistrationMappingDescription.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/FilterRegistrationMappingDescription.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
java.util.Collection
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/FiltersMappingDescriptionProvider.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/FiltersMappingDescriptionProvider.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
java.util.Collections
;
import
java.util.List
;
...
...
@@ -23,7 +23,7 @@ import java.util.stream.Collectors;
import
javax.servlet.Filter
;
import
javax.servlet.ServletContext
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingDescriptionProvider
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.web.context.WebApplicationContext
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/RegistrationMappingDescription.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/RegistrationMappingDescription.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
javax.servlet.Registration
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/ServletRegistrationMappingDescription.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/ServletRegistrationMappingDescription.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
java.util.Collection
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/servlet/ServletsMappingDescriptionProvider.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/
servlet/ServletsMappingDescriptionProvider.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
servlet
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
import
java.util.Collections
;
import
java.util.List
;
...
...
@@ -23,7 +23,7 @@ import java.util.stream.Collectors;
import
javax.servlet.Servlet
;
import
javax.servlet.ServletContext
;
import
org.springframework.boot.actuate.web.MappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingDescriptionProvider
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.web.context.WebApplicationContext
;
...
...
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
reactive
/package-info.java
→
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/web/
mappings/servlet
/package-info.java
View file @
fbb1ba1b
...
...
@@ -15,6 +15,6 @@
*/
/**
* Actuator
web support using WebFlux
.
* Actuator
servlet request mappings support
.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
.
reactive
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
.
servlet
;
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/web/MappingsEndpointTests.java
→
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/web/
mappings/
MappingsEndpointTests.java
View file @
fbb1ba1b
...
...
@@ -14,7 +14,7 @@
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
web
;
package
org
.
springframework
.
boot
.
actuate
.
web
.
mappings
;
import
java.util.Collection
;
import
java.util.Collections
;
...
...
@@ -29,16 +29,16 @@ import javax.servlet.ServletRegistration;
import
org.junit.Test
;
import
org.springframework.boot.actuate.web.MappingsEndpoint.ApplicationMappings
;
import
org.springframework.boot.actuate.web.MappingsEndpoint.ContextMappings
;
import
org.springframework.boot.actuate.web.reactive.DispatcherHandlerMappingDescription
;
import
org.springframework.boot.actuate.web.reactive.DispatcherHandlersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.DispatcherServletMappingDescription
;
import
org.springframework.boot.actuate.web.servlet.DispatcherServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.FilterRegistrationMappingDescription
;
import
org.springframework.boot.actuate.web.servlet.FiltersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.servlet.ServletRegistrationMappingDescription
;
import
org.springframework.boot.actuate.web.servlet.ServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
MappingsEndpoint.ApplicationMappings
;
import
org.springframework.boot.actuate.web.
mappings.
MappingsEndpoint.ContextMappings
;
import
org.springframework.boot.actuate.web.
mappings.
reactive.DispatcherHandlerMappingDescription
;
import
org.springframework.boot.actuate.web.
mappings.
reactive.DispatcherHandlersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.DispatcherServletMappingDescription
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.DispatcherServletsMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.FilterRegistrationMappingDescription
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.FiltersMappingDescriptionProvider
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.ServletRegistrationMappingDescription
;
import
org.springframework.boot.actuate.web.
mappings.
servlet.ServletsMappingDescriptionProvider
;
import
org.springframework.boot.test.context.runner.ReactiveWebApplicationContextRunner
;
import
org.springframework.boot.test.context.runner.WebApplicationContextRunner
;
import
org.springframework.context.ApplicationContext
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment