在没有邮递员的情况下在localhost中使用json

时间:2018-01-16 22:34:59

标签: java json spring

我们如何或不能在没有邮递员的情况下在localhost中使用JSON?

邮政编码:

@PostMapping(value = STATISTICS_URL + "/age", consumes = "application/json", produces = "application/json")
public ResponseEntity getStudentsBetweenAge(@RequestBody AgeDto ageDto) {
    if (null == ageDto.getMaxAge()) {
        return ResponseUtil.wrapOrNotFound(studentService.findByAgeGreaterThanOrEqual(ageDto.getMinAge()));
    }
    return ResponseUtil.wrapOrNotFound(studentService.findByAgeBetween(ageDto));
}

邮递员 - >

Postman

对于浏览器中的localhost,我如何在这里使用JSON:---->

enter image description here

我对春天来说有点新鲜。

1 个答案:

答案 0 :(得分:0)

我没有足够的声誉来发表评论,所以我会把它写成答案: 浏览器不会执行POST请求。您需要使用curl之类的命令行工具,或者设置包含ajax请求的最小网页,以便为您的服务执行发布。