gpt4 book ai didi

java - create方法的返回结果和201状态码

转载 作者:行者123 更新时间:2023-11-30 06:59:13 26 4
gpt4 key购买 nike

如何在 rest api 中返回创建方法的结果以及 201 状态码?在此代码中,状态代码为 200,我如何将其更改为 201?

    Path("/student")    
public class MyRestApi{

@Path("/create")
public Response create(){
Student student = new Student;
//insert in data source
Return Response.ok(student).build();
}
}

最佳答案

您可以使用 ResponseBuilder.status(int)Response.status(int) 方法并将其发送为:-

Response.ok(student).status(201).build(); // 201 is the response code

Response.status(201).ok(student).build(); // 201 is the response code

关于java - create方法的返回结果和201状态码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31747966/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com