文章目录
前言
Postman是一款强大的接口测试工具。
一、编写接口
@PostMapping("/studentScore")@ResponseBodyprivateStringstudentScore(@RequestBodyStudentScore studentScore,@RequestParam("flag")Boolean flag)throwsException{System.out.println(studentScore);System.out.println(flag);return"success";}
二、测试
1.编写测试案例
2.控制台输出
代码如下(示例):
StudentScore{id=100, studentId=123, curriculumId=456, score=100}
true
总结
标签:
postman
本文转载自: https://blog.csdn.net/qq_44824164/article/details/130396215
版权归原作者 你知道“铁甲小宝”吗丶 所有, 如有侵权,请联系我们删除。
版权归原作者 你知道“铁甲小宝”吗丶 所有, 如有侵权,请联系我们删除。