@RequestParam

Posted leavesss

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@RequestParam相关的知识,希望对你有一定的参考价值。

写代码好久了之后很多东西忘记了,混淆了,今天重新记录一下这个注解

1.form表单提交,name属性与controller参数对齐,则不用这个注解

2.需要  例如

1.public Long login(@RequestParam Map<String, String> map) {

2.比如说你只传递了一个参数
public String main(Long userId) {

url:main?a=1 这个时候就不用加注解

以上是关于@RequestParam的主要内容,如果未能解决你的问题,请参考以下文章

浅析 @PathVariable 和 @RequestParam

@RequestParam

@PathVariable 和 @RequestParam 不能一起工作

Spring MVC 的@RequestParam注解和request.getParameter("XXX")

@RequestParam 注解的使用——Spring系列知识学习笔记

@RequestMapping与@RequestParam注解