Can we assume that all implementations of the org.springframework.context.MessageSource interface are safe after initialization?
I would expect this to be safe, but now I look at the Spring source code, and there org.springframework.context.support.ReloadableResourceBundleMessageSource, which reloads the properties from time to time, and the documentation says nothing about being thread safe ...
EDIT: It seems that the ReloadableResourceBundleMessageSource is really in sync where it should be ... however my original question remains.
source
share