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 de.escalon.hypermedia.spring.xhtml.XhtmlResourceMessageConverter.java

/**
 * Message converter which represents a restful API as xhtml which can be used by the browser or a rest client. Converts
 * java beans and spring-hateoas Resources to xhtml and maps the body of x-www-form-urlencoded requests to RequestBody
 * method parameters. The media-type xhtml does not officially support methods other than GET or POST, therefore we must
 * "tunnel" other methods when this converter is used with the browser. Spring's {@link
 * org.springframework.web.filter.HiddenHttpMethodFilter} allows to do that with relative ease.

From source file org.appverse.web.framework.backend.frontfacade.json.controllers.CustomMappingJacksonHttpMessageConverter.java

@Component
public class CustomMappingJacksonHttpMessageConverter extends AbstractHttpMessageConverter<Object> {

    private final Logger logger = LoggerFactory.getLogger(CustomMappingJacksonHttpMessageConverter.class);

    public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");

From source file com.github.hateoas.forms.spring.xhtml.XhtmlResourceMessageConverter.java

/**
 * Message converter which represents a restful API as xhtml which can be used by the browser or a rest client.
 * Converts java beans and spring-hateoas Resources to xhtml and maps the body of x-www-form-urlencoded
 * requests to RequestBody method parameters.
 * The media-type xhtml does not officially support methods other than GET or POST, therefore we must &quot;tunnel&quot;
 * other methods when this converter is used with the browser.

From source file hornet.framework.web.converter.AbstractHornetHttpMessageConverter.java

/**
 * @author MEAE - Ministre de l'Europe et des Affaires trangres
 * 
 *        Types gnriques :
 *        <ul>
 *        <li>T : Type de l'objet  convertir</li>

From source file org.springframework.flex.http.AmfHttpMessageConverter.java

/**
 * Implementation of {@link org.springframework.http.converter.HttpMessageConverter HttpMessageConverter}
 * that can read and write AMF using BlazeDS's AMF serialization/deserialization APIs. 
 *
 * <p>This converter can be used to bind to typed beans, or untyped {@link java.util.HashMap HashMap} instances.
 *