Managing string resources in a Java application - singleton?
- by Joe Attardi
I seek a solution to the age-old problem of managing string resources. My current implementation seems to work well, but it depends on using singletons, and I know how often singletons can be maligned.
The resource manager class has a singleton instance that handles lookups in the ResourceBundle, and you use it like so:
MessageResources mr =…