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类型)
SSM商铺V1.0,解决毕设痛点;SpringBoot商铺V2.0,满足工作刚需
了解课程