]> source.dussan.org Git - jgit.git/commitdiff
Enable NLS / TranslationBundle to be used in OSGi 80/27580/2
authorRüdiger Herrmann <ruediger.herrmann@gmx.de>
Fri, 30 May 2014 11:54:13 +0000 (13:54 +0200)
committerRüdiger Herrmann <ruediger.herrmann@gmx.de>
Sun, 1 Jun 2014 09:59:21 +0000 (11:59 +0200)
TranslationBundle#load() used to load resource bundles through
ResourceBundle#getBundle() without explicitly specifying a class loader.
In this case, the class laoder of the calling class (TranslationBundle
here) is used. This approach fails in runtime environments like OSGi
where there are multiple class loaders.

This change enables loading resource bundles in multi class loaders
environments. The fix is to pass the class loader of the
TranslationBundle-derived class to ResourceBundle#getBundle().

Bug: 436232
Change-Id: I39db61e012dc93ebf388a71bf6088a3310a22bac
Signed-off-by: Rüdiger Herrmann <ruediger.herrmann@gmx.de>
org.eclipse.jgit/src/org/eclipse/jgit/nls/TranslationBundle.java

index 2c745e1f3eb610aaf87d388d576f1280acb3ec8a..c85c179aa2b4baee0e8cebea3dac22001fb411af 100644 (file)
@@ -99,8 +99,8 @@ import org.eclipse.jgit.errors.TranslationStringMissingException;
  * {@link ResourceBundle#getBundle(String, Locale)} method to load a resource
  * bundle. See the documentation of this method for a detailed explanation of
  * resource bundle loading strategy. After a bundle is created the
- * {@link #effectiveLocale()} method can be used to determine whether the
- * bundle really corresponds to the requested locale or is a fallback.
+ * {@link #effectiveLocale()} method can be used to determine whether the bundle
+ * really corresponds to the requested locale or is a fallback.
  *
  * <p>
  * To load a String from a resource bundle property file this class uses the
@@ -153,13 +153,17 @@ public abstract class TranslationBundle {
         *
         * @param locale
         *            defines the locale to be used when loading the resource bundle
-        * @exception TranslationBundleLoadingException see {@link TranslationBundleLoadingException}
-        * @exception TranslationStringMissingException see {@link TranslationStringMissingException}
+        * @exception TranslationBundleLoadingException
+        *                see {@link TranslationBundleLoadingException}
+        * @exception TranslationStringMissingException
+        *                see {@link TranslationStringMissingException}
         */
-       void load(Locale locale) throws TranslationBundleLoadingException {
+       void load(Locale locale)
+                       throws TranslationBundleLoadingException {
                Class bundleClass = getClass();
                try {
-                       resourceBundle = ResourceBundle.getBundle(bundleClass.getName(), locale);
+                       resourceBundle = ResourceBundle.getBundle(bundleClass.getName(),
+                                       locale, bundleClass.getClassLoader());
                } catch (MissingResourceException e) {
                        throw new TranslationBundleLoadingException(bundleClass, locale, e);
                }