Thursday, March 11, 2010

Posts Tagged ‘quartz’

Grails 101:GroovyBlogs.org

Grails 101:GroovyBlogs.org

Monday, January 19, 2009 10:00

If you are trying to learn groovy and grails like me you should visit http://groovyblogs.org . Really nice aggregator for grails and groovy blogs and posts. But the most important part this site is, it is open-source !!!

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  0 Comments

Runtime Java Stack

Friday, November 28, 2008 3:26

Image by Neil T via Flickr I have been developing java application for more then 6 years. Most of these years I have used and evaluated open source projects. Here I'll try to explain my open source java stack.

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  0 Comments

Quartz Concurrent Job execution-StatefulJob

Tuesday, November 11, 2008 6:32

To prevent concurrent job execution for long running jobs, you should implement org.quartz.StatefulJob which is just a marker interface. By this interface quartz understands and waits until it finishes it's execution. In other words, it is same with java synchronized keyword :) [source language='java'] public MyOnlySingleThreadJob ...

This was posted under category: HowTo & Tutorial  |  Read Full Story  |  0 Comments
Tagged with: