INT-2665 JMX Endpoints And Remote MBeanServer

JMX endpoints need a reference to an MBeanServer. The MBeanServer
is a sub-interface of MBeanServerConnection.

When connecting to a remote MBeanServer, the server is an
instanceof MBeanServerConnection, not MBeanServer.

Change the Endpoints to get a reference to an MBeanServerConnection.

Add IOException catch clauses where necessary.
This commit is contained in:
Gary Russell
2012-07-17 16:28:57 -04:00
committed by Oleg Zhurakousky
parent b39b0c2681
commit c63141f6e0
5 changed files with 225 additions and 22 deletions

View File

@@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:int-jmx="http://www.springframework.org/schema/integration/jmx"
xmlns:int="http://www.springframework.org/schema/integration"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/integration http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/integration/jmx http://www.springframework.org/schema/integration/jmx/spring-integration-jmx.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<context:mbean-server />
<context:mbean-export default-domain="foo" />
<bean id="test" class="org.springframework.integration.monitor.RemoteMBeanServerTests$Tester" />
<int-jmx:attribute-polling-channel-adapter
server="clientConnector"
attribute-name="Foo"
object-name="foo:name=test,type=RemoteMBeanServerTests.Tester"
channel="attrChannel">
<int:poller fixed-rate="2000" />
</int-jmx:attribute-polling-channel-adapter>
<int:channel id="attrChannel">
<int:queue />
</int:channel>
<int:channel id="opChannel" />
<int-jmx:operation-invoking-outbound-gateway
server="clientConnector"
operation-name="fooBar"
object-name="foo:name=test,type=RemoteMBeanServerTests.Tester"
request-channel="opChannel"
reply-channel="opOutChannel" />
<int:channel id="opOutChannel">
<int:queue />
</int:channel>
<int:channel id="publishChannel" />
<int-jmx:notification-publishing-channel-adapter
channel="publishChannel"
object-name="foo:name=pub"
default-notification-type="foo" />
<int-jmx:notification-listening-channel-adapter
server="clientConnector"
channel="publishInChannel"
object-name="foo:name=pub"/>
<int:channel id="publishInChannel">
<int:queue />
</int:channel>
<!--
To test against the MBeanServerConnection instead of the (default) MBeanServer, use
-Dspring.profiles.active=remote
-Dcom.sun.management.jmxremote.port=11099<p/>
-Dcom.sun.management.jmxremote.authenticate=false<p/>
-Dcom.sun.management.jmxremote.ssl=false<p/>
The CI build runs with the default profile.
-->
<beans profile="remote">
<bean id="clientConnector" class="org.springframework.jmx.support.MBeanServerConnectionFactoryBean">
<property name="serviceUrl" value="service:jmx:rmi://localhost/jndi/rmi://localhost:11099/jmxrmi"/>
</bean>
</beans>
<beans profile="default">
<context:mbean-server id="clientConnector"/>
</beans>
</beans>

View File

@@ -0,0 +1,110 @@
/*
* Copyright 2002-2012 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.integration.monitor;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import javax.management.Notification;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.integration.Message;
import org.springframework.integration.MessageChannel;
import org.springframework.integration.core.PollableChannel;
import org.springframework.integration.message.GenericMessage;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* To run, add JVM Args:
* <p/>
* -Dspring.profiles.active=remote
* -Dcom.sun.management.jmxremote.port=11099<p/>
* -Dcom.sun.management.jmxremote.authenticate=false<p/>
* -Dcom.sun.management.jmxremote.ssl=false<p/>
*
* @author Gary Russell
* @since 2.2
*
*/
@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
public class RemoteMBeanServerTests {
@Autowired
private PollableChannel attrChannel;
@Autowired
private MessageChannel publishChannel;
@Autowired
private PollableChannel publishInChannel;
@Autowired
private MessageChannel opChannel;
@Autowired
private PollableChannel opOutChannel;
@Test
public void testAttrPoll() throws Exception {
Message<?> message = attrChannel.receive(100000);
assertNotNull(message);
assertEquals("foo", message.getPayload());
}
@Test
public void testPublish() {
publishChannel.send(new GenericMessage<String>("bar"));
Message<?> message = publishInChannel.receive(100000);
assertNotNull(message);
assertTrue(message.getPayload() instanceof Notification);
Notification notification = (Notification) message.getPayload();
assertEquals("bar", notification.getMessage());
assertEquals("foo", notification.getType());
}
@Test
public void testOperation() {
opChannel.send(new GenericMessage<String>("foo"));
Message<?> message = opOutChannel.receive(100000);
assertNotNull(message);
assertEquals("bar", message.getPayload());
}
public static interface TesterMBean {
String getFoo();
String fooBar(String foo);
}
public static class Tester implements TesterMBean {
public String getFoo() {
return "foo";
}
public String fooBar(String foo) {
return "bar";
}
}
}