All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.espr.mvc.view.json.JacksonView Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package it.espr.mvc.view.json;

import com.fasterxml.jackson.databind.ObjectMapper;

public class JacksonView extends JsonView {

	private ObjectMapper objectMapper;

	public JacksonView(ObjectMapper objectMapper) {
		this.objectMapper = objectMapper;
	}

	@Override
	public String toString() {
		return "Jackson JSonView";
	}

	@Override
	protected String out(Object data) throws Exception {
		return this.objectMapper.writeValueAsString(data);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy