首页 > 代码库 > spring+task配置
spring+task配置
1.spring+task文件配置
1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 4 xmlns:task="http://www.springframework.org/schema/task" 5 xmlns:context="http://www.springframework.org/schema/context" 6 xsi:schemaLocation="http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-4.2.xsd 7 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd 8 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd"> 9 10 11 <task:annotation-driven/> 12 <context:component-scan base-package="com.task"/> 13 </beans>
2.业务类
1 package com.task; 2 3 import org.springframework.scheduling.annotation.Scheduled; 4 import org.springframework.stereotype.Component; 5 6 @Component 7 public class TestScheduled { 8 9 @Scheduled(cron="0/5 * * * * ? ") //每5秒执行一次 10 public void test(){ 11 for(long i=0;i<1000000000000000000l;i++){ 12 System.out.print((char)i); 13 if(i%15==0){ 14 System.out.println(); 15 } 16 } 17 } 18 }
启动程序就开始跑了
spring+task配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。