Re: S2 Spring Bean DI to an i18n ListResourceBundle

2008-01-14 Thread ARCS
Simple solution. Also noted that the bundle only gets loaded once and everything seems to work fine. Spring rocks. String[] config= new String[]{"applicationContext-resources.xml", "applicationContext-dao.xml", "applicationContext-service.xml"}; ApplicationContext context = new ClassPathXmlAp

Re: Want to get the value of label key which is there in the ApplicationResources.properties in action class

2008-01-11 Thread ARCS
May be a better or more appropriate way to do this but this works. You can do this for any resource bundle you've created. ResourceBundle bundle = ResourceBundle.getBundle("MyResources"); bundle.getString("myResourceBundleKey")); -Andrew arunabh wrote: > > hi , > I have a requirement to get