¡@

Home 

java Programming Glossary: quartz

Tracking down a memory leak / garbage-collection issue in Java.

http://stackoverflow.com/questions/1071631/tracking-down-a-memory-leak-garbage-collection-issue-in-java

some better data. This time what stuck out was a single quartz thread was taking up 4.5GB of the 6GB of heap and the majority.. was it leaking now Well it was a combination of things The quartz thread pool instantiates with certain things being threadLocal.. factory in that was creating a session at the start of the quartz threads lifecycle which was then being reused to run the various..

Problem building executable jar with maven

http://stackoverflow.com/questions/1814526/problem-building-executable-jar-with-maven

dependency groupId opensymphony groupId artifactId quartz artifactId version 1.6.3 version dependency Quartz 1.6.0 depends..

TaskScheduler, @Scheduled and quartz

http://stackoverflow.com/questions/6788811/taskscheduler-scheduled-and-quartz

@Scheduled and quartz Is there a way to have @Scheduled with quartz as the underlying.. and quartz Is there a way to have @Scheduled with quartz as the underlying scheduler Two things that I can think of but.. that will parse the @Scheduled annotation and register quartz jobs implement TaskScheduler to delegate to the quartz Scheduler..

09 is not recognized where as 9 is recognized

http://stackoverflow.com/questions/970039/09-is-not-recognized-where-as-9-is-recognized

is not recognized where as 9 is recognized I am using quartz for schedulling. TriggerUtils.getDateOf 0 40 18 09 06 it accept..

Tracking down a memory leak / garbage-collection issue in Java.

http://stackoverflow.com/questions/1071631/tracking-down-a-memory-leak-garbage-collection-issue-in-java

bit 5.2 Java 6u11 Tomcat 6 Spring WebMVC 2.5 Hibernate 3 Quartz 1.6.1 DBCP 1.2.1 Mysql 5.0.45 Ehcache 1.5.0 and of course a..

Ensure that Spring Quartz job execution doesn't overlap

http://stackoverflow.com/questions/1636556/ensure-that-spring-quartz-job-execution-doesnt-overlap

that Spring Quartz job execution doesn't overlap I have a Java program that executes.. I'm sure it run for 20 seconds or more. How can I prevent Quartz from firing triggering the job while one instance is still being.. question If all you need to do is fire every 20 seconds Quartz is serious overkill. The java.util.concurrent.ScheduledExecutorService..

Problem building executable jar with maven

http://stackoverflow.com/questions/1814526/problem-building-executable-jar-with-maven

commons lang artifactId version 2.4 version dependency Quartz scheduler dependency groupId opensymphony groupId artifactId.. quartz artifactId version 1.6.3 version dependency Quartz 1.6.0 depends on commons collections dependency groupId commons.. collections artifactId version 3.1 version dependency Quartz 1.6.0 depends on commons logging dependency groupId commons..

Which maven dependencies to include for spring 3.0?

http://stackoverflow.com/questions/2237537/which-maven-dependencies-to-include-for-spring-3-0

Application Context utilities including EhCache JavaMail Quartz and Freemarker integration Define this if you need any of these..

How to get and set a global object in Java servlet context

http://stackoverflow.com/questions/3215988/how-to-get-and-set-a-global-object-in-java-servlet-context

I have a scenario where a scheduled job being run by Quartz will update an arraylist of objects every hour. But I need this.. is that I write this object somewhere every hour from the Quartz job that runs so that each session can access it. Can anyone.. about the object being written to servlet context from the Quartz job The alternative is having each session populate the arraylist..

Weblogic 10.3.1.0 is using com.bea.core.apache.commons.net_1.0.0.0_1-4-1.jar… I want to use commons-net-2.0.jar from my code

http://stackoverflow.com/questions/3376046/weblogic-10-3-1-0-is-using-com-bea-core-apache-commons-net-1-0-0-0-1-4-1-jar

Scheduled task in a web application?

http://stackoverflow.com/questions/4127434/scheduled-task-in-a-web-application

scheduled tasks tomcat6 share improve this question Quartz is your best bet and most highly configurable. It has CRON based.. from a specific event if your use case calls for it Quartz can do it. It has the ability to persist jobs to the database.. in web.xml like this to auto start it servlet servlet name QuartzInitializer servlet name display name Quartz Initializer Servlet..

How to run a background task in a servlet application?

http://stackoverflow.com/questions/4691132/how-to-run-a-background-task-in-a-servlet-application

a background task which runs once on daily basis. For that Quartz or even ScheduledExecutorService is perfect. This needs to be..

Running a regular background event in Java web app

http://stackoverflow.com/questions/48293/running-a-regular-background-event-in-java-web-app

tasks doesn't always worth so I recommend to use the Quartz Scheduler in Java. In your situation need to run background.. The jobs themselves can be described easily too in Quartz however you haven't provided any details about what you need..

Background timer task in JSP/Servlet web application

http://stackoverflow.com/questions/5357033/background-timer-task-in-jsp-servlet-web-application

this task. What's the best way A normal timer thread or Quartz API java jsp servlets scheduled tasks background process .. container you're using. JBoss AS 5 for example ships with Quartz out the box. Or when you're using a framework on top of JSP..