Resource Bundle Look-ups in Modular Java Applications - Gunnar Morling #304
Replies: 2 comments 2 replies
|
Nice, something I'll have ony list to check out early 2023! |
2 replies
|
Hi Gunnar! Thanks for posting this -- I have a couple of observations at https://javai18n.dev/guides/modular-resource-bundle-routing/. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Resource Bundle Look-ups in Modular Java Applications - Gunnar Morling
The ResourceBundle class is Java’s workhorse for managing and retrieving locale specific resources,
such as error messages of internationalized applications.
With the advent of the module system in Java 9, specifics around discovering and loading resource bundles have changed quite a bit, in particular when it comes to retrieving resource bundles across the boundaries of named modules.
In this blog post I’d like to discuss how resource bundles can be used in a multi-module application
(i.e. a "modular monolith") for internationalizing error messages.
The following requirements should be satisified:
https://www.morling.dev/blog/resource-bundle-lookups-in-modular-java-applications/
All reactions