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
fb846f43
Commit
fb846f43
authored
Aug 26, 2019
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.1.x'
Fixes gh-17959
parents
0e2eac4a
4c446c38
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
113 additions
and
2 deletions
+113
-2
ManagementWebServerFactoryCustomizer.java
...gure/web/server/ManagementWebServerFactoryCustomizer.java
+0
-2
WebMvcEndpointChildContextConfiguration.java
.../web/servlet/WebMvcEndpointChildContextConfiguration.java
+36
-0
WebMvcEndpointChildContextConfigurationIntegrationTests.java
...MvcEndpointChildContextConfigurationIntegrationTests.java
+77
-0
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/server/ManagementWebServerFactoryCustomizer.java
View file @
fb846f43
...
@@ -28,7 +28,6 @@ import org.springframework.beans.factory.NoSuchBeanDefinitionException;
...
@@ -28,7 +28,6 @@ import org.springframework.beans.factory.NoSuchBeanDefinitionException;
import
org.springframework.boot.autoconfigure.web.ServerProperties
;
import
org.springframework.boot.autoconfigure.web.ServerProperties
;
import
org.springframework.boot.util.LambdaSafe
;
import
org.springframework.boot.util.LambdaSafe
;
import
org.springframework.boot.web.server.ConfigurableWebServerFactory
;
import
org.springframework.boot.web.server.ConfigurableWebServerFactory
;
import
org.springframework.boot.web.server.ErrorPage
;
import
org.springframework.boot.web.server.Ssl
;
import
org.springframework.boot.web.server.Ssl
;
import
org.springframework.boot.web.server.WebServerFactory
;
import
org.springframework.boot.web.server.WebServerFactory
;
import
org.springframework.boot.web.server.WebServerFactoryCustomizer
;
import
org.springframework.boot.web.server.WebServerFactoryCustomizer
;
...
@@ -107,7 +106,6 @@ public abstract class ManagementWebServerFactoryCustomizer<T extends Configurabl
...
@@ -107,7 +106,6 @@ public abstract class ManagementWebServerFactoryCustomizer<T extends Configurabl
}
}
factory
.
setServerHeader
(
serverProperties
.
getServerHeader
());
factory
.
setServerHeader
(
serverProperties
.
getServerHeader
());
factory
.
setAddress
(
managementServerProperties
.
getAddress
());
factory
.
setAddress
(
managementServerProperties
.
getAddress
());
factory
.
addErrorPages
(
new
ErrorPage
(
serverProperties
.
getError
().
getPath
()));
}
}
}
}
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/web/servlet/WebMvcEndpointChildContextConfiguration.java
View file @
fb846f43
...
@@ -24,11 +24,16 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
...
@@ -24,11 +24,16 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication.Type
;
import
org.springframework.boot.autoconfigure.web.ServerProperties
;
import
org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration
;
import
org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration
;
import
org.springframework.boot.autoconfigure.web.servlet.DispatcherServletRegistrationBean
;
import
org.springframework.boot.autoconfigure.web.servlet.DispatcherServletRegistrationBean
;
import
org.springframework.boot.web.server.ErrorPage
;
import
org.springframework.boot.web.server.WebServerFactoryCustomizer
;
import
org.springframework.boot.web.servlet.error.ErrorAttributes
;
import
org.springframework.boot.web.servlet.error.ErrorAttributes
;
import
org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter
;
import
org.springframework.boot.web.servlet.filter.OrderedRequestContextFilter
;
import
org.springframework.boot.web.servlet.server.ConfigurableServletWebServerFactory
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.core.Ordered
;
import
org.springframework.web.context.request.RequestContextListener
;
import
org.springframework.web.context.request.RequestContextListener
;
import
org.springframework.web.filter.RequestContextFilter
;
import
org.springframework.web.filter.RequestContextFilter
;
import
org.springframework.web.servlet.DispatcherServlet
;
import
org.springframework.web.servlet.DispatcherServlet
;
...
@@ -60,6 +65,12 @@ class WebMvcEndpointChildContextConfiguration {
...
@@ -60,6 +65,12 @@ class WebMvcEndpointChildContextConfiguration {
return
new
ManagementErrorEndpoint
(
errorAttributes
);
return
new
ManagementErrorEndpoint
(
errorAttributes
);
}
}
@Bean
@ConditionalOnBean
(
ErrorAttributes
.
class
)
ManagementErrorPageCustomizer
managementErrorPageCustomizer
(
ServerProperties
serverProperties
)
{
return
new
ManagementErrorPageCustomizer
(
serverProperties
);
}
@Bean
(
name
=
DispatcherServletAutoConfiguration
.
DEFAULT_DISPATCHER_SERVLET_BEAN_NAME
)
@Bean
(
name
=
DispatcherServletAutoConfiguration
.
DEFAULT_DISPATCHER_SERVLET_BEAN_NAME
)
DispatcherServlet
dispatcherServlet
()
{
DispatcherServlet
dispatcherServlet
()
{
DispatcherServlet
dispatcherServlet
=
new
DispatcherServlet
();
DispatcherServlet
dispatcherServlet
=
new
DispatcherServlet
();
...
@@ -97,4 +108,29 @@ class WebMvcEndpointChildContextConfiguration {
...
@@ -97,4 +108,29 @@ class WebMvcEndpointChildContextConfiguration {
return
new
OrderedRequestContextFilter
();
return
new
OrderedRequestContextFilter
();
}
}
/**
* {@link WebServerFactoryCustomizer} to add an {@link ErrorPage} so that the
* {@link ManagementErrorEndpoint} can be used.
*/
private
static
class
ManagementErrorPageCustomizer
implements
WebServerFactoryCustomizer
<
ConfigurableServletWebServerFactory
>,
Ordered
{
private
final
ServerProperties
properties
;
ManagementErrorPageCustomizer
(
ServerProperties
properties
)
{
this
.
properties
=
properties
;
}
@Override
public
void
customize
(
ConfigurableServletWebServerFactory
factory
)
{
factory
.
addErrorPages
(
new
ErrorPage
(
this
.
properties
.
getError
().
getPath
()));
}
@Override
public
int
getOrder
()
{
return
0
;
}
}
}
}
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/web/servlet/WebMvcEndpointChildContextConfigurationIntegrationTests.java
0 → 100644
View file @
fb846f43
/*
* Copyright 2012-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
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
web
.
servlet
;
import
org.junit.jupiter.api.Test
;
import
org.springframework.boot.actuate.autoconfigure.endpoint.EndpointAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.endpoint.web.WebEndpointAutoConfiguration
;
import
org.springframework.boot.actuate.autoconfigure.web.server.ManagementContextAutoConfiguration
;
import
org.springframework.boot.actuate.endpoint.annotation.Endpoint
;
import
org.springframework.boot.actuate.endpoint.annotation.ReadOperation
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration
;
import
org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration
;
import
org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration
;
import
org.springframework.boot.test.context.runner.WebApplicationContextRunner
;
import
org.springframework.boot.web.context.ServerPortInfoApplicationContextInitializer
;
import
org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext
;
import
org.springframework.http.MediaType
;
import
org.springframework.stereotype.Component
;
import
org.springframework.web.reactive.function.client.ClientResponse
;
import
org.springframework.web.reactive.function.client.WebClient
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Integration tests for {@link WebMvcEndpointChildContextConfiguration}.
*
* @author Phillip Webb
*/
class
WebMvcEndpointChildContextConfigurationIntegrationTests
{
@Test
// gh-17938
void
errorPageAndErrorControllerAreUsed
()
{
new
WebApplicationContextRunner
(
AnnotationConfigServletWebServerApplicationContext:
:
new
)
.
withConfiguration
(
AutoConfigurations
.
of
(
ManagementContextAutoConfiguration
.
class
,
ServletWebServerFactoryAutoConfiguration
.
class
,
ServletManagementContextAutoConfiguration
.
class
,
WebEndpointAutoConfiguration
.
class
,
EndpointAutoConfiguration
.
class
,
DispatcherServletAutoConfiguration
.
class
,
ErrorMvcAutoConfiguration
.
class
))
.
withUserConfiguration
(
FailingEndpoint
.
class
)
.
withInitializer
(
new
ServerPortInfoApplicationContextInitializer
()).
withPropertyValues
(
"server.port=0"
,
"management.server.port=0"
,
"management.endpoints.web.exposure.include=*"
)
.
run
((
context
)
->
{
String
port
=
context
.
getEnvironment
().
getProperty
(
"local.management.port"
);
WebClient
client
=
WebClient
.
create
(
"http://localhost:"
+
port
);
ClientResponse
response
=
client
.
get
().
uri
(
"actuator/fail"
).
accept
(
MediaType
.
APPLICATION_JSON
)
.
exchange
().
block
();
assertThat
(
response
.
bodyToMono
(
String
.
class
).
block
()).
contains
(
"message\":\"Epic Fail"
);
});
}
@Component
@Endpoint
(
id
=
"fail"
)
static
class
FailingEndpoint
{
@ReadOperation
String
fail
()
{
throw
new
IllegalStateException
(
"Epic Fail"
);
}
}
}
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