I've discovered that I can use something like this:to have Spring load all bean.xml files found in any jars on the classpath. This is handy - but I'm wondering, can I do something like this:Code:classpath*:/META-INF/bean.xml
Will this work in my application context?Code:<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource"> <property name="basenames"> <list> <value>classpath*:/META-INF/messages</value> </list> </property> </bean>
Thanks,
Andy


Reply With Quote