Not quite

ExtendedResourceBundle.java

  | ...
  | @Name("org.jboss.seam.core.resourceBundle")
  | public class ExtendedResourceBundle extends 
org.jboss.seam.core.ResourceBundle 
  | ...  
  |   @Override
  |   protected ResourceBundle loadBundle(String bundleName) {
  |     try {
  |       ResourceBundle bundle =
  |           ResourceBundle.getBundle(bundleName,
  |           Locale.instance(),
  |           Thread.currentThread().getContextClassLoader(),
  |           DBControl.INSTANCE);
  |       LOG.debug("loaded resource bundle: " + bundleName);
  |       return bundle;
  |     } catch (MissingResourceException mre) {
  |       LOG.debug("db resource bundle missing: " + bundleName);
  |       return super.loadBundle(bundleName);
  |     }
  |   }
  | ...  
  | }
  | 

and no config in components.xml

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4016321#4016321

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4016321
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to