石头老师
    • 畅销套餐
    • 精选套餐
    • 人气套餐
    • 尊享套餐
    • 高薪套餐
  • 课程介绍
  • 课程大纲

适合人群:

Java工程师,小白,IT爱好者,架构师

你将会学到:

1、让初学者从小白开始,善于运用知识点,解脱学习的苦恼 2、学习Java中的定时任务调度框架

课程简介:

基础篇

JAVA入门篇

https://edu.51cto.com/course/19845.html

JAVA流程控制

https://edu.51cto.com/course/19845.html

JAVA数组

https://edu.51cto.com/course/19841.html

JAVA面向对象编程

https://edu.51cto.com/course/21197.html

JAVA集合

https://edu.51cto.com/course/19886.html

JAVA泛型详解

https://edu.51cto.com/course/19887.html

JAVA实用类和异常

https://edu.51cto.com/course/19883.html

JAVAIO

https://edu.51cto.com/course/19888.html

JAVA之多线程

https://edu.51cto.com/course/19889.html

JAVA之网络编程

https://edu.51cto.com/course/19667.html

JAVA之反射机制

https://edu.51cto.com/course/19668.html

JAVA之枚举和正则

https://edu.51cto.com/course/19891.html

JAVAXML解析

https://edu.51cto.com/course/19892.html

JAVA之常见设计模式

https://edu.51cto.com/course/19890.html

JAVA项目实战电影管理系统

https://edu.51cto.com/course/18413.html

 

数据库篇

MySql数据库基础

https://edu.51cto.com/course/19898.html

Oracle数据库核心技术

https://edu.51cto.com/course/21584.html

 

JDBC编程篇

JDBC编程精讲

https://edu.51cto.com/course/19278.html

JDBC项目实战-银行管理系统

https://edu.51cto.com/course/18414.html

 

Web编程篇

HTML基础教程

https://edu.51cto.com/course/21662.html

CSS网页样式

https://edu.51cto.com/course/19900.html

JavaScript开发实践

https://edu.51cto.com/course/21661.html

jQuery框架开发实践

https://edu.51cto.com/course/21669.html

JavaWeb开发实战教程

https://edu.51cto.com/course/21690.html

 

项目工程管理工具篇

Maven项目管理实战

https://edu.51cto.com/course/21402.html

GIT版本管理精讲

https://edu.51cto.com/course/19026.html

 

主流框架篇

Hibernate核心技术

https://edu.51cto.com/course/21639.html

Spring框架精讲

https://edu.51cto.com/course/19819.html

Struts2框架核心技术

https://edu.51cto.com/course/21607.html

SpringMvc核心技术实战

https://edu.51cto.com/course/21507.html

MyBatis框架精讲

https://edu.51cto.com/course/19675.html

Spring Data JPA 106精讲

https://edu.51cto.com/course/19053.html

SSM框架整合

https://edu.51cto.com/course/21526.html

SSSP框架整合

https://edu.51cto.com/course/21534.html

WebService实战演练

https://edu.51cto.com/course/19055.html

Quartz定时任务框架详解

https://edu.51cto.com/course/19277.html

 

主流框架项目篇

SSM项目全程实录

https://edu.51cto.com/course/21092.html

 

 

微服务技术篇

Linux需知需会

https://edu.51cto.com/course/21179.html

SpringBoot核心技术

https://edu.51cto.com/course/21539.html

Swagger2实用教程

https://edu.51cto.com/course/21551.html

MYSQL主从复制和写分离

https://edu.51cto.com/course/21126.html

Docker企业应用实战

https://edu.51cto.com/course/21070.html

ElasticSearch企业级开发

https://edu.51cto.com/course/20881.html

JenKins持续集成实战

https://edu.51cto.com/course/20681.html

RabbitMQ消息中间件实战

https://edu.51cto.com/course/20625.html

Dubbo微服务框架实战

https://edu.51cto.com/course/20554.html

ActiveMQ消息中间件实战教程

https://edu.51cto.com/course/20546.html

SpringCloud微服务精讲

https://edu.51cto.com/course/20533.html

Solr实战开发

https://edu.51cto.com/course/20494.html

Shiro权限管理实战

https://edu.51cto.com/course/20492.html

Redis全攻略

https://edu.51cto.com/course/20485.html

FastDFS实战

https://edu.51cto.com/course/20484.html

Nginx开发实战

https://edu.51cto.com/course/20483.html

Zookeeper实现分布式锁

https://edu.51cto.com/course/20421.html

 

 

微服务项目篇

大型分布式高并发电商项目开发

https://edu.51cto.com/course/21184.html

 

本课程内容

图片.png

Java中的定时任务调度框架!!!

  • Quartz是OpenSymphony开源组织在Job scheduling领域又一个开源项目,它可以与J2EE与J2SE应用程序相结合也可以单独使用。

  • 在企业级应用中,经常会制定一些“计划任务”,即在某个时间点做某件事情,核心是以时间为关注点,即在一个特定的时间点,系统执行指定的一个操作

  • 任务调度涉及多线程并发、线程池维护、运行时间规则解析、运行现场的保护以恢复等方面

  • Quartz框架是一个开源的企业级任务调度服务,已经被作为任务调度的良好解决方案

  • Quartz对任务调度进行了高度抽象,提出了3个核心概念,并在org.quartz包中通过接口和类进行了描述。

    • 任务 JOB:要执行的动作

    • 触发器 Trigger: 什么时候被执行

    • 调度器 Scheduler :负责绑定触发器和任务 进行任务调度

  • 市场上常见的定时任务框架:

    • Quartz

    • Spring Task


展开更多

课程大纲-Quartz定时任务框架详解

“石头老师”老师的其他课程更多+

在线
客服
APP
下载

下载Android客户端

下载iphone 客户端

官方
微信

关注官方微信

返回
顶部