Message<String> message = new GenericMessage<String>(MESSAGE_BODY, maps);
requestChannel.send(message);
AbstractPollableChannel responseChannel = (AbstractPollableChannel) applicationContext.getBean("responseChannel");
Message responseMessage = responseChannel.receive();
String result = (String) responseMessage.getPayload();
assertEquals("Get the wrong result", MESSAGE_BODY + " is processed", result);
}