|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.springframework.context.support.AbstractMessageSource
Abstract implementation of HierarchicalMessageSource interface, making it easy to implement a custom MessageSource. Subclasses must implement the abstract resolveCode method.
Supports not only MessageSourceResolvables as primary messages but also resolution of message arguments that are in turn MessageSourceResolvables themselves.
This class does not implement caching, thus subclasses can dynamically change messages over time. Subclasses are encouraged to cache their messages in a modification-aware fashion.
resolveCode(java.lang.String, java.util.Locale)| Field Summary | |
protected org.apache.commons.logging.Log |
logger
|
| Constructor Summary | |
AbstractMessageSource()
|
|
| Method Summary | |
protected java.text.MessageFormat |
createMessageFormat(java.lang.String msg,
java.util.Locale locale)
Create a MessageFormat for the given message and Locale. |
java.lang.String |
getMessage(MessageSourceResolvable resolvable,
java.util.Locale locale)
Try to resolve the message using all the attributes contained within the MessageSourceResolvable argument that was passed in.
|
java.lang.String |
getMessage(java.lang.String code,
java.lang.Object[] args,
java.util.Locale locale)
Try to resolve the message. |
java.lang.String |
getMessage(java.lang.String code,
java.lang.Object[] args,
java.lang.String defaultMessage,
java.util.Locale locale)
Try to resolve the message. |
protected java.lang.String |
getMessageInternal(java.lang.String code,
java.lang.Object[] args,
java.util.Locale locale)
Resolve the given code and arguments as message in the given Locale, returning null if not found. |
MessageSource |
getParentMessageSource()
Return the parent of this MessageSource, or null if none. |
protected java.lang.Object[] |
resolveArguments(java.lang.Object[] args,
java.util.Locale locale)
Search through the given array of objects, find any MessageSourceResolvable objects and resolve them. |
protected abstract java.text.MessageFormat |
resolveCode(java.lang.String code,
java.util.Locale locale)
Subclasses must implement this method to resolve a message. |
void |
setParentMessageSource(MessageSource parent)
Set the parent that will be used to try to resolve messages that this object can't resolve. |
void |
setUseCodeAsDefaultMessage(boolean useCodeAsDefaultMessage)
Set whether to use the message code as default message instead of throwing a NoSuchMessageException. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
protected final org.apache.commons.logging.Log logger
| Constructor Detail |
public AbstractMessageSource()
| Method Detail |
public void setParentMessageSource(MessageSource parent)
HierarchicalMessageSource
setParentMessageSource in interface HierarchicalMessageSourceparent - parent MessageSource that will be used to
resolve messages that this object can't resolve.
May be null, in which case no further resolution is possible.public MessageSource getParentMessageSource()
HierarchicalMessageSource
getParentMessageSource in interface HierarchicalMessageSourcepublic void setUseCodeAsDefaultMessage(boolean useCodeAsDefaultMessage)
Note: In case of a MessageSourceResolvable with multiple codes (like a FieldError) and a MessageSource that has a parent MessageSource, do not activate "useCodeAsDefaultMessage" in the parent: Else, you'll get the first code returned as message by the parent, without attempts to check further codes.
To be able to work with "useCodeAsDefaultMessage" turned on in the parent,
AbstractMessageSource and AbstractApplicationContext contain special checks
to delegate to the internal getMessageInternal method if available.
In general, it is recommended to just use "useCodeAsDefaultMessage" during
development and not rely on it in production in the first place, though.
getMessage(String, Object[], Locale),
getMessageInternal(java.lang.String, java.lang.Object[], java.util.Locale),
FieldError
public final java.lang.String getMessage(java.lang.String code,
java.lang.Object[] args,
java.lang.String defaultMessage,
java.util.Locale locale)
MessageSource
getMessage in interface MessageSourcecode - the code to lookup up, such as 'calculator.noRateSet'. Users of
this class are encouraged to base message names on the relevant fully
qualified class name, thus avoiding conflict and ensuring maximum clarity.args - array of arguments that will be filled in for params within
the message (params look like "{0}", "{1,date}", "{2,time}" within a message),
or null if none.locale - the Locale in which to do the lookupdefaultMessage - String to return if the lookup fails
public final java.lang.String getMessage(java.lang.String code,
java.lang.Object[] args,
java.util.Locale locale)
throws NoSuchMessageException
MessageSource
getMessage in interface MessageSourcecode - the code to lookup up, such as 'calculator.noRateSet'args - Array of arguments that will be filled in for params within
the message (params look like "{0}", "{1,date}", "{2,time}" within a message),
or null if none.locale - the Locale in which to do the lookup
NoSuchMessageException - if the message wasn't found
public final java.lang.String getMessage(MessageSourceResolvable resolvable,
java.util.Locale locale)
throws NoSuchMessageException
MessageSourceMessageSourceResolvable argument that was passed in.
NOTE: We must throw a NoSuchMessageException on this method
since at the time of calling this method we aren't able to determine if the
defaultMessage property of the resolvable is null or not.
getMessage in interface MessageSourceresolvable - value object storing attributes required to properly resolve a messagelocale - the Locale in which to do the lookup
NoSuchMessageException - if the message wasn't found
protected java.lang.String getMessageInternal(java.lang.String code,
java.lang.Object[] args,
java.util.Locale locale)
code - the code to lookup up, such as 'calculator.noRateSet'. Users of
this class are encouraged to base message names on the relevant fully
qualified class name, thus avoiding conflict and ensuring maximum clarity.args - array of arguments that will be filled in for params within
the message (params look like "{0}", "{1,date}", "{2,time}" within a message),
or null if none.locale - the Locale in which to do the lookup
getMessage(String, Object[], String, Locale),
getMessage(String, Object[], Locale),
getMessage(MessageSourceResolvable, Locale),
setUseCodeAsDefaultMessage(boolean)
protected java.lang.Object[] resolveArguments(java.lang.Object[] args,
java.util.Locale locale)
Allows for messages to have MessageSourceResolvables as arguments.
args - array of arguments for a messagelocale - the locale to resolve through
protected java.text.MessageFormat createMessageFormat(java.lang.String msg,
java.util.Locale locale)
This implementation creates an empty MessageFormat first, populating it with Locale and pattern afterwards, to stay compatible with J2SE 1.3.
msg - the message to create a MessageFormat forlocale - the Locale to create a MessageFormat for
protected abstract java.text.MessageFormat resolveCode(java.lang.String code,
java.util.Locale locale)
Returns a MessageFormat instance rather than a message String, to allow for appropriate caching of MessageFormats in subclasses.
code - the code of the message to resolvelocale - the Locale to resolve the code for
(subclasses are encouraged to support internationalization)
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||