@RequestParam 是 Spring 框架中用于处理 HTTP 请求参数的注解。它用于将请求中的参数映射到控制器方法的参数上。当客户端通过 URL 传递参数时,@RequestParam 可以用于获取这些参数的值。
以下是一个简单的例子,是在Spring控制器中使用 @RequestParam~
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; @Controller @RequestMapping("/example") public class ExampleController { @RequestMapping("/greet") @ResponseBody public String greet(@RequestParam(name = "name", defaultValue = "Guest") String name) { return "Hello, " + name + "!"; } }
在上面的例子中:
@RequestMapping("/example") 定义了控制器的基本路径。
@RequestMapping("/greet") 定义了处理 /example/greet 路径的方法。
@RequestParam(name = "name", defaultValue = "Guest") 表示该方法接收一个名为 "name" 的请求参数,如果请求中没有传递该参数,使用默认值 "Guest"。
例如,如果您访问 /example/greet?name=John,则将返回 "Hello, John!";如果没有提供参数,将返回 "Hello, Guest!"。
请注意,@RequestParam 还有其他属性哈,可以用于指定参数的必须性、默认值等。此外,它还可以处理多值参数,比如数组或列表。
这是一个简单而常见的用法,但在实际应用中,@RequestParam 可以与其他注解和特性一起使用,以处理更复杂的场景。