前言
Postman是一款强大的接口测试工具。
一、编写接口
@PostMapping("/studentScore")
@ResponseBody
private String studentScore(@RequestBody StudentScore studentScore, @RequestParam("flag") Boolean flag) throws Exception {
System.out.println(studentScore);
System.out.println(flag);
return "success";
}
二、测试
1.编写测试案例
2.控制台输出
代码如下(示例):文章来源:https://www.toymoban.com/news/detail-607914.html
StudentScore{id=100, studentId=123, curriculumId=456, score=100}
true
总结
个人感觉flag
字段放到StudentScore
对象中会比较方便处理;
回到顶部文章来源地址https://www.toymoban.com/news/detail-607914.html
到了这里,关于Postman测试@RequestBody和@RequestParam参数案例的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!