search
HomeJavajavaTutorialExample tutorial for configuring web.xml
Example tutorial for configuring web.xmlJul 19, 2017 pm 01:39 PM
quartzweb.xmlperform tasks

Today on the project, you need to do a timing task. If you learn temporarily, the function of Quartz is still very convenient to use. The DEMO here is only implemented once a day. Other functions can continue to study on this basis. Haha sleeps on this. Haha sleeps. , continue tomorrow.

I have always had the idea to record, organize and share what I have learned. I have never done it. Today I will start the first article. This is a scheduled task that needs to be done on today’s project. I learned it temporarily. The function of quartz is still It is very powerful and easy to use. The demo here only implements scheduled execution once a day. Other functions can be further studied on this basis. Haha, sleep and continue tomorrow.

1. Maven dependency:

<dependency><groupid>org.quartz-scheduler</groupid><artifactid>quartz</artifactid><version>2.2.3</version>
  </dependency>
  <dependency><groupid>org.quartz-scheduler</groupid><artifactid>quartz-jobs</artifactid><version>2.2.3</version>
  </dependency>

2. Doem:

TimingTaskSchedule needs to implement the ServletContextListener interface to start the project after listening Class

package com.thinkgem.jeesite.modules.sys.listener;import javax.servlet.ServletContextEvent;import javax.servlet.ServletContextListener;public class TimingTaskSchedule implements ServletContextListener{// 服务器启动时执行该事件    @Overridepublic void contextInitialized(ServletContextEvent arg0) {try {
            QuartzLoad.run();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }// 服务器停止时执行该事件    @Overridepublic void contextDestroyed(ServletContextEvent arg0) {try {
            QuartzLoad.stop();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

The 0 0 0 ? * * means execution once every day at 00:00:00

represents seconds from left to right Time-sharing day-month anniversary

? Indicates that you don’t care* means you can ignore it and don’t write it every year

package com.thinkgem.jeesite.modules.sys.listener;import org.quartz.CronScheduleBuilder;import org.quartz.CronTrigger;import org.quartz.Job;import org.quartz.JobBuilder;import org.quartz.JobDetail;import org.quartz.Scheduler;import org.quartz.SchedulerFactory;import org.quartz.TriggerBuilder;import org.quartz.impl.StdSchedulerFactory;import com.thinkgem.jeesite.modules.sys.listener.job;public class QuartzLoad {private static Scheduler sched; public static void run() throws Exception { 
        System.out.println("定时任务启动");
        JobDetail jobDetail = JobBuilder.newJob((Class extends Job>) job.class)
                .withIdentity("myjob", "group1").build();CronTrigger trigger =(CronTrigger) TriggerBuilder.newTrigger()
                .withIdentity("trigger", "group1")
                .withSchedule(CronScheduleBuilder.cronSchedule("0 0 0 ? * *"))
                .build();
        SchedulerFactory sfact = new StdSchedulerFactory();
        Scheduler schedule = sfact.getScheduler();
        schedule.start();
        schedule.scheduleJob(jobDetail, trigger);
    }//停止  public static void stop() throws Exception{  
           sched.shutdown();  
     }  
}

Job is your own business processing

  job   execute(JobExecutionContext arg0) ==  SimpleDateFormat("yyyy-MM-dd HH:mm:ss""Time:"+"Hello"

三, web.xml listening:

com.thinkgem.jeesite.modules.sys.listener.TimingTaskSchedule

<listener>
<listener-class>com.thinkgem.jeesite.modules.sys.listener.TimingTaskSchedule
</listener-class>
</listener>

The above is the detailed content of Example tutorial for configuring web.xml. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在Java中使用Quartz实现定时任务?如何在Java中使用Quartz实现定时任务?May 08, 2023 am 10:46 AM

Scheduler每次执行,都会根据JobDetail创建一个新的Job实例,这样就可以规避并发访问的问题(jobDetail的实例也是新的)Quzrtz定时任务默认都是并发执行,不会等待上一次任务执行完毕,只要间隔时间到就会执行,如果定时任务执行太长,会长时间占用资源,导致其它任务堵塞@DisallowConcurrentExecution:job类上,禁止并发地执行同一个job定义(JobDetail定义的)的多个实例。scheduler:可以理解为定时任务的工作容器或者说是工作场所,所有定

quartz配置文件详解quartz配置文件详解Jun 20, 2023 pm 04:11 PM

Quartz是一种优秀的Java开源调度框架。本文将为读者详细介绍Quartz的配置文件,并分享一些配置的最佳实践。

web.xml SpringBoot打包可执行Jar运行SpringMVC的方法是什么web.xml SpringBoot打包可执行Jar运行SpringMVC的方法是什么May 17, 2023 pm 09:37 PM

部署到webapps目录启动本文使用的Spring版本为Spring6,SpringBoot版本为3,JDK为17,可能会和之前有细微不同,但整体流程差不太大。如果部署应用到tomcatwebapps目录下面启动,则需要在项目中配置web.xml文件web.xml文件配置Spring应用上下文contextConfigLocation/WEB-INF/spring/application-context.xmlorg.springframework.web.context.ContextLoad

如何使用Quartz实现Java高可用定时任务?如何使用Quartz实现Java高可用定时任务?May 07, 2023 pm 12:55 PM

定时任务使用指南如果你想做定时任务,有高可用方面的需求,或者仅仅想入门快,上手简单,那么选用它准没错。定时任务模块是对Quartz框架进一步封装,使用更加简洁。1、引入依赖xin.altitude.cmsucode-cms-quartz1.5.4.12、快速上手实现org.quartz.Job接口;使用注解CronExp添加任务的调度策略;使用注解Component将任务注入容器中。启动项目,定时任务便处于监听与运行中。@Component@DisallowConcurrentExecution

了解 Quartz 缓存技术了解 Quartz 缓存技术Jun 20, 2023 am 09:51 AM

随着互联网技术的飞速发展,数据的处理速度成为了各个行业和公司竞争的关键。在这个过程中,缓存技术成为了提升数据处理速度的重要手段。而Quartz缓存技术作为一种高效的缓存技术,已经被越来越多的企业所采用。本文将详细介绍Quartz缓存技术以及其使用方法和优缺点。一、什么是Quartz缓存技术?Quartz缓存技术是一种基于内存的缓存技术,它可以将

Java怎么使用quartz实现定时任务Java怎么使用quartz实现定时任务Apr 19, 2023 pm 11:49 PM

配置文件sue.spring.quartz.cron=*/5****?pomorg.springframework.bootspring-boot-starter-quartz定时任务和触发器packagecom.luke.demo.schedule;importorg.quartz.*;importorg.springframework.beans.factory.annotation.Value;importorg.springframework.context.annotation.Bea

Servlet 容器揭秘:深入了解 Servlet 运行环境Servlet 容器揭秘:深入了解 Servlet 运行环境Feb 19, 2024 pm 01:00 PM

Servlet容器是提供Servlet运行环境的应用程序,它负责管理Servlet的生命周期、提供必要的WEB服务,如安全性、事务等。Servlet容器有很多种,其中最常见的是Tomcat和Jetty。Servlet容器主要功能生命周期管理:Servlet容器负责管理Servlet的生命周期,包括启动、初始化、服务和销毁。Web服务:Servlet容器提供web服务,如安全性、事务等。资源管理:Servlet容器管理资源,如Servlet、jsP、html页面等。类加载:Servlet容器负责加

Java API 开发中使用 Quartz 进行定时任务处理Java API 开发中使用 Quartz 进行定时任务处理Jun 17, 2023 pm 11:58 PM

随着互联网应用的不断增多,后台任务的处理变得越来越重要。在开发中,我们经常需要进行定时任务的处理,比如每天凌晨定时备份数据,定时发送邮件等等。而在Java开发中,使用Quartz库可以帮助我们实现这样的定时任务处理。Quartz是一个开源的Java定时任务框架,它提供了一套简单的API来实现定时任务。Quartz的定时任务可以根据指定的时

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version