解决SpringMVC同时接收Json和Restful时Request里有Map的问题
程序员文章站
2024-02-20 17:26:40
现在正在做的项目要将旧系统实现微服务,用 springboot 来做,有时候同一个 request 就要同时接收来自 ajax 的 json 数据和 restful 的数据...
现在正在做的项目要将旧系统实现微服务,用 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 ){ ... }
以上这篇解决springmvc同时接收json和restful时request里有map的问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: Java可变参数列表详解
下一篇: 详解spring封装hbase的代码实现