org.springframework.integration.support.DefaultMessageBuilderFactory Java Examples

The following examples show how to use org.springframework.integration.support.DefaultMessageBuilderFactory. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StreamListenerHandlerMethodTests.java    From spring-cloud-stream with Apache License 2.0 4 votes vote down vote up
@StreamListener(Sink.INPUT)
@SendTo(ROUTER_QUEUE)
public Message<String> convertMessageBody(Message<String> message) {
	return new DefaultMessageBuilderFactory()
			.withPayload(message.getPayload().toUpperCase()).build();
}
 
Example #2
Source File: SecurityPubSubChannel.java    From tutorials with MIT License 4 votes vote down vote up
public Message<String> buildNewMessage(String content, Message<?> message) {
    DefaultMessageBuilderFactory builderFactory = new DefaultMessageBuilderFactory();
    MessageBuilder<String> messageBuilder = builderFactory.withPayload(content);
    messageBuilder.copyHeaders(message.getHeaders());
    return messageBuilder.build();
}