使用 Jackson 将 Map 转换为 JSON [英] Convert Map to JSON using Jackson

查看:158
本文介绍了使用 Jackson 将 Map 转换为 JSON的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用 Jackson 将 Map 转换为有效的 JSON?

How can I convert a Map to a valid JSON using Jackson?

我正在通过 Spring Boot REST Post 方法使用 Google 的 GSON...

I am doing it using Google's GSON via a Spring Boot REST Post method...

这是 RESTful Web 服务:

Here's the RESTful Web Service:

import java.util.Map;

import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.JsonParser;
import com.google.gson.Gson;

@RestController
@RequestMapping("/myservice")
public class ValidationService {    

    @RequestMapping(value="/validate", method = RequestMethod.POST)
    public void validate(@RequestBody Map<String, Object> payload) throws Exception {
        Gson gson = new Gson();
        String json = gson.toJson(payload); 
        System.out.println(json);
    }
}

所以,当我使用这个调用它时:

So, when I invoke it using this:

curl -H "Accept: application/json" -H "Content-type: application/json" 
-X POST -d '{"name":"value"}' http://localhost:8080/myservice/validate

将以下内容接收到标准输出(这正是我想要的):

Receive the following to stdout (this is exactly what I want):

{"name":"value"}

是否有更好的方法使用 Jackson 而不是 Google 的 Gson 来做到这一点和/或者我是否完全以错误的方式进行了处理?

Is there a better way to do this using Jackson instead of Google's Gson and / or am I going about it the wrong way altogether?

推荐答案

您可以使用 Jackson 将 Map 转换为 JSON,如下所示:

You can convert Map to JSON using Jackson as follows:

Map<String,String> payload = new HashMap<>();
payload.put("key1","value1");
payload.put("key2","value2");

String json = new ObjectMapper().writeValueAsString(payload);
System.out.println(json);

这篇关于使用 Jackson 将 Map 转换为 JSON的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆