在Spring中将响应JSON映射到DTO

时间:2017-06-26 20:47:11

标签: java json spring spring-boot dto

我有API以这种格式返回JSON:

{
"response": {
    "GeoObjectCollection": {
        "featureMember": [
            {
                "GeoObject": {
                    "Point": {
                        "pos": "37.611347 55.760241"
                    }
                }
            },
            {
                "GeoObject": {
                    "Point": {
                        "pos": "37.593965 55.771575"
                    }
                }
            }
        ]
    }
}
}

我想将此JSON对象转换为Spring Boot App中的DTO模型。我怎么能这样做?

我需要创建像响应,GeoObjectCollection,GeoObject等类,或者它变得更容易吗?

我的app结构包含服务,模型,控制器。

0 个答案:

没有答案