Tag: Spring

Spring Boot Scheduler

spring-boot-scheduler

Spring Boot Scheduler In this article, we will discuss Schedule configuration in Spring Boot. By using @Scheduled annotations, you can easily enable the scheduler with different types of schedule execution. Schedule enabled method should not accept any method parameter and method return should be void.   Enable Spring Boot Scheduler By using @EnableScheduling annotation, you can […]

What is Framework Software

What is Framework Software Every one having doubt on what is framework software ?  which is a special software that is capable of developing applications based on certain architecture having the ability to generate common logic of the application dynamically based on other logic supplied by programmer. Framework Software is a special software that is capable […]

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, […]