日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

批处理(定时器) ssm spring-task

發布時間:2025/5/22 38 豆豆
生活随笔 收集整理的這篇文章主要介紹了 批处理(定时器) ssm spring-task 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1.新建TaskUtil.java

package com.proli.Util;import org.springframework.stereotype.Service;/*** Created by ex_xxx on 2017/3/12.*/ @Service public class TaskUtil {public void taskOne() {LogUtil.INTERGURATION.debug("howareryouok......debug"); LogUtil.INTERGURATION.info("howareryouok......info"); LogUtil.CONFIG.info("this is config ...info.."); LogUtil.CONFIG.debug("this is config ...debug.."); } public void taskTwo() { LogUtil.INTERGURATION.debug("howareryouok......debug"); LogUtil.INTERGURATION.info("howareryouok......info"); LogUtil.CONFIG.info("this is config ...info.."); LogUtil.CONFIG.debug("this is config ...debug.."); } }

2.新建 Scheduler-config.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:context="http://www.springframework.org/schema/context"xmlns:task="http://www.springframework.org/schema/task"xsi:schemaLocation=" http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-4.1.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-4.1.xsdhttp://www.springframework.org/schema/taskhttp://www.springframework.org/schema/task/spring-task-4.1.xsd"><context:component-scan base-package=" com.proli.Util" /><task:scheduler id="taskScheduler" pool-size="100" /><task:scheduled-tasks scheduler="taskScheduler"><!-- 每半分鐘觸發任務 --><task:scheduled ref="taskUtil" method="taskOne" cron="* 59 * * * ?"/><!-- 每20秒觸發任務 --><task:scheduled ref="taskUtil" method="taskTwo" cron="20 * * * * ?"/></task:scheduled-tasks></beans>

3.引入Scheduler.xml配置文件

  本人在spring-mvc中加載

<!--task定時任務xml--><import resource="config/scheduler/Scheduler-config.xml" />

?

轉載于:https://www.cnblogs.com/proli/p/6762233.html

總結

以上是生活随笔為你收集整理的批处理(定时器) ssm spring-task的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。