Package org.springframework.web.servlet.view.json

Source Code of org.springframework.web.servlet.view.json.AbstractJackson2View

/*
* Copyright 2002-2014 the original author or authors.
*
* 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 org.springframework.web.servlet.view.json;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.fasterxml.jackson.annotation.JsonView;
import com.fasterxml.jackson.core.JsonEncoding;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;

import org.springframework.http.converter.json.MappingJacksonValue;
import org.springframework.util.Assert;
import org.springframework.web.servlet.view.AbstractView;

/**
* Abstract base class for Jackson based and content type independent
* {@link AbstractView} implementations.
*
* <p>Compatible with Jackson 2.1 and higher.
*
* @author Jeremy Grelle
* @author Arjen Poutsma
* @author Rossen Stoyanchev
* @author Juergen Hoeller
* @author Sebastien Deleuze
* @since 4.1
*/
public abstract class AbstractJackson2View extends AbstractView {

  private ObjectMapper objectMapper;

  private JsonEncoding encoding = JsonEncoding.UTF8;

  private Boolean prettyPrint;

  private boolean disableCaching = true;

  protected boolean updateContentLength = false;


  protected AbstractJackson2View(ObjectMapper objectMapper, String contentType) {
    this.objectMapper = objectMapper;
    setContentType(contentType);
    setExposePathVariables(false);
  }

  /**
   * Set the {@code ObjectMapper} for this view.
   * If not set, a default {@link ObjectMapper#ObjectMapper() ObjectMapper} will be used.
   * <p>Setting a custom-configured {@code ObjectMapper} is one way to take further control of
   * the JSON serialization process. The other option is to use Jackson's provided annotations
   * on the types to be serialized, in which case a custom-configured ObjectMapper is unnecessary.
   */
  public void setObjectMapper(ObjectMapper objectMapper) {
    Assert.notNull(objectMapper, "'objectMapper' must not be null");
    this.objectMapper = objectMapper;
    configurePrettyPrint();
  }

  /**
   * Return the {@code ObjectMapper} for this view.
   */
  public final ObjectMapper getObjectMapper() {
    return this.objectMapper;
  }

  /**
   * Set the {@code JsonEncoding} for this view.
   * By default, {@linkplain JsonEncoding#UTF8 UTF-8} is used.
   */
  public void setEncoding(JsonEncoding encoding) {
    Assert.notNull(encoding, "'encoding' must not be null");
    this.encoding = encoding;
  }

  /**
   * Return the {@code JsonEncoding} for this view.
   */
  public final JsonEncoding getEncoding() {
    return this.encoding;
  }

  /**
   * Whether to use the default pretty printer when writing the output.
   * This is a shortcut for setting up an {@code ObjectMapper} as follows:
   * <pre class="code">
   * ObjectMapper mapper = new ObjectMapper();
   * mapper.configure(SerializationFeature.INDENT_OUTPUT, true);
   * </pre>
   * <p>The default value is {@code false}.
   */
  public void setPrettyPrint(boolean prettyPrint) {
    this.prettyPrint = prettyPrint;
    configurePrettyPrint();
  }

  private void configurePrettyPrint() {
    if (this.prettyPrint != null) {
      this.objectMapper.configure(SerializationFeature.INDENT_OUTPUT, this.prettyPrint);
    }
  }

  /**
   * Set the attribute in the model that should be rendered by this view.
   * When set, all other model attributes will be ignored.
   */
  public abstract void setModelKey(String modelKey);

  /**
   * Disables caching of the generated JSON.
   * <p>Default is {@code true}, which will prevent the client from caching the generated JSON.
   */
  public void setDisableCaching(boolean disableCaching) {
    this.disableCaching = disableCaching;
  }

  /**
   * Whether to update the 'Content-Length' header of the response. When set to
   * {@code true}, the response is buffered in order to determine the content
   * length and set the 'Content-Length' header of the response.
   * <p>The default setting is {@code false}.
   */
  public void setUpdateContentLength(boolean updateContentLength) {
    this.updateContentLength = updateContentLength;
  }

  @Override
  protected void prepareResponse(HttpServletRequest request, HttpServletResponse response) {
    setResponseContentType(request, response);
    response.setCharacterEncoding(this.encoding.getJavaName());
    if (this.disableCaching) {
      response.addHeader("Pragma", "no-cache");
      response.addHeader("Cache-Control", "no-cache, no-store, max-age=0");
      response.addDateHeader("Expires", 1L);
    }
  }

  @Override
  protected void renderMergedOutputModel(Map<String, Object> model, HttpServletRequest request,
      HttpServletResponse response) throws Exception {

    OutputStream stream = (this.updateContentLength ? createTemporaryOutputStream() : response.getOutputStream());
    Object value = filterAndWrapModel(model, request);

    writeContent(stream, value);
    if (this.updateContentLength) {
      writeToResponse(response, (ByteArrayOutputStream) stream);
    }
  }

  /**
   * Filter and optionally wrap the model in {@link MappingJacksonValue} container.
   * @param model the model, as passed on to {@link #renderMergedOutputModel}
   * @param request current HTTP request
   * @return the wrapped or unwrapped value to be rendered
   */
  protected Object filterAndWrapModel(Map<String, Object> model, HttpServletRequest request) {
    Object value = filterModel(model);
    Class<?> serializationView = (Class<?>) model.get(JsonView.class.getName());
    if (serializationView != null) {
      MappingJacksonValue container = new MappingJacksonValue(value);
      container.setSerializationView(serializationView);
      value = container;
    }
    return value;
  }

  /**
   * Filter out undesired attributes from the given model.
   * The return value can be either another {@link Map} or a single value object.
   * @param model the model, as passed on to {@link #renderMergedOutputModel}
   * @return the value to be rendered
   */
  protected abstract Object filterModel(Map<String, Object> model);

  /**
   * Write the actual JSON content to the stream.
   * @param stream the output stream to use
   * @param object the value to be rendered, as returned from {@link #filterModel}
   * @throws IOException if writing failed
   */
  protected void writeContent(OutputStream stream, Object object)
      throws IOException {

    JsonGenerator generator = this.objectMapper.getFactory().createGenerator(stream, this.encoding);

    writePrefix(generator, object);
    Class<?> serializationView = null;
    Object value = object;

    if (value instanceof MappingJacksonValue) {
      MappingJacksonValue container = (MappingJacksonValue) value;
      value = container.getValue();
      serializationView = container.getSerializationView();
    }
    if (serializationView != null) {
      this.objectMapper.writerWithView(serializationView).writeValue(generator, value);
    }
    else {
      this.objectMapper.writeValue(generator, value);
    }
    writeSuffix(generator, object);
    generator.flush();
  }

  /**
   * Write a prefix before the main content.
   * @param generator the generator to use for writing content.
   * @param object the object to write to the output message.
   */
  protected void writePrefix(JsonGenerator generator, Object object) throws IOException {

  }

  /**
   * Write a suffix after the main content.
   * @param generator the generator to use for writing content.
   * @param object the object to write to the output message.
   */
  protected void writeSuffix(JsonGenerator generator, Object object) throws IOException {

  }

}
TOP

Related Classes of org.springframework.web.servlet.view.json.AbstractJackson2View

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.