Example usage for org.springframework.jms.support.converter MarshallingMessageConverter MarshallingMessageConverter

List of usage examples for org.springframework.jms.support.converter MarshallingMessageConverter MarshallingMessageConverter

Introduction

In this page you can find the example usage for org.springframework.jms.support.converter MarshallingMessageConverter MarshallingMessageConverter.

Prototype

public MarshallingMessageConverter(Marshaller marshaller) 

Source Link

Document

Construct a new MarshallingMessageConverter with the given Marshaller set.

Usage

From source file:org.springsource.greenbeans.examples.edawithspring.etailer.store.StoreConfiguration.java

@Bean
public MarshallingMessageConverter marshallingMessageConverter() {
    return new MarshallingMessageConverter(marshaller());
}