Package | Description |
---|---|
org.springframework.web.bind.annotation |
Annotations for binding requests to controllers and handler methods
as well as for binding request parameters to method arguments.
|
Class and Description |
---|
ControllerAdvice
Specialization of
@Component for classes that declare
@ExceptionHandler , @InitBinder , or
@ModelAttribute methods to be shared across
multiple @Controller classes. |
Mapping
Meta annotation that indicates a web mapping annotation.
|
RequestMapping
Annotation for mapping web requests onto specific handler classes and/or
handler methods.
|
RequestMethod
Java 5 enumeration of HTTP request methods.
|
ResponseBody
Annotation that indicates a method return value should be bound to the web
response body.
|