Runtime Java Stack
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. Read more
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. Read more
Image by Jim Rees via Flickr
hi again,
yesterday when I was surfing some software blogs I have came across something that really hits me: The 12 Best Questions for Team Members. (nice blog).In fact the goal of the questions is “your team’s motivation” !!!
No one has ever asked me these nice questions for several years. maybe this is why I am unrest now. Read more
I reposted my old blogs at altuure.blogspot.com:
OSWorkflow as Object State Machine
Image via Wikipedia
Here comes another worried man: me
another worried man http://java.dzone.com/news/groovy-grails-springsource-ini
Image via Wikipedia
There are three standard port types for a single tomcat configuration:
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
public MyOnlySingleThreadJob implements StatefulJob {
}
ref:quartz project