br.edu.ifpb.utils.JsonView.java Source code

Java tutorial

Introduction

Here is the source code for br.edu.ifpb.utils.JsonView.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package br.edu.ifpb.utils;

import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.view.json.MappingJackson2JsonView;

import java.util.Map;

public class JsonView {

    public static ModelAndView returnJsonFromMap(Map<String, String> modelMap) {

        MappingJackson2JsonView jsonConverter = new MappingJackson2JsonView();

        ModelAndView mav = new ModelAndView(jsonConverter);
        mav.addAllObjects(modelMap);

        return mav;
    }
}