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
5a7d89c9
Commit
5a7d89c9
authored
Jan 28, 2014
by
Dave Syer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Look in parent context for Endpoints to expose
Fixes gh-275
parent
2d54b54d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
2 deletions
+77
-2
MvcEndpoints.java
...ringframework/boot/actuate/endpoint/mvc/MvcEndpoints.java
+3
-2
MvcEndpointsTests.java
...ramework/boot/actuate/endpoint/mvc/MvcEndpointsTests.java
+74
-0
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/mvc/MvcEndpoints.java
View file @
5a7d89c9
...
@@ -21,6 +21,7 @@ import java.util.HashSet;
...
@@ -21,6 +21,7 @@ import java.util.HashSet;
import
java.util.Set
;
import
java.util.Set
;
import
org.springframework.beans.BeansException
;
import
org.springframework.beans.BeansException
;
import
org.springframework.beans.factory.BeanFactoryUtils
;
import
org.springframework.beans.factory.InitializingBean
;
import
org.springframework.beans.factory.InitializingBean
;
import
org.springframework.boot.actuate.endpoint.Endpoint
;
import
org.springframework.boot.actuate.endpoint.Endpoint
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.context.ApplicationContext
;
...
@@ -56,8 +57,8 @@ public class MvcEndpoints implements ApplicationContextAware, InitializingBean {
...
@@ -56,8 +57,8 @@ public class MvcEndpoints implements ApplicationContextAware, InitializingBean {
this
.
endpoints
.
addAll
(
existing
);
this
.
endpoints
.
addAll
(
existing
);
this
.
customTypes
=
findEndpointClasses
(
existing
);
this
.
customTypes
=
findEndpointClasses
(
existing
);
@SuppressWarnings
(
"rawtypes"
)
@SuppressWarnings
(
"rawtypes"
)
Collection
<
Endpoint
>
delegates
=
this
.
applicationContext
.
getBeansOfType
(
Collection
<
Endpoint
>
delegates
=
BeanFactoryUtils
.
beansOfTypeIncludingAncestors
(
Endpoint
.
class
).
values
();
this
.
applicationContext
,
Endpoint
.
class
).
values
();
for
(
Endpoint
<?>
endpoint
:
delegates
)
{
for
(
Endpoint
<?>
endpoint
:
delegates
)
{
if
(
isGenericEndpoint
(
endpoint
.
getClass
()))
{
if
(
isGenericEndpoint
(
endpoint
.
getClass
()))
{
this
.
endpoints
.
add
(
new
EndpointMvcAdapter
(
endpoint
));
this
.
endpoints
.
add
(
new
EndpointMvcAdapter
(
endpoint
));
...
...
spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/mvc/MvcEndpointsTests.java
0 → 100644
View file @
5a7d89c9
/*
* Copyright 2012-2013 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.
*/
package
org
.
springframework
.
boot
.
actuate
.
endpoint
.
mvc
;
import
org.junit.Test
;
import
org.springframework.boot.actuate.endpoint.AbstractEndpoint
;
import
org.springframework.context.support.StaticApplicationContext
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
/**
* @author Dave Syer
*/
public
class
MvcEndpointsTests
{
private
MvcEndpoints
endpoints
=
new
MvcEndpoints
();
private
StaticApplicationContext
context
=
new
StaticApplicationContext
();
@Test
public
void
picksUpEndpointDelegates
()
throws
Exception
{
this
.
context
.
getDefaultListableBeanFactory
().
registerSingleton
(
"endpoint"
,
new
TestEndpoint
());
this
.
endpoints
.
setApplicationContext
(
this
.
context
);
this
.
endpoints
.
afterPropertiesSet
();
assertEquals
(
1
,
this
.
endpoints
.
getEndpoints
().
size
());
}
@Test
public
void
picksUpEndpointDelegatesFromParent
()
throws
Exception
{
StaticApplicationContext
parent
=
new
StaticApplicationContext
();
this
.
context
.
setParent
(
parent
);
parent
.
getDefaultListableBeanFactory
().
registerSingleton
(
"endpoint"
,
new
TestEndpoint
());
this
.
endpoints
.
setApplicationContext
(
this
.
context
);
this
.
endpoints
.
afterPropertiesSet
();
assertEquals
(
1
,
this
.
endpoints
.
getEndpoints
().
size
());
}
@Test
public
void
picksUpMvcEndpoints
()
throws
Exception
{
this
.
context
.
getDefaultListableBeanFactory
().
registerSingleton
(
"endpoint"
,
new
EndpointMvcAdapter
(
new
TestEndpoint
()));
this
.
endpoints
.
setApplicationContext
(
this
.
context
);
this
.
endpoints
.
afterPropertiesSet
();
assertEquals
(
1
,
this
.
endpoints
.
getEndpoints
().
size
());
}
protected
static
class
TestEndpoint
extends
AbstractEndpoint
<
String
>
{
public
TestEndpoint
()
{
super
(
"test"
);
}
@Override
public
String
invoke
()
{
return
"foo"
;
}
}
}
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