Home > Articles

Introduction to Quartz Job Scheduling Framework

This chapter is from the book

Chapter 3. Hello, Quartz

Most readers will benefit from a small but realistic walkthrough of an example. As a writer, it takes some restraint to keep from unloading everything in a single chapter; as a reader, it takes some patience and a little leap of faith that the material is relevant and should be read, regardless of the simplicity of the example.

With those thoughts in mind, this chapter introduces a simple Quartz application that is representative of the type of applications that you'll create with the Quartz framework. This example walks you through the steps necessary to create and execute the sample application. When you're finished with this chapter, you should have a solid foundation to build upon for the rest of the book.

The "Hello, World" Quartz Project

This example application is a little more interesting than the proverbial System.out.println("Hello World from Quartz"). When Quartz executes a job, we expect it to perform some interesting and useful task on our behalf. That's what we are going to do here—something useful and interesting.

This chapter shows you how to create a Quartz job that, when told to do so by our Quartz application, will scan a specified directory and look for XML files. If it finds one or more XML files within the specified directory, it will print some cursory information about the file. How is this useful and interesting, you say? Hopefully, you can make the leap that after your job detects certain files in a directory, it can do many interesting things with those files. You might want to ftp them to a remote host or e-mail them as attachments. Perhaps the files are orders that were sent from a customer and need to be inserted into your database. Infinite possibilities exist; we discuss some of the more interesting ones later in the book.

All attempts have been made to keep this new material straightforward and to cover only the essentials. However, we also investigate some of the common configuration settings that affect the runtime behavior of a Quartz application. It's expected that you know the Java language well; we spend very little time explaining the standard aspects of it.

Finally, this chapter wraps up with a brief discussion of how to package the example application. Apache Ant is our choice for building and packaging Java projects: Quartz applications are no exception.

Setting Up the Quartz Project

The first step is to set up your development environment for this project. You can choose any development tool or IDE that makes you feel warm and fuzzy; Quartz won't hold it against you. If you're part of the growing mass of Java developers that have realized just how great Eclipse is, you'll be extra warm and fuzzy: We use that IDE throughout the examples in the book.

If you haven't already done so, you can download Eclipse from http://eclipse.org. You can choose any of the 3.x. For Eclipse documentation, check www.eclipse.org/eclipse/index.html; you should find everything you need to help you get started with Eclipse.

Configuring Quartz Within Eclipse

For the examples throughout this book, we create an Eclipse Java project; each chapter contains a separate source directory. Figure 3.1 illustrates the Quartz Java project in Eclipse.

03qjs01.jpg

Figure 3.1 Creating a Quartz Java project in Eclipse

You need to import several JARs into the project to build them successfully. To start, you need the Quartz binary, which is named quartz-<version>.jar. Quartz also requires several third-party libraries to work; the ones you need depend on which features of the framework you're using. For now, you should include the Commons Logging, Commons Collections, Commons BeanUtils, and Commons Digester libraries, found in the <QUARTZ_HOME>/lib/core and <QUARTZ_HOME>/lib/optional directories. Table 3.1 provides more information on the dependent JARs for Quartz.

It's also a good idea to pull the Quartz source code into Eclipse. This does two things for you. First, it enables you to set breakpoints and step from the code into Quartz source. Second, it helps you learn the framework from the inside out. If you need to see how something is (or isn't) working, you have the actual code right there at your fingertips. Try that with commercial software!

Creating the Quartz Job Class

Every Quartz job must have a concrete Java class that implements the org.quartz.Job interface. The Quartz job interface has a single method, execute(), that you must implement in your job. The execute() method signature is shown here:

public void execute(JobExecutionContext context) throws JobExecutionException;

When the Quartz Scheduler determines that it's time to fire a job, it instantiates the job class and invokes the execute() method. The Scheduler calls the execute() method with no expectations other than that you throw an org.quartz.JobExecutionException if there's a problem with the job.

You can perform whatever business logic you need within the execute() method: For example, you might instantiate and call a method on another class, send an e-mail, ftp a file, invoke a Web Service, call an EJB, execute a workflow, or, in the case of our example, check to see if files exist in a particular directory.

Listing 3.1 shows our first Quartz job, which is designed to scan a directory for files and display details about the files.

Example 3.1. The Example ScanDirectoryJob

package org.cavaness.quartzbook.chapter3;

import java.io.File;
import java.util.Date;

import org.apache.commons.logging.Log;
import Org.apache.commons.logging.LogFactory;
import org.quartz.Job;
import org.quartz.JobDataMap;
import org.quartz.JobDetail;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;

/**
 * <p>
 * A simple Quartz job that, once configured, will scan a
 * directory and print out details about the files found
 * in the directory.
 * </p>
 * Subdirectories will filtered out by the use of a
 * <code>{@link FileExtensionFileFilter}</code>.
 *
 * @author Chuck Cavaness
 * @see java.io.FileFilter
 */
public class ScanDirectoryJob implements Job {
     static Log logger = LogFactory.getLog(ScanDirectoryJob.class);

     public void execute(JobExecutionContext context)
               throws JobExecutionException {

          // Every job has its own job detail
          JobDetail jobDetail = context.getJobDetail();

          // The name is defined in the job definition
          String jobName = jobDetail.getName();

          // Log the time the job started
          logger.info(jobName + " fired at " + new Date());

          // The directory to scan is stored in the job map
          JobDataMap dataMap = jobDetail.getJobDataMap();
                    String dirName = dataMap.getString("SCAN_DIR");

          // Validate the required input
          if (dirName == null) {
               throw new JobExecutionException( "Directory not configured" );
          }

          // Make sure the directory exists
          File dir = new File(dirName);
          if (!dir.exists()) {
           throw new JobExecutionException( "Invalid Dir "+ dirName);
          }

          // Use FileFilter to get only XML files
          FileFilter filter = new FileExtensionFileFilter(".xml");

          File[] files = dir.listFiles(filter);

          if (files == null || files.length <= 0) {
               logger.info("No XML files found in " + dir);

               // Return since there were no files
               return;
          }

          // The number of XML files
          int size = files.length;

          // Iterate through the files found
          for (int i = 0; i < size; i++) {

               File file = files[i];

               // Log something interesting about each file.
               File aFile = file.getAbsoluteFile();
               long fileSize = file.length();
               String msg = aFile + " - Size: " + fileSize;
               logger.info(msg);
          }
     }
}

Let's take a closer look at what's going on in Listing 3.1.

When Quartz calls the execute() method, it passes it an org.quartz.JobExecutionContext, which wraps many things about the Quartz runtime environment and currently executing job. From the JobExecutionContext, you can access information about the Scheduler, the job, the trigger information for the job, and much, much more. In Listing 3.1, the JobExecutionContext is used to access the org.quartz.JobDetail class. The JobDetail class holds the detailed information about a job, including the name given to the job instance, the group that the job belongs to, whether the Job is persistent (volatility), and many other interesting properties.

The JobDetail has a reference to org.quartz.JobDataMap. The JobDataMap holds user-defined properties configured for the particular job. For example, in Listing 3.1, we get the name of the directory to scan from the JobDataMap. We could have hard-coded the directory in the ScanDirectoryJob, but we would have had a tough time reusing the job for other directories. In the later section "Scheduling a Quartz Job Programmatically," you'll see exactly how the directory is configured in the JobDataMap.

The rest of the code in the execute() method is just standard Java: It gets the directory name and creates a java.io.File object. It does a little bit of validation on the directory name to make sure it's a valid directory and that it exists. It then calls the listFiles() method on the File object to retrieve the files from the directory. java.io.FileFilter is created and passed in as an argument to the listFiles() method. org.quartzbook.cavaness. FileExtensionFileFilter implements the java.io.FileFilter interface to weed out directories and return only XML files. By default, the listFiles() method returns everything it finds, whether it's a file or a subdirectory, so the list must be filtered because we are interested only in XML files.

Listing 3.2 shows the FileExtensionFileFilter.

Example 3.2. The FileExtensionFileFilter Used in ScanDirectoryJob.java

package org.cavaness.quartzbook.chapter3;

import java.io.File;
import java.io.FileFilter;

/**
 * A FileFilter that only passes Files of the specified extension.
 * <p>
 * Directories do not pass the filter.
 *
 * @author Chuck Cavaness
 */
public class FileExtensionFileFilter implements FileFilter {

     private String extension;

     public FileExtensionFileFilter(String extension) {
          this.extension = extension;
     }

     /*
      * Pass the File if it has the extension.
      */
     public boolean accept(File file) {
          // Lowercase the filename for easier comparison
          String lCaseFilename = file.getName().toLowerCase();

          return (file.isFile() &&
                       (lCaseFilename.indexOf(extension) > 0)) ? true:false;
     }
}

The FileExtensionFileFilter is used to block any file that doesn't contain the string ".xml" as part of its name. It also blocks any subdirectories, which would normally be returned as well from the listFiles() method. Using file filters is a very convenient way of selectively choosing inputs to your Quartz jobs when they involve files as input.

In the next section, we discuss how to configure the job for scheduling and how to run the ScanDirectoryJob.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020