Package org.springframework.messaging.converter

Examples of org.springframework.messaging.converter.MessageConverter.fromMessage()


   * @return the converted payload of the reply message (never {@code null})
   */
  @SuppressWarnings("unchecked")
  protected <T> T doConvert(Message<?> message, Class<T> targetClass) {
    MessageConverter messageConverter = getMessageConverter();
    T value = (T) messageConverter.fromMessage(message, targetClass);
    if (value == null) {
      throw new MessageConversionException(message, "Unable to convert payload [" + message.getPayload() +
          "] to type [" + targetClass + "] using converter [" + messageConverter + "]");
    }
    return value;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.