当前位置: 首页 > 面试题库 >

@RequestBody和@RequestParam有什么区别?

狄凯
2023-03-14
问题内容

我遍历了Spring文档以了解@RequestBody,他们给出了以下解释:

所述@RequestBody方法参数注释指示方法参数应绑定到HTTP请求正文的值。例如:

@RequestMapping(value = "/something", method = RequestMethod.PUT)
public void handle(@RequestBody String body, Writer writer) throws IOException {
  writer.write(body);
}

你可以通过使用将请求主体转换为方法参数HttpMessageConverterHttpMessageConverter负责从HTTP请求消息转换为对象,并从对象转换为HTTP响应主体。

DispatcherServlet支持使用DefaultAnnotationHandlerMapping和进行基于注释的处理AnnotationMethodHandlerAdapter。在Spring 3.0中,AnnotationMethodHandlerAdapter扩展为支持,@RequestBody并且HttpMessageConverter默认情况下注册了以下:

但我的困惑是他们在文档中写的句子是

@RequestBody方法参数注释指示方法参数应绑定到HTTP请求正文的值。

那是什么意思?谁能给我一个例子吗?

@RequestParamspring doc中的定义是

指示方法参数应绑定到Web请求参数的注释。在ServletPortlet环境中支持带注释的处理程序方法。

我对他们感到困惑。请帮我举个例子,说明它们之间的区别。


问题答案:

@RequestParam带注释的参数链接到特定的Servlet请求参数。参数值将转换为声明的方法参数类型。此注释指示方法参数应绑定到Web请求参数。

例如,对Spring RequestParam(s)的角度请求如下所示:

$http.post('http://localhost:7777/scan/l/register?username="Johny"&password="123123"&auth=true')
      .success(function (data, status, headers, config) {
                        ...
                    })

带有RequestParam的端点:

@RequestMapping(method = RequestMethod.POST, value = "/register")
public Map<String, String> register(Model uiModel,
                                    @RequestParam String username,
                                    @RequestParam String password,
                                    @RequestParam boolean auth,
                                    HttpServletRequest httpServletRequest) {...

@RequestBody带注释的参数链接到HTTP请求正文。使用HttpMessageConverters将参数值转换为声明的方法参数类型。此注释指示方法参数应绑定到Web请求的主体。

例如,对Spring RequestBody的Angular请求看起来像这样:

$scope.user = {
            username: "foo",
            auth: true,
            password: "bar"
        };    
$http.post('http://localhost:7777/scan/l/register', $scope.user).
                        success(function (data, status, headers, config) {
                            ...
                        })

带有RequestBody的端点:

@RequestMapping(method = RequestMethod.POST, produces = "application/json", 
                value = "/register")
public Map<String, String> register(Model uiModel,
                                    @RequestBody User user,
                                    HttpServletRequest httpServletRequest) {... 

希望这可以帮助。



 类似资料:
  • 我通过Spring文档了解了,他们给出了如下解释: 方法参数注释指示方法参数应绑定到HTTP请求主体的值。例如: 您可以使用将请求正文转换为方法参数。负责将HTTP请求消息转换为对象,并将对象转换为HTTP响应正文。 支持使用和进行基于注释的处理。在Spring 3.0中,得到扩展,以支持,并且默认情况下注册了以下: ... 但我感到困惑的是,他们写在文件上的那句话是 他们这么说是什么意思?谁能给

  • 我的理解是请求参数是方法传递所需的id,而path变量说这个变量应该在请求过程中找到

  • 问题内容: 和处理特殊字符之间有什么区别? 被空间接受。 在的情况下,被接受为。 问题答案: 是要从URI(Spring称为URI模板)中获取一些占位符 也是要从URI中获取参数—请参见Spring Reference第16.3.3.3章,使用@RequestParam将请求参数绑定到方法参数 如果该网址在2013年12月5日获得了用户1234的发票,则控制器方法如下所示: 同样,请求参数可以是可

  • 问题内容: 结合使用HTTP开发客户端和发布请求和Content-Type应用程序/ x-www-form-urlencoded 1)仅@RequestBody 请求-本地主机:8080 / SpringMVC /欢迎进入正文-name = abc Code //如预期的那样将正文命名为“ name = abc” 2)仅@RequestParam 请求-本地主机:8080 / SpringMVC

  • 我有一些应用程序在Spring boot中使用微服务架构。我已经在RestTemplate中使用@PathVariable发送了查询参数、对象、模型等。开发应用程序后,我做了一些研究,要求使用@RequestParam和@RequestBody。但我无法理解,也不知道如何使用@RequestBody和@RequestParam。使用@RequestBody而不是@PathVariable有什么好处

  • 使用带有Post请求和Content-Type Application/x-www-form-urlencoded的HTTP dev客户端 URL:localhost:8080/springmvc/welcome 正文:name=abc URL:localhost:8080/springmvc/welcome 在body-name=abc中 URL:localhost:8080/springmvc