Currently we are configuring spring as below:
<bean id="messageSource"
class="...LocaleMessageSource">
<property name="basenames">
<list>
<value>
WEB-INF/i18n/FieldLabels
</value>
</list>
</property>
</bean>

Where the name of my bundles are FieldLabels_en_US.properties

Is it possible to configure it such that it can live in different folders like:

WEB-INF/i18n/en_US/FieldLabels
WEB-INF/i18n/rf_FR/FieldLabels

Any help would be appreciated.