12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**
- * Copyright 2018
- * <p>
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not
- * use this file except in compliance with the License. You may obtain a copy of
- * the License at
- * <p>
- * http://www.apache.org/licenses/LICENSE-2.0
- * <p>
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- * License for the specific language governing permissions and limitations under
- * the License.
- */
- package com.warewms.job.config;
- import org.springframework.beans.factory.annotation.Value;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.scheduling.quartz.SchedulerFactoryBean;
- import javax.sql.DataSource;
- import java.util.Properties;
- /**
- * 定时任务配置
- *
- * @author Mark sunlightcs@gmail.com
- * @since 2.0.0 2017-04-20
- */
- @Configuration
- public class ScheduleConfig {
- @Value("${schedule.open}")
- Boolean scheduleOpen;
- @Bean
- public SchedulerFactoryBean schedulerFactoryBean(DataSource dataSource) {
- SchedulerFactoryBean factory = new SchedulerFactoryBean();
- factory.setDataSource(dataSource);
- //quartz参数
- Properties prop = new Properties();
- prop.put("org.quartz.scheduler.instanceName", "SdbScheduler");
- prop.put("org.quartz.scheduler.instanceId", "AUTO");
- //线程池配置
- prop.put("org.quartz.threadPool.class", "org.quartz.simpl.SimpleThreadPool");
- prop.put("org.quartz.threadPool.threadCount", "20");
- prop.put("org.quartz.threadPool.threadPriority", "5");
- //JobStore配置
- prop.put("org.quartz.jobStore.class", "org.quartz.impl.jdbcjobstore.JobStoreTX");
- //集群配置
- prop.put("org.quartz.jobStore.isClustered", "true");
- prop.put("org.quartz.jobStore.clusterCheckinInterval", "15000");
- prop.put("org.quartz.jobStore.maxMisfiresToHandleAtATime", "1");
- prop.put("org.quartz.jobStore.misfireThreshold", "12000");
- prop.put("org.quartz.jobStore.tablePrefix", "QRTZ_");
- prop.put("org.quartz.jobStore.selectWithLockSQL", "SELECT * FROM {0}LOCKS UPDLOCK WHERE LOCK_NAME = ?");
- //PostgreSQL数据库,需要打开此注释
- //prop.put("org.quartz.jobStore.driverDelegateClass", "org.quartz.impl.jdbcjobstore.PostgreSQLDelegate");
- factory.setQuartzProperties(prop);
- factory.setSchedulerName("SdbScheduler");
- //延时启动
- factory.setStartupDelay(30);
- factory.setApplicationContextSchedulerContextKey("applicationContextKey");
- //可选,QuartzScheduler 启动时更新己存在的Job,这样就不用每次修改targetObject后删除qrtz_job_details表对应记录了
- factory.setOverwriteExistingJobs(true);
- //设置自动启动,默认为true
- factory.setAutoStartup(scheduleOpen);
- return factory;
- }
- }
|