@RequestParam: 顾名思义,获取请求参数的
时间: 2024-06-21 19:01:52 浏览: 97
request请求获取参数的实现方法(post和get两种方式)
`@RequestParam` 是Spring MVC框架中的一个注解,用于从HTTP请求的URL参数或表单数据中获取参数。它通常与`@Controller`或`@RequestMapping`一起使用在处理方法上,以简化参数绑定过程。当你需要从GET请求或POST请求的参数中读取值时,可以这样做:
```java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class MyController {
@GetMapping("/example")
public String handleRequest(@RequestParam String myParam) {
return "You submitted: " + myParam;
}
}
```
在这个例子中,`handleRequest`方法会接收到名为`myParam`的参数,无论它是来自GET请求的查询字符串还是POST请求的表单数据。
阅读全文