gpt4 book ai didi

java - Spring 网 : Controllers with annotated mappings - Getting HttpServletRequest/form data

转载 作者:搜寻专家 更新时间:2023-10-31 19:58:52 25 4
gpt4 key购买 nike

我有一个使用注释映射的 Controller ;客户端应用程序正在访问该 URL,它发送 POST/GET 数据。如何在此方法中访问请求对象?

最佳答案

只需在方法中添加一个 HttpServletRequest 类型的参数即可。

检查 13.11.4。 the spring mvc docs 中支持的处理程序方法参数和返回类型

所以:

public String yourMethod(HttpServletRequest request) {..}

您可以通过以下方式使用特定的请求参数:

public String yourMethod(@RequestParam("petId") int petId) {..}

关于java - Spring 网 : Controllers with annotated mappings - Getting HttpServletRequest/form data,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2604931/

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