|
The Spring Framework | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Interface Summary | |
---|---|
HierarchicalThemeSource | Sub-interface of ThemeSource to be implemented by objects that can resolve theme messages hierarchically. |
Theme | A Theme can resolve theme-specific messages, codes, file paths, etcetera (e.g. CSS and image files in a web environment). |
ThemeSource | Interface to be implemented by objects that can resolve Themes. |
Contains classes defining the application context subinterface for UI applications. The theme feature is added here.
UiApplicationContextUtils.THEME_SOURCE_BEAN_NAME
bean is available in the context or parent context, a default ResourceBundleThemeSource
will be created for requested themes. In this case, the base name of the property file will match
with the theme name.basenamePrefix
can be
set before the theme name for locating the property files like this:
<bean id="themeSource" class="org.springframework.ui.context.support.ResourceBundleThemeSource">
<property name="basenamePrefix"><value>theme.</value></property>
</bean>
theme.<theme_name>XXX.properties.
|
The Spring Framework | |||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |