INT-3869: Fix MBeanServer Detection
JIRA: https://jira.spring.io/browse/INT-3869 When using `@EnableIntegrationMBeanExport` with no `server` property, the `IntegrationMBeanExportConfiguration` incorrectly created a new `MBeanServer` instead of attempting to locate an existing one. Use the `SpecificPlatform` logic from `MBeanExportConfiguration` to locate a specific server on `WebSphere` and `WebLogic`; otherwise defer to `JmxUtils.locateMBeanServer()` in the exporter's initialization method. Add a test to verify the same server is used in multiple contexts. * Fix `ConnectionFactoryTests` regarding new `MessageProducerSupport` logic
This commit is contained in:
committed by
Artem Bilan
parent
996e6bb969
commit
d8ad38d8ea
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2015 the original author or authors.
|
||||
* Copyright 2002-2016 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.
|
||||
@@ -53,6 +53,7 @@ import org.springframework.beans.DirectFieldAccessor;
|
||||
import org.springframework.beans.factory.BeanFactory;
|
||||
import org.springframework.context.ApplicationEvent;
|
||||
import org.springframework.context.ApplicationEventPublisher;
|
||||
import org.springframework.integration.channel.NullChannel;
|
||||
import org.springframework.integration.context.IntegrationContextUtils;
|
||||
import org.springframework.integration.ip.event.IpIntegrationEvent;
|
||||
import org.springframework.integration.ip.tcp.TcpReceivingChannelAdapter;
|
||||
@@ -128,6 +129,7 @@ public class ConnectionFactoryTests extends LogAdjustingTestSupport {
|
||||
when(bf.getBean(IntegrationContextUtils.TASK_SCHEDULER_BEAN_NAME, TaskScheduler.class)).thenReturn(scheduler);
|
||||
serverFactory.setBeanFactory(bf);
|
||||
TcpReceivingChannelAdapter adapter = new TcpReceivingChannelAdapter();
|
||||
adapter.setOutputChannel(new NullChannel());
|
||||
adapter.setConnectionFactory(serverFactory);
|
||||
adapter.start();
|
||||
assertTrue("Listening event not received", serverListeningLatch.await(10, TimeUnit.SECONDS));
|
||||
|
||||
Reference in New Issue
Block a user