While reading the bean definition from an xml file, which of the below two methods is best. I remember reading about Resource , that using this is fast or something like that but don't know exactly.
Resource rs = new ClassPathResource("hello.xml");
BeanFactory factory = new XmlBeanFactory(rs);
or
BeanFactory factory = new XmlBeanFactory(new FileInputStream("myBean.xml"));