我用swagger为spring mvc项目生成文档。
对于发布请求,可以。
string jsonTimer = File.ReadAllText(@"d:\json\json.txt");
if (jsonTimer == null)
{
return null;
}
现在,我想更改HTTP方法来获取,因为它是一个查询请求。但是,以下代码是错误的,因为GET方法没有请求正文。
@ApiOperation("post")
@PostMapping("post")
public Map<String, String> post(@RequestBody Foo foo) {
return Collections.emptyMap();
}
所以我需要将其更改为
@ApiOperation("get")
@GetMapping("get")
public Map<String, String> get(@RequestBody Foo foo) {
return Collections.emptyMap();
}
那我现在该怎么办?