欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

解决SpringMVC同时接收Json和Restful时Request里有Map的问题

时间:2020-12-07 18:01:43|栏目:JAVA代码|点击:

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

 ...

 }

上一篇:Java多线程及分布式爬虫架构原理解析

栏    目:JAVA代码

下一篇:Springboot Activemq整合过程代码图解

本文标题:解决SpringMVC同时接收Json和Restful时Request里有Map的问题

本文地址:http://www.codeinn.net/misctech/30472.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有