gpt4 book ai didi

java - 在 Spring Boot 中使用自定义代码进行响应

转载 作者:行者123 更新时间:2023-12-02 01:00:53 27 4
gpt4 key购买 nike

我正在使用 Spring Boot 创建一个 Web 服务器。现在作为响应,我想在某些 api 访问服务器时发送我的状态代码。我想创建自己的状态代码。就像我不想发送 401 一样,而是想发送 421。

响应.状态(421)像这样的东西。

最佳答案

这是您要找的吗?

@GetMapping("/test")
public ResponseEntity<String> someTest() {
return ResponseEntity
.status(421)
.contentType(MediaType.TEXT_PLAIN)
.body("go away world");
}

测试...

$ curl -I http://localhost:8080/test
HTTP/1.1 421
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: SAMEORIGIN
Content-Type: text/plain
Content-Length: 11
Date: Tue, 03 Sep 2019 12:23:58 GMT

关于java - 在 Spring Boot 中使用自定义代码进行响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57769741/

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