spring+task配置
Posted 老邱2
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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配置的主要内容,如果未能解决你的问题,请参考以下文章
Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题