Example usage for org.springframework.http.converter AbstractHttpMessageConverter subclass-usage

List of usage examples for org.springframework.http.converter AbstractHttpMessageConverter subclass-usage

Introduction

In this page you can find the example usage for org.springframework.http.converter AbstractHttpMessageConverter subclass-usage.

Usage

From source file net.eusashead.hateoas.hal.http.converter.HalHttpMessageConverter.java

/**
 * {@link HttpMessageConverter} implementation
 * that handles HAL representations 
 * (application/hal+json and (application/hal+xml)
 * using the HALBuilder {@link Representation}
 * @author patrickvk

From source file org.springframework.http.converter.json.MappingJackson2HttpMessageConverter.java

/**
 * Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter}
 * that can read and write JSON using <a href="http://jackson.codehaus.org/">Jackson 2's</a> {@link ObjectMapper}.
 *
 * <p>This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances.
 *

From source file com.wq.common.web.springmvc.MappingJackson2HttpMessageConverter.java

/**
 * Implementation of
 * {@link org.springframework.http.converter.HttpMessageConverter
 * HttpMessageConverter} that can read and write JSON using <a
 * href="http://jackson.codehaus.org/">Jackson 2's</a> {@link ObjectMapper}.
 * 

From source file org.resthub.web.converter.MappingJackson2XmlHttpMessageConverter.java

/**
 * Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter} that can read
 * and write JSON using <a href="http://jackson.codehaus.org/">Jackson 2's</a> {@link ObjectMapper}.
 * 
 * <p>
 * This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances.

From source file com.p5solutions.core.json.JsonHttpMessageConverter.java

/**
 * JsonHttpMessageConverter: {@link HttpMessageConverter} that handles JSON
 * www.json.org data. One way to inject this into the
 * {@link AnnotationMethodHandlerAdapter} is to use the
 * {@link JsonConverterConfigurer}.
 * 

From source file org.resthub.web.converter.MappingJackson2JsonHttpMessageConverter.java

/**
 * Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter} that can read
 * and write JSON using <a href="http://jackson.codehaus.org/">Jackson 2's</a> {@link ObjectMapper}.
 * 
 * <p>
 * This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances.

From source file net.solarnetwork.web.support.SimpleXmlHttpMessageConverter.java

/**
 * {@link HttpMessageConverter} that marshals objects into XML documents.
 * 
 * @author matt
 * @version 1.0
 */

From source file com.fiadot.springjsoncrypt.json.CryptMappingJacson2HttpMessageConverter.java

/**
 * Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter} that
 * can read and write JSON using <a href="http://jackson.codehaus.org/">Jackson 2.x's</a> {@link ObjectMapper}.
 *
 * <p>This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances.
 *

From source file net.solarnetwork.web.support.SimpleCsvHttpMessageConverter.java

/**
 * {@link HttpMessageConverter} that marshals objects into CSV documents.
 * 
 * @author matt
 * @version 1.1
 */

From source file demo.SourceHttpMessageConverter.java

/**
 * Implementation of {@link org.springframework.http.converter.HttpMessageConverter}
 * that can read and write {@link Source} objects.
 *
 * @author Arjen Poutsma
 * @author Rossen Stoyanchev