Hi !
I'm still experimenting some features of the Spring Core container and the App Context.
I made a simple AWT app as a test and i wish to display with it a message from my bundle , but on run time here the log i get :
with the following config.xml :Code:2005-06-28 10:25:29,272 WARN [org.springframework.context.support.ResourceBundleMessageSource] - <ResourceBundle [AO] not found for MessageSource: Can't find bundle for base name AO, locale fr_FR>
And here my files :Code:... <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basenames"> <list> <value>AO</value> </list> </property> </bean> ...
I've tried to move the bundle files to be sure that it was in the classpath but it failed to change the warning...
Any ideas ?



Reply With Quote