Quartz is an excellent, open-source scheduler which provides many enterprise features such as job persistence to a variety of job store implementations (e.g., RAM, JDBC, etc.), transactions and clustering. Spring offers good integration for Quartz and provides some nice abstractions for using it within the IoC container such as MethodInvokingJobDetailFactoryBean which allows you to use [...]
Categories: Java/J2EE
Tagged: prototype, quartz, spring
- Published:
- June 25, 2010 – 12:15 AM
- Author:
- By erez
Within the typical Spring container most of the beans with dependency on other beans end up being stateless singleton beans. However every once in a while you want a stateful prototype beans with dependencies.
Categories: Java/J2EE
Tagged: context, dependency injection, prototype, spring
- Published:
- February 14, 2010 – 2:29 AM
- Author:
- By erez