Spring MVC 同时接收 Json 和 Restful 时 Request里有 Map 解决方法

现在正在做的项目要将旧系统实现微服务,用 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]=3

Request 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 ){

    ...

    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值