![JAR search and dependency download from the Maven repository](/logo.png)
com.comcast.drivethru.spring.JsonCerealHttpMessageConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of drive-thru Show documentation
Show all versions of drive-thru Show documentation
Drive-Thru is a helper utility for making HTTP requests
/**
* Copyright 2013 Comcast Cable Communications Management, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.comcast.drivethru.spring;
import org.springframework.http.MediaType;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.ResponseBody;
import com.comcast.cereal.engines.JsonCerealEngine;
/**
* A {@link HttpMessageConverter} that can be used with spring that will do the internal conversion
* using a {@link JsonCerealEngine}. When configured, this will convert all {@link ResponseBody} and
* {@link RequestBody} objects that use the content type of "application/json".
*
*
* To use this in a spring web application, simply add this code to your
* app-context.xml
:
*
*
*
* <mvc:annotation-driven>
* <mvc:message-converters register-defaults="false">
* <bean class="com.comcast.tvx.megahttp.spring.JsonCerealHttpMessageConverter" />
* </mvc:message-converters>
* </mvc:annotation-driven>
*
*
*
* To configure to use an existing (and shared) {@link JsonCerealEngine} named "jsonEngine", use the
* following configuration pattern:
*
*
*
* <mvc:annotation-driven>
* <mvc:message-converters register-defaults="false">
* <bean class="com.comcast.tvx.megahttp.spring.JsonCerealHttpMessageConverter">
* <constructor-arg index="0" ref="jsonEngine" />
* </bean>
* </mvc:message-converters>
* </mvc:annotation-driven>
*
*
* @see MediaType#APPLICATION_JSON
*
* @author Clark Malmgren
*/
public class JsonCerealHttpMessageConverter extends AbstractCerealHttpMessageConverter {
/**
* Default constructor that will use a new {@link JsonCerealEngine} without pretty print to
* conserve size.
*/
public JsonCerealHttpMessageConverter() {
this(new JsonCerealEngine(false));
}
/**
* Construct a new {@link JsonCerealHttpMessageConverter} that will delegate to the given
* engine
.
*
* @param engine
* the engine to delegate to
*/
public JsonCerealHttpMessageConverter(JsonCerealEngine engine) {
super(engine, MediaType.APPLICATION_JSON);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy