Day: January 7, 2016

What is difference between BeanFactory and ApplicationContext in Spring?

Differences Between Spring and Struts

BeanFactory Does not support the Annotation based dependency Injection. ApplicationContext Support Annotation based dependency Injection.-@Autowired, @PreDestroy BeanFactory Does not Support ApplicationContext Application contexts can publish events to beans that are registered as listeners BeanFactory Does not support way to access Message Bundle(internationalization (I18N) ApplicationContext Support internationalization (I18N) messages. BeanFactory Doesn’t support such JNDI access, EJB integration, […]

Java Reflection API

Classes and Objects interview questions

Java Reflection API Java Reflection API is a process of modifying or retrieve metadata of a class at run time. The java.lang.Class class provides methods that can be used to get metadata and change the run time behavior of a class. The java.lang and java.lang.reflect packages are providing classes for java reflection. The Java Reflection API is […]