File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
springboot-starter/src/main/java/com/codingapi/springboot/framework/rest/param Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change 11package com .codingapi .springboot .framework .rest .param ;
22
33import com .alibaba .fastjson .JSONObject ;
4- import org .springframework .http .HttpHeaders ;
54import org .springframework .util .LinkedMultiValueMap ;
65import org .springframework .util .MultiValueMap ;
76
@@ -50,7 +49,7 @@ public MultiValueMap<String, Object> toFormRequest() {
5049 }
5150
5251 public MultiValueMap <String ,String > toGetRequest (){
53- MultiValueMap <String ,String > request = new HttpHeaders ();
52+ MultiValueMap <String ,String > request = new LinkedMultiValueMap <> ();
5453 for (String key : mapBody .keySet ()){
5554 List <Object > objectList = mapBody .get (key );
5655 List <String > stringList = new ArrayList <>();
You can’t perform that action at this time.
0 commit comments