我可以在 Spring Boot 中使用请求正文执行 GET 吗?

发布于 2025-01-12 09:47:22 字数 289 浏览 0 评论 0原文

我正在使用 Spring Boot 和 Spring MVC,我需要使用请求正文进行 GET。这可能吗?

我尝试过这个,但它不起作用。我得到 404。

@RestController
@RequestMapping("/api")
public class HomeController {

    @GetMapping("/v1/foo")
    public ApiRes postBody(@RequestBody ApiReq apiReq) {
        ...
    }
}

I'm using Spring Boot and Spring MVC and I need to make a GET with a request body. Is this possible?

I tried this but it's not working. I get 404.

@RestController
@RequestMapping("/api")
public class HomeController {

    @GetMapping("/v1/foo")
    public ApiRes postBody(@RequestBody ApiReq apiReq) {
        ...
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

潦草背影 2025-01-19 09:47:22

从技术上讲这是可能的,但它违反了 HTTP API 设计指南。
请求正文只能用于 POST 或 PUT。

有关更多信息:https://swagger.io/resources/articles /api-设计中的最佳实践/

Technically it is possible but it is against the HTTP API Design Guidelines.
Request-Bodys should only be used for POST or PUT.

For further information: https://swagger.io/resources/articles/best-practices-in-api-design/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文