SSM的定时器基于xml和注解两种方式

本文详细介绍如何在Spring框架中使用注解和XML两种方式配置定时任务。通过实例展示了如何设置任务执行频率,包括每天凌晨四点执行的任务和每两小时执行一次的OCR识别任务。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.注解方式

springmvc.xml配置的beans头部加上

1.

xmlns:task="http://www.springframework.org/schema/task"

http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.2.xsd

<!-- 定时任务注解扫描 -->
<task:annotation-driven/>

 

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="http://www.springframework.org/schema/beans  
                        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  
                        http://www.springframework.org/schema/context  
                        http://www.springframework.org/schema/context/spring-context-4.0.xsd  
                        http://www.springframework.org/schema/mvc  
                        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
                        http://www.springframework.org/schema/task
						http://www.springframework.org/schema/task/spring-task-4.0.xsd">


@Component
public class TimerTask {
	
	@Scheduled(cron = "0 0 4 * * ?") // 每天凌晨四点执行
	public void test1() {
		System.out.println("定时器任务:开始........................");
		
	}
	
}

2.xml方式

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:task="http://www.springframework.org/schema/task"
	xsi:schemaLocation="http://www.springframework.org/schema/beans  
                        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd  
                        http://www.springframework.org/schema/context  
                        http://www.springframework.org/schema/context/spring-context-4.0.xsd  
                        http://www.springframework.org/schema/mvc  
                        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
                        http://www.springframework.org/schema/task
						http://www.springframework.org/schema/task/spring-task-4.0.xsd">


	<!-- ===================================== Spring3自带日志定时任务  ===================================== -->
	
 	<!-- 日志任务配置:task任务扫描注解 -->
	<context:annotation-config />  
	
	 <!-- 配置任务线性池 -->  
    <task:executor id="executor" pool-size="3" />  
    <task:scheduler id="scheduler" pool-size="3" />  
    <!-- 启用annotation方式 -->  
    <task:annotation-driven scheduler="scheduler"  
        executor="executor" proxy-target-class="true" />
	
	<!-- 定时任务 -->  
    <task:scheduled-tasks>  
    
        <!-- 附件OCR识别:定时识别附件上传pdf -->
        <!-- 注意:ref引用的开头必须小写,否则找不到这个bean -->
        <!-- http://qqe2.com/cron 这个网站可以自动生成你所需要的事件-->
        <task:scheduled ref="attachmentService" method="OCRConversion" cron="* 2 * * * ?" />  

    </task:scheduled-tasks>
    


	
</beans>
@Service
public class Service{

	/**
	 * 定时任务
	 */
    public void OCRConversion() throws Exception{
	   
			System.out.println("定时器任务(OCR转换):...........任务开始............");
    }
	
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值