spring的定時任務配置(註解)

2021-08-20 20:03:43 字數 1395 閱讀 5830

參考部落格:

我這邊專案的需求是:每天晚上1點刪除資料庫表t_tempclob中的所有記錄;

**:controller:

@controller

public

class

ajaxfiledownload

}

service:

/**

* 刪除所有大文字

*/public

intdeletealltempclob()

catch

(exception e)

return

count;

}

public

inte***ce

/*** 刪除所有的大文字

*/public

int deletealltempclob() throws

exception;

}

<?xml version="1.0" encoding="utf-8" ?>

delete from t_tempclob

spring-mvc.xml中關於task的配置:

xml version="1.0" encoding="utf-8"

?>

<

beans

xmlns

=""xmlns:xsi

=""xmlns:mvc

=""xmlns:p

=""xmlns:aop

=""xmlns:context

=""xmlns:jee

=""xmlns:tx

=""xmlns:task

=""xsi:schemalocation

="

/spring-aop-4.0.xsd

/spring-beans-4.0.xsd

/spring-context-4.0.xsd

/spring-jee-4.0.xsd

/spring-tx-4.0.xsd

/spring-mvc-3.2.xsd

/spring-task-3.0.xsd"

>

<

context:component-scan

base-package

="com.cy.controller"

/>

<

task:annotation-driven

/>

beans

>

cron表示式說明:

參考部落格:

Spring註解配置定時任務

首先在配置檔案頭部的必須要有 xmlns task 其次xsi schemalocation必須為其新增 spring task.xsd然後spring掃瞄過程必須涵蓋定時任務類所在的目錄 com.xx.xx屬於定時任務類的父級甚至更高階 然後設定動作啟用定時任務應用 import org.spri...

Spring註解配置定時任務

首先在配置檔案頭部的必須要有 xmlns task 其次xsi schemalocation必須為其新增 org schema task org schema task spring task.xsd然後spring掃瞄過程必須涵蓋定時任務類所在的目錄 com.xx.xx屬於定時任務類的父級甚至更高...

Spring註解配置定時任務

首先在配置檔案頭部的必須要有 xmlns task 1其次xsi schemalocation必須為其新增 spring task.xsd12 然後spring掃瞄過程必須涵蓋定時任務類所在的目錄 1com.xx.xx屬於定時任務類的父級甚至更高階 然後設定動作啟用定時任務 1最後設定任務類 imp...