Spring Boot 读取 JSON 参数

huangapple go评论70阅读模式
英文:

Spring boot read json parameter

问题

我尝试读取我的JSON参数,但当我尝试使用 system.out.println 读取时,我得到了这个:

%7B%22rfx%22%3Atrue%2C%22rfp%22%3Afalse%2C%22rfp_x%22%3Afalse%2C%22allclassification%22%3Afalse%2C%22eu%22%3A

我应该怎么做才能读取我的JSON文件!

@PostMapping("/filtreregioncloser")
public Iterable<Closerfprfx> gettab1(@RequestBody String filterRegion) {
    System.out.println(filterRegion);
    return null;
}
英文:

I trying to read my JSON parameter but when I try to read with system.out.println I get this

%7B%22rfx%22%3Atrue%2C%22rfp%22%3Afalse%2C%22rfp_x%22%3Afalse%2C%22allclassification%22%3Afalse%2C%22eu%22%

What should I do to read my JSON file!

@PostMapping(&quot;/filtreregioncloser&quot;)
public Iterable&lt;Closerfprfx&gt;gettab1(@RequestBody String filterRegion) {
    System.out.println(filterRegion);
	return null;      
}

答案1

得分: 1

如果您的@RequestBody中只有一个字符串,请不要发送JSON,只需发送该字符串。

英文:

If you are only geting a string in your @RequestBody dont send a JSON, just send the string

huangapple
  • 本文由 发表于 2020年8月5日 20:16:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/63265034.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定