溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何正確的使用spring定時器

發布時間:2020-11-24 16:53:54 來源:億速云 閱讀:155 作者:Leah 欄目:編程語言

如何正確的使用spring定時器?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。

第一種,使用XML配置的方法

前期工作,配置spring的開發環境(這里用到了spring的web應用包,需要導入)

首先創建定時器的任務類,定時器要做什么工作,就在這里寫什么方法。

package org.time; 
 
import java.util.TimerTask; 
 
public class MainTask extends TimerTask{ 
 
 @Override 
 public void run() { 
  System.out.println("檢測用戶是否掉線"); 
 } 
 
} 

接著在配置文件中對定時器進行配置。

<&#63;xml version="1.0" encoding="UTF-8"&#63;> 
<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" 
 xsi:schemaLocation="http://www.springframework.org/schema/beans 
 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> 
  
 <bean id="mainTask" class="org.time.MainTask"></bean> 
 
 <!-- 注冊定時器信息 --> 
 <bean id="springTask" class="org.springframework.scheduling.timer.ScheduledTimerTask"> 
  <!-- 延遲1秒執行首次任務 --> 
  <property name="delay" value="1000"></property> 
  <!-- 每隔2秒執行一次任務 --> 
  <property name="period" value="2000"></property> 
  <!-- 具體執行的任務 --> 
  <property name="timerTask" ref="mainTask"></property> 
 </bean> 
 <!-- 配置任務調度器工廠 --> 
 <bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean"> 
  <property name="scheduledTimerTasks"> 
   <list> 
    <ref bean="springTask"/> 
   </list> 
  </property> 
 </bean> 
</beans> 

最后還需要在web.xml中對配置信息進行注冊:

<&#63;xml version="1.0" encoding="UTF-8"&#63;> 
<web-app version="2.5" 
 xmlns="http://java.sun.com/xml/ns/javaee" 
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
 http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> 
 <display-name></display-name> 
 <welcome-file-list> 
 <welcome-file>index.jsp</welcome-file> 
 </welcome-file-list> 
 <listener> 
 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
 </listener> 
 <context-param> 
 <param-name>contextConfigLocation</param-name> 
 <param-value>/WEB-INF/applicationContext.xml</param-value> 
 </context-param> 
</web-app>

這樣就完成了定時器的配置,這時啟動tomcat,觀察控制臺輸出的結果:

如何正確的使用spring定時器

第二種,使用注解的形式

(spring中一使用注解,感覺就是比其他方法方便了很多,代碼減少了很多)

這里需要用到AOP,需要引入AOP類庫

先看定時器的任務類:

package org.time; 
 
import org.springframework.scheduling.annotation.Scheduled; 
import org.springframework.stereotype.Component; 
 
@Component 
public class MainTask01{ 
 @Scheduled(cron = "0/3 * * * * &#63;") 
 public void run() { 
  System.out.println("推送消息來了"); 
 } 
 
} 

@Scheduled(cron = "0/3 * * * * &#63;")  表示三秒推送一次

corn可以配置各種時段任務:

字段

                   值

特殊表示字符

   一般為空,1970-2099

   , - * /

    1-12 或者 JAN-DEC

   , - * /

星期

    1-7 或者 SUN-SAT

   , - * &#63; / L C #

    1-31

    , - * &#63; / L W C

    0-23 

    , - * /

    0-59 

    , - * /

    0-59 

    , - * /

如:  配置每個工作日的10:20觸發 :"0 20 10 &#63; * MON-FRI" 

配置文件:

<&#63;xml version="1.0" encoding="UTF-8"&#63;> 
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
 xmlns:tx="http://www.springframework.org/schema/tx" 
 xmlns:aop="http://www.springframework.org/schema/aop" 
 xmlns:context="http://www.springframework.org/schema/context" 
 xmlns:task="http://www.springframework.org/schema/task" 
 xmlns="http://www.springframework.org/schema/beans" 
 xsi:schemaLocation="http://www.springframework.org/schema/beans 
  http://www.springframework.org/schema/beans/spring-beans.xsd 
  http://www.springframework.org/schema/tx 
  http://www.springframework.org/schema/tx/spring-tx.xsd 
  http://www.springframework.org/schema/aop 
  http://www.springframework.org/schema/aop/spring-aop.xsd 
  http://www.springframework.org/schema/context 
  http://www.springframework.org/schema/context/spring-context.xsd 
  http://www.springframework.org/schema/task 
  http://www.springframework.org/schema/task/spring-task.xsd"> 
 
 <context:annotation-config /> 
 <!-- spring掃描注解的配置 --> 
 <context:component-scan base-package="org.time" /> 
  
 <task:annotation-driven scheduler="qbScheduler" mode="proxy"/> 
 <task:scheduler id="qbScheduler" pool-size="10"/> 
 
</beans>

配置文件的頭部信息中比上一個引入了

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

<task:annotation-driven scheduler="qbScheduler" mode="proxy"/> 

<task:scheduler id="qbScheduler" pool-size="10"/>

這兩句配置信息是必須要寫的,這是spring識別@Scheduled注解的關鍵

這這樣簡單的幾句配置之后,開啟服務,運行結果:

如何正確的使用spring定時器 

s

看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

亚洲午夜精品一区二区_中文无码日韩欧免_久久香蕉精品视频_欧美主播一区二区三区美女