@ResquestParam和HttpServletRequest 区别
来源:8-8 商品编辑之后端开发下
大尾鲈鳗100
2020-05-25
private Map<String, Object> getProductById(@RequestParam Long productId)
为什么这个是用@RequestParam,不可以用HttpServletRequest接收吗
而大多数情况下都是用
private Map<String, Object> addProduct(HttpServletRequest request)
某度了解的,不是很理解
@RequestParam
用来处理Content-Type: 为 application/x-www-form-urlencoded编码的内容。(Http协议中,如果不指定Content-Type,则默认传递的参数就是application/x-www-form-urlencoded类型)
写回答
1回答
-
翔仔
2020-05-25
同学好,具体需要看看spring源码(我新课也有讲)@RequestParam的参数其实就是从HttpServletRequest里去获取的,spring封装了相关的功能,遇到后会解析,所以只是两种不同的获取值的方式而已,课程里翔仔也讲出来让大家多了解一些:)
00
相似问题