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
d0b2b9b1
Commit
d0b2b9b1
authored
Apr 13, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '2.0.x'
parents
fb60716e
fa542bac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
52 additions
and
3 deletions
+52
-3
EndpointMBean.java
...ingframework/boot/actuate/endpoint/jmx/EndpointMBean.java
+22
-3
EndpointMBeanTests.java
...amework/boot/actuate/endpoint/jmx/EndpointMBeanTests.java
+30
-0
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/jmx/EndpointMBean.java
View file @
d0b2b9b1
...
@@ -93,13 +93,12 @@ public class EndpointMBean implements DynamicMBean {
...
@@ -93,13 +93,12 @@ public class EndpointMBean implements DynamicMBean {
return
invoke
(
operation
,
params
);
return
invoke
(
operation
,
params
);
}
}
private
Object
invoke
(
JmxOperation
operation
,
Object
[]
params
)
{
private
Object
invoke
(
JmxOperation
operation
,
Object
[]
params
)
throws
MBeanException
{
try
{
try
{
String
[]
parameterNames
=
operation
.
getParameters
().
stream
()
String
[]
parameterNames
=
operation
.
getParameters
().
stream
()
.
map
(
JmxOperationParameter:
:
getName
).
toArray
(
String
[]::
new
);
.
map
(
JmxOperationParameter:
:
getName
).
toArray
(
String
[]::
new
);
Map
<
String
,
Object
>
arguments
=
getArguments
(
parameterNames
,
params
);
Map
<
String
,
Object
>
arguments
=
getArguments
(
parameterNames
,
params
);
Object
result
=
operation
Object
result
=
invokeOperation
(
operation
,
arguments
);
.
invoke
(
new
InvocationContext
(
SecurityContext
.
NONE
,
arguments
));
if
(
REACTOR_PRESENT
)
{
if
(
REACTOR_PRESENT
)
{
result
=
ReactiveHandler
.
handle
(
result
);
result
=
ReactiveHandler
.
handle
(
result
);
}
}
...
@@ -110,6 +109,26 @@ public class EndpointMBean implements DynamicMBean {
...
@@ -110,6 +109,26 @@ public class EndpointMBean implements DynamicMBean {
}
}
}
}
private
Object
invokeOperation
(
JmxOperation
operation
,
Map
<
String
,
Object
>
arguments
)
throws
MBeanException
{
try
{
return
operation
.
invoke
(
new
InvocationContext
(
SecurityContext
.
NONE
,
arguments
));
}
catch
(
Exception
ex
)
{
throw
new
MBeanException
(
translateIfNecessary
(
ex
),
ex
.
getMessage
());
}
}
private
Exception
translateIfNecessary
(
Exception
exception
)
{
if
(
exception
.
getClass
().
getName
().
startsWith
(
"java."
))
{
return
exception
;
}
else
{
return
new
IllegalStateException
(
exception
.
getMessage
());
}
}
private
Map
<
String
,
Object
>
getArguments
(
String
[]
parameterNames
,
Object
[]
params
)
{
private
Map
<
String
,
Object
>
getArguments
(
String
[]
parameterNames
,
Object
[]
params
)
{
Map
<
String
,
Object
>
arguments
=
new
HashMap
<>();
Map
<
String
,
Object
>
arguments
=
new
HashMap
<>();
for
(
int
i
=
0
;
i
<
params
.
length
;
i
++)
{
for
(
int
i
=
0
;
i
<
params
.
length
;
i
++)
{
...
...
spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/endpoint/jmx/EndpointMBeanTests.java
View file @
d0b2b9b1
...
@@ -29,6 +29,8 @@ import org.junit.Test;
...
@@ -29,6 +29,8 @@ import org.junit.Test;
import
org.junit.rules.ExpectedException
;
import
org.junit.rules.ExpectedException
;
import
reactor.core.publisher.Mono
;
import
reactor.core.publisher.Mono
;
import
org.springframework.beans.FatalBeanException
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
import
static
org
.
hamcrest
.
CoreMatchers
.
instanceOf
;
import
static
org
.
hamcrest
.
CoreMatchers
.
instanceOf
;
import
static
org
.
mockito
.
Mockito
.
mock
;
import
static
org
.
mockito
.
Mockito
.
mock
;
...
@@ -84,6 +86,34 @@ public class EndpointMBeanTests {
...
@@ -84,6 +86,34 @@ public class EndpointMBeanTests {
assertThat
(
result
).
isEqualTo
(
"result"
);
assertThat
(
result
).
isEqualTo
(
"result"
);
}
}
@Test
public
void
invokeWhenOperationFailedShouldTranslateException
()
throws
MBeanException
,
ReflectionException
{
TestExposableJmxEndpoint
endpoint
=
new
TestExposableJmxEndpoint
(
new
TestJmxOperation
((
arguments
)
->
{
throw
new
FatalBeanException
(
"test failure"
);
}));
EndpointMBean
bean
=
new
EndpointMBean
(
this
.
responseMapper
,
endpoint
);
this
.
thrown
.
expect
(
MBeanException
.
class
);
this
.
thrown
.
expectCause
(
instanceOf
(
IllegalStateException
.
class
));
this
.
thrown
.
expectMessage
(
"test failure"
);
bean
.
invoke
(
"testOperation"
,
NO_PARAMS
,
NO_SIGNATURE
);
}
@Test
public
void
invokeWhenOperationFailedWithJdkExceptionShouldReuseException
()
throws
MBeanException
,
ReflectionException
{
TestExposableJmxEndpoint
endpoint
=
new
TestExposableJmxEndpoint
(
new
TestJmxOperation
((
arguments
)
->
{
throw
new
UnsupportedOperationException
(
"test failure"
);
}));
EndpointMBean
bean
=
new
EndpointMBean
(
this
.
responseMapper
,
endpoint
);
this
.
thrown
.
expect
(
MBeanException
.
class
);
this
.
thrown
.
expectCause
(
instanceOf
(
UnsupportedOperationException
.
class
));
this
.
thrown
.
expectMessage
(
"test failure"
);
bean
.
invoke
(
"testOperation"
,
NO_PARAMS
,
NO_SIGNATURE
);
}
@Test
@Test
public
void
invokeWhenActionNameIsNotAnOperationShouldThrowException
()
public
void
invokeWhenActionNameIsNotAnOperationShouldThrowException
()
throws
MBeanException
,
ReflectionException
{
throws
MBeanException
,
ReflectionException
{
...
...
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