Aware, ClassLoaderAware, HierarchicalMessageSource, MessageSourcepublic class ResourceBundleMessageSource extends AbstractMessageSource implements ClassLoaderAware
MessageSource implementation that
accesses resource bundles using specified basenames. This class relies
on the underlying JDK's ResourceBundle implementation,
in combination with the JDK's standard message parsing provided by
MessageFormat.
This MessageSource caches both the accessed ResourceBundle instances and
the generated MessageFormats for each message. It also implements rendering of
no-arg messages without MessageFormat, as supported by the AbstractMessageSource
base class. The caching provided by this MessageSource is significantly faster
than the built-in caching of the java.util.ResourceBundle class.
Unfortunately, java.util.ResourceBundle caches loaded bundles
forever: Reloading a bundle during VM execution is not possible.
As this MessageSource relies on ResourceBundle, it faces the same limitation.
Created: 2016. 2. 8.
log| Constructor | Description |
|---|---|
ResourceBundleMessageSource() |
| Modifier and Type | Method | Description |
|---|---|---|
protected java.util.ResourceBundle |
doGetBundle(java.lang.String basename,
java.util.Locale locale) |
Obtain the resource bundle for the given basename and Locale.
|
java.lang.ClassLoader |
getClassLoader() |
|
protected java.text.MessageFormat |
getMessageFormat(java.util.ResourceBundle bundle,
java.lang.String code,
java.util.Locale locale) |
Return a MessageFormat for the given bundle and code,
fetching already generated MessageFormats from the cache.
|
protected java.util.ResourceBundle |
getResourceBundle(java.lang.String basename,
java.util.Locale locale) |
Return a ResourceBundle for the given basename and code,
fetching already generated MessageFormats from the cache.
|
protected java.lang.String |
getStringOrNull(java.util.ResourceBundle bundle,
java.lang.String key) |
Efficiently retrieve the String value for the specified key,
or return
null if not found. |
protected java.util.ResourceBundle |
loadBundle(java.io.Reader reader) |
Load a property-based resource bundle from the given reader.
|
protected java.text.MessageFormat |
resolveCode(java.lang.String code,
java.util.Locale locale) |
Resolves the given message code as key in the registered resource bundles,
using a cached MessageFormat instance per message code.
|
protected java.lang.String |
resolveCodeWithoutArguments(java.lang.String code,
java.util.Locale locale) |
Resolves the given message code as key in the registered resource bundles,
returning the value found in the bundle as-is (without MessageFormat parsing).
|
void |
setBasename(java.lang.String basename) |
Set a single basename, following
ResourceBundle conventions:
essentially, a fully-qualified classpath location. |
void |
setBasenames(java.lang.String... basenames) |
Set an array of basenames, each following
ResourceBundle
conventions: essentially, a fully-qualified classpath location. |
void |
setCacheSeconds(int cacheSeconds) |
Set the number of seconds to cache loaded resource bundle files.
|
void |
setClassLoader(java.lang.ClassLoader classLoader) |
Specify the
ClassLoader to provide. |
void |
setDefaultEncoding(java.lang.String defaultEncoding) |
Set the default charset to use for parsing resource bundle files.
|
void |
setFallbackToSystemLocale(boolean fallbackToSystemLocale) |
Set whether to fall back to the system Locale if no files for a specific
Locale have been found.
|
java.lang.String |
toString() |
getCommonMessages, getDefaultMessage, getMessage, getMessage, getMessageFromParent, getMessageInternal, getParentMessageSource, isUseCodeAsDefaultMessage, setCommonMessages, setParentMessageSource, setUseCodeAsDefaultMessagecreateMessageFormat, formatMessage, isAlwaysUseMessageFormat, renderDefaultMessage, resolveArguments, setAlwaysUseMessageFormatpublic void setDefaultEncoding(java.lang.String defaultEncoding)
Default is the java.util.ResourceBundle default encoding: ISO-8859-1.
defaultEncoding - the default encodingpublic void setFallbackToSystemLocale(boolean fallbackToSystemLocale)
Falling back to the system Locale is the default behavior of
java.util.ResourceBundle. However, this is often not desirable
in an application server environment, where the system Locale is not relevant
to the application at all: Set this flag to "false" in such a scenario.
fallbackToSystemLocale - whether fallback to system localepublic void setCacheSeconds(int cacheSeconds)
cacheSeconds - the cache secondspublic java.lang.ClassLoader getClassLoader()
public void setClassLoader(java.lang.ClassLoader classLoader)
ClassLoaderAwareClassLoader to provide. The ClassLoader can be set
when the object is created, and allows the creator to provide the appropriate class
loader to be used by the object when when loading classes and resources.setClassLoader in interface ClassLoaderAwareclassLoader - the ClassLoader to providepublic void setBasename(java.lang.String basename)
ResourceBundle conventions:
essentially, a fully-qualified classpath location. If it doesn't contain a
package qualifier (such as org.mypackage), it will be resolved
from the classpath root.
Messages will normally be held in the "/lib" or "/classes" directory of a web application's WAR structure. They can also be held in jar files on the class path.
Note that ResourceBundle names are effectively classpath locations: As a
consequence, the JDK's standard ResourceBundle treats dots as package separators.
This means that "test.theme" is effectively equivalent to "test/theme",
just like it is for programmatic java.util.ResourceBundle usage.
basename - the basename#setBasenames,
java.util.ResourceBundle#getBundle(String)public void setBasenames(java.lang.String... basenames)
ResourceBundle
conventions: essentially, a fully-qualified classpath location. If it
doesn't contain a package qualifier (such as org.mypackage),
it will be resolved from the classpath root.
The associated resource bundles will be checked sequentially when resolving a message code. Note that message definitions in a previous resource bundle will override ones in a later bundle, due to the sequential lookup.
Note that ResourceBundle names are effectively classpath locations: As a
consequence, the JDK's standard ResourceBundle treats dots as package separators.
This means that "test.theme" is effectively equivalent to "test/theme",
just like it is for programmatic java.util.ResourceBundle usage.
basenames - the basenames#setBasename,
java.util.ResourceBundle#getBundle(String)protected java.lang.String resolveCodeWithoutArguments(java.lang.String code,
java.util.Locale locale)
resolveCodeWithoutArguments in class AbstractMessageSourcecode - the code of the message to resolvelocale - the Locale to resolve the code for (subclasses are encouraged to support internationalization)null if not found#resolveCode,
MessageFormatprotected java.text.MessageFormat resolveCode(java.lang.String code,
java.util.Locale locale)
resolveCode in class AbstractMessageSourcecode - the code of the message to resolvelocale - the Locale to resolve the code for (subclasses are encouraged to support internationalization)null if not found#resolveCodeWithoutArguments(String, java.util.Locale)protected java.util.ResourceBundle getResourceBundle(java.lang.String basename,
java.util.Locale locale)
basename - the basename of the ResourceBundlelocale - the Locale to find the ResourceBundle fornull if none found for the given basename and Localeprotected java.util.ResourceBundle doGetBundle(java.lang.String basename,
java.util.Locale locale)
throws java.util.MissingResourceException
basename - the basename to look forlocale - the Locale to look forjava.util.MissingResourceException - if no matching bundle could be foundjava.util.ResourceBundle#getBundle(String, Locale, ClassLoader)protected java.util.ResourceBundle loadBundle(java.io.Reader reader)
throws java.io.IOException
The default implementation returns a PropertyResourceBundle.
reader - the reader for the target resourcejava.io.IOException - in case of I/O failurePropertyResourceBundle#PropertyResourceBundle(Reader)protected java.text.MessageFormat getMessageFormat(java.util.ResourceBundle bundle,
java.lang.String code,
java.util.Locale locale)
throws java.util.MissingResourceException
bundle - the ResourceBundle to work oncode - the message code to retrievelocale - the Locale to use to build the MessageFormatnull if no message defined for the given codejava.util.MissingResourceException - if thrown by the ResourceBundleprotected java.lang.String getStringOrNull(java.util.ResourceBundle bundle,
java.lang.String key)
null if not found.bundle - the ResourceBundle to perform the lookup inkey - the key to look upnull if noneResourceBundle#getString(String),
ResourceBundle#containsKey(String)public java.lang.String toString()
toString in class java.lang.ObjectCopyright © 2008–2018 The Aspectran Project. All rights reserved.