时间:2021-05-19
现在正在做的项目要将旧系统实现微服务,用 SpringBoot 来做,有时候同一个 Request 就要同时接收来自 ajax 的 Json 数据和 Restful 的数据,如果里面还包含 Map 怎么办呢? 最近就只想出了这种办法,仅供参考。如有错误请指正,谢谢。
代码
Json 数据
{ "fieldMap": { "middleName": "1", "mailingAddress": "2", "mobilenumber": "3" }}Restful URL
//注意要让 @ModelAttribute RequestDTO 自动封装成 Map 的话要像下面的format。http://localhost:8080/hello?fieldMap[middleName]=1&fieldMap[mailingAddress]=2&fieldMap[mobilenumber]=3Request DTO
public class RequestDTO { private HashMap<String, String> fieldMap; public HashMap<String, String> getFieldMap() { return fieldMap; } public void setFieldMap(HashMap<String, String> fieldMap) { this.fieldMap = fieldMap; }}Spring Mvc 代码
//接收 Json 数据, consumes = "application/json" 来区分同一个请求是用json还是其他@RequestMapping(method = { RequestMethod.POST }, value = { "/hello" }, consumes = "application/json")public final void requestByJson( final HttpServletRequest httpRequest, final HttpServletResponse httpResponse, @RequestBody final RequestDTO requestDTO) { ...}//接收 Restful 数据, @ModelAttribute 将param配对成 RequestDTO@RequestMapping(method = { RequestMethod.POST }, value = { "/hello" })public final void restfulRequest( final HttpServletRequest httpRequest, final HttpServletResponse httpResponse, @ModelAttribute final RequestDTO requestDTO ){ ... }以上这篇解决SpringMVC同时接收Json和Restful时Request里有Map的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
对于json对象类型(即JsonObject)的数据,springMVC主要有以下几种方式接收:1.通过Map接收?123456@RequestMapping(
springMvc直接接收json数据自动转化为Map,必须加上@RequestBody注解并且前台ajax发送请求的时候需要对数据进行格式化$.ajax({t
本文通过代码实例介绍springmvc接收json数据的方法,具体详情如下所示:接收JSON使用@RequestBody注解前台只需要向Controller提交
返回Json时格式化日期Date第一步:创建CustomObjectMapper类/***解决SpringMVC使用@ResponseBody返回json时,日
最近使用ajax接收springmvc传过来的json数据时总是出现parseerror的错误,错误源码如下:前端:$.ajax({type:'POST',ur