Package | Description |
---|---|
org.springframework.web.bind |
Provides web-specific data binding functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
MissingMatrixVariableException
ServletRequestBindingException subclass that indicates that a matrix
variable expected in the method parameters of an @RequestMapping
method is not present among the matrix variables extracted from the URL. |
class |
MissingPathVariableException
ServletRequestBindingException subclass that indicates that a path
variable expected in the method parameters of an @RequestMapping
method is not present among the URI variables extracted from the URL. |
class |
MissingRequestCookieException
ServletRequestBindingException subclass that indicates
that a request cookie expected in the method parameters of an
@RequestMapping method is not present. |
class |
MissingRequestHeaderException
ServletRequestBindingException subclass that indicates
that a request header expected in the method parameters of an
@RequestMapping method is not present. |
class |
MissingRequestValueException
Base class for
ServletRequestBindingException exceptions that could
not bind because the request value is required but is either missing or
otherwise resolves to null after conversion. |
class |
MissingServletRequestParameterException
ServletRequestBindingException subclass that indicates a missing parameter. |
class |
ServletRequestBindingException
Fatal binding exception, thrown when we want to
treat binding exceptions as unrecoverable.
|
class |
UnsatisfiedServletRequestParameterException
ServletRequestBindingException subclass that indicates an unsatisfied
parameter condition, as typically expressed using an @RequestMapping
annotation at the @Controller type level. |