@RequestParam String name 和HttpServletRequest.getParameter("name")获取的参数一样吗
时间: 2024-06-01 16:13:06 浏览: 72
获取request的参数
是的,@RequestParam String name 和 HttpServletRequest.getParameter("name") 获取的参数是一样的。两者都可以获取请求中的参数值。但是@RequestParam注解可以更方便地将参数值绑定到方法的参数中,而且@RequestParam还支持一些额外的属性,比如设置参数是否必须、设置默认值等。
阅读全文