搭建最簡單的Spring定時任務工程:java
1.把Spring經過web.xml註冊進來:web
1 <!-- 加載spring容器 --> 2 <context-param> 3 <param-name>contextConfigLocation</param-name> 4 <param-value>/WEB-INF/classes/spring/applicationContext-*.xml</param-value> 5 </context-param> 6 <listener> 7 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 8 </listener>
2.須要告訴Spring去哪兒掃描組件,在此我使用的是註解的方式,因此要告訴Spring咱們是使用註解方式註冊任務的,個人配置文件是applicationContext-service.xmlspring
1 <beans xmlns="http://www.springframework.org/schema/beans" 2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xmlns:mvc="http://www.springframework.org/schema/mvc" 4 xmlns:context="http://www.springframework.org/schema/context" 5 xmlns:aop="http://www.springframework.org/schema/aop" 6 xmlns:tx="http://www.springframework.org/schema/tx" 7 xmlns:task="http://www.springframework.org/schema/task" 8 xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd 9 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 10 http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.2.xsd 11 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd 12 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd 13 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> 14 <!-- 新聞的service --> 15 <!-- <bean id="newsService" class="com.ssm.service.impl.NewsServiceImpl" /> --> 16 <context:component-scan base-package="com.ssm.service.*"></context:component-scan> 17 <context:annotation-config /> 18 <task:annotation-driven/>//使用的註解方式來實現Spring的定時任務 19 20 <!-- 開啓這個配置,spring才能識別@Scheduled註解 --> 21 <!-- <task:annotation-driven scheduler="qbScheduler" mode="proxy"/> 22 <task:scheduler id="qbScheduler" pool-size="10"/> --> 23 </beans>
3.註冊一個簡單的任務,在service下新建一個包task,而後建立一個Spider類,類的的內容表示每逢10秒執行,打印一個語句spring-mvc
1 package com.ssm.service.task; 2 3 import java.util.Date; 4 5 import org.springframework.scheduling.annotation.Scheduled; 6 import org.springframework.stereotype.Component; 7 import org.springframework.stereotype.Service; 8 9 10 @Component("spider") 11 public class Spider { 12 13 @Scheduled(fixedRate=10*1000) 14 public void getNews(){ 15 System.out.println(new Date()+"-------getNews"); 16 } 17 }
4.運行結果:mvc