| This version is still in development and is not considered stable yet. For the latest stable version, please use Spring Framework 6.2.12! | 
@RequestAttribute
Similar to @SessionAttribute, you can use the @RequestAttribute annotations to
access pre-existing request attributes created earlier (for example, by a Servlet Filter
or HandlerInterceptor):
- 
Java 
- 
Kotlin 
@GetMapping("/")
public String handle(@RequestAttribute Client client) { (1)
	// ...
}| 1 | Using the @RequestAttributeannotation. | 
@GetMapping("/")
fun handle(@RequestAttribute client: Client): String { (1)
	// ...
}| 1 | Using the @RequestAttributeannotation. |