博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring多线程与定时任务
阅读量:6257 次
发布时间:2019-06-22

本文共 3528 字,大约阅读时间需要 11 分钟。

本篇主要描述一下spring的多线程的使用与定时任务的使用.

1.spring多线程任务的使用

spring通过任务执行器TaskExecutor来实现多线程与并发编程。通常使用ThreadPoolTaskExecutor来实现一个基于线程池的TaskExecutor.

首先你要实现AsyncConfigurer 这个接口,目的是开启一个线程池

代码如下:

package com.foreveross.service.weixin.test.thread;import java.util.concurrent.Executor;import org.springframework.aop.interceptor.AsyncUncaughtExceptionHandler;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.Configuration;import org.springframework.scheduling.annotation.AsyncConfigurer;import org.springframework.scheduling.annotation.EnableAsync;import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;/** * 注入一个线程池 * @author mingge * */@Configuration@ComponentScan("com.foreveross.service.weixin.test.thread")@EnableAsyncpublic class TaskExecutorConfig implements AsyncConfigurer {    @Override    public Executor getAsyncExecutor() {        ThreadPoolTaskExecutor taskExecutor=new ThreadPoolTaskExecutor();        taskExecutor.setCorePoolSize(5);        taskExecutor.setMaxPoolSize(20);        taskExecutor.setQueueCapacity(25);        taskExecutor.initialize();        return taskExecutor;    }    @Override    public AsyncUncaughtExceptionHandler getAsyncUncaughtExceptionHandler() {        return null;    }    }

 

然后注入一个类,实现你的业务,并在你的Bean的方法中使用@Async注解来声明其是一个异步任务

代码如下:

package com.foreveross.service.weixin.test.thread;import org.springframework.scheduling.annotation.Async;import org.springframework.stereotype.Service;/** * 线程池任务 * @author mingge * */@Servicepublic class TaskService {    @Async    public void executeAsyncTask(int i){        System.out.println("执行异步任务:"+i);    }        @Async    public void executeAsyncTask1(int i){        System.out.println("执行异步任务1:"+(i+i));    }}

最后通过测试,可以看到你的实现是异步执行了.

package com.foreveross.service.weixin.test.thread;import org.springframework.context.annotation.AnnotationConfigApplicationContext;/** *  * @author mingge * */public class Test {    public static void main(String[] args) {        AnnotationConfigApplicationContext context=new AnnotationConfigApplicationContext(TaskExecutorConfig.class);        TaskService taskService=context.getBean(TaskService.class);        for(int i=0;i<20;i++){            taskService.executeAsyncTask(i);            taskService.executeAsyncTask1(i);        }        //最后可以根据结果可以看出结果是并发执行而不是顺序执行的呢        context.close();    }}

 

1.spring定时任务的使用

在java原生态中,我们使用timer就可以了,这里小编说一些在Spring中的定时任务的使用

package com.foreveross.service.weixin.test.thread;import org.springframework.context.annotation.ComponentScan;import org.springframework.context.annotation.Configuration;import org.springframework.scheduling.annotation.EnableScheduling;@Configuration@ComponentScan("com.foreveross.service.weixin.test.thread")@EnableScheduling//开启对定时器的支持public class TaskSchedulerConfig {}
package com.foreveross.service.weixin.test.thread;import java.util.Date;import org.springframework.scheduling.annotation.Scheduled;import org.springframework.stereotype.Service;@Servicepublic class TimerTaskJob {    @Scheduled(fixedRate=2000)    public void test(){        System.out.println("我是定时任务:"+new Date().getSeconds());    }}

 

package com.foreveross.service.weixin.test.thread;import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class TestTimer {    public static void main(String[] args) {        AnnotationConfigApplicationContext context=new AnnotationConfigApplicationContext(TaskSchedulerConfig.class);                //context.close();    }}

 

记一下总结,或许以后有用...

 

每天进步一点点...

 

转载地址:http://fqtsa.baihongyu.com/

你可能感兴趣的文章
java一些面试题
查看>>
干货型up主
查看>>
获取页面中所有dropdownlist类型控件
查看>>
读《淘宝数据魔方技术架构解析》有感
查看>>
[转载]如何破解Excel VBA密码
查看>>
【BZOJ】2563: 阿狸和桃子的游戏
查看>>
redis 中文字符显示
查看>>
国内外MD5在线解密网站
查看>>
【OC语法要闻速览】一、方法调用
查看>>
Git-命令行-删除本地和远程分支
查看>>
本文将介绍“数据计算”环节中常用的三种分布式计算组件——Hadoop、Storm以及Spark。...
查看>>
顺序图【6】--☆☆
查看>>
Docker Swarm 让你事半功倍
查看>>
string.Format字符串格式说明
查看>>
[转]IC行业的牛人
查看>>
javaScript事件(四)event的公共成员(属性和方法)
查看>>
linux系统常用命令
查看>>
在 Word 中的受支持的区域设置标识符的列表
查看>>
Caffe + Ubuntu 14.04 64bit + CUDA 6.5 配置说明2
查看>>
An easy to use android color picker library
查看>>