public class ObjectError extends DefaultMessageSourceResolvable
See the DefaultMessageCodesResolver javadoc for details on
how a message code list is built for an ObjectError.
FieldError,
DefaultMessageCodesResolver,
序列化表格| 构造器和说明 |
|---|
ObjectError(String objectName,
String defaultMessage)
Create a new instance of the ObjectError class.
|
ObjectError(String objectName,
String[] codes,
Object[] arguments,
String defaultMessage)
Create a new instance of the ObjectError class.
|
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
contains(Class<?> sourceType)
Check the source behind this error: possibly an
Exception
(typically PropertyAccessException)
or a Bean Validation ConstraintViolation. |
boolean |
equals(Object other) |
String |
getObjectName()
Return the name of the affected object.
|
int |
hashCode() |
String |
toString()
The default implementation exposes the attributes of this MessageSourceResolvable.
|
<T> T |
unwrap(Class<T> sourceType)
Unwrap the source behind this error: possibly an
Exception
(typically PropertyAccessException)
or a Bean Validation ConstraintViolation. |
void |
wrap(Object source)
Preserve the source behind this error: possibly an
Exception
(typically PropertyAccessException)
or a Bean Validation ConstraintViolation. |
getArguments, getCode, getCodes, getDefaultMessage, resolvableToStringpublic ObjectError(String objectName, String defaultMessage)
objectName - the name of the affected objectdefaultMessage - the default message to be used to resolve this messagepublic ObjectError(String objectName, @Nullable String[] codes, @Nullable Object[] arguments, @Nullable String defaultMessage)
objectName - the name of the affected objectcodes - the codes to be used to resolve this messagearguments - the array of arguments to be used to resolve this messagedefaultMessage - the default message to be used to resolve this messagepublic String getObjectName()
public void wrap(Object source)
Exception
(typically PropertyAccessException)
or a Bean Validation ConstraintViolation.
Note that any such source object is being stored as transient: that is, it won't be part of a serialized error representation.
source - the source objectpublic <T> T unwrap(Class<T> sourceType)
Exception
(typically PropertyAccessException)
or a Bean Validation ConstraintViolation.
The cause of the outermost exception will be introspected as well,
e.g. the underlying conversion exception or exception thrown from a setter
(instead of having to unwrap the PropertyAccessException in turn).
IllegalArgumentException - if no such source object is available
(i.e. none specified or not available anymore after deserialization)public boolean contains(Class<?> sourceType)
Exception
(typically PropertyAccessException)
or a Bean Validation ConstraintViolation.
The cause of the outermost exception will be introspected as well,
e.g. the underlying conversion exception or exception thrown from a setter
(instead of having to unwrap the PropertyAccessException in turn).
public boolean equals(@Nullable
Object other)
equals 在类中 DefaultMessageSourceResolvablepublic int hashCode()
public String toString()
DefaultMessageSourceResolvableTo be overridden in more specific subclasses, potentially including the
resolvable content through resolvableToString().