- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Spring线程池ThreadPoolExecutor配置并且得到任务执行的结果由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
用threadpoolexecutor的时候,又想知道被执行的任务的执行情况,这时就可以用futuretask.
threadpooltask 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package
com.paul.threadpool;
import
java.io.serializable;
import
java.util.concurrent.callable;
public
class
threadpooltask
implements
callable<string>, serializable {
private
static
final
long
serialversionuid =
0
;
// 保存任务所需要的数据
private
object threadpooltaskdata;
private
static
int
consumetasksleeptime =
2000
;
public
threadpooltask(object tasks) {
this
.threadpooltaskdata = tasks;
}
public
synchronized
string call()
throws
exception {
// 处理一个任务,这里的处理方式太简单了,仅仅是一个打印语句
system.out.println(
"开始执行任务:"
+ threadpooltaskdata);
string result =
""
;
// //便于观察,等待一段时间
try
{
// long r = 5/0;
for
(
int
i=
0
; i<
100000000
; i++){
}
result =
"ok"
;
}
catch
(exception e) {
e.printstacktrace();
result =
"error"
;
}
threadpooltaskdata =
null
;
return
result;
}
}
|
模拟客户端提交的线程 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package
com.paul.threadpool;
import
java.util.concurrent.executionexception;
import
java.util.concurrent.futuretask;
import
org.springframework.scheduling.concurrent.threadpooltaskexecutor;
public
class
starttaskthread
implements
runnable{
private
threadpooltaskexecutor threadpooltaskexecutor;
private
int
i;
public
starttaskthread(threadpooltaskexecutor threadpooltaskexecutor,
int
i)
{
this
.threadpooltaskexecutor = threadpooltaskexecutor;
this
.i = i;
}
@override
public
synchronized
void
run() {
string task =
"task@ "
+ i;
system.out.println(
"创建任务并提交到线程池中:"
+ task);
futuretask<string> futuretask =
new
futuretask<string>(
new
threadpooltask(task));
threadpooltaskexecutor.execute(futuretask);
// 在这里可以做别的任何事情
string result =
null
;
try
{
// 取得结果,同时设置超时执行时间为0.1秒。同样可以用future.get(),不设置执行超时时间取得结果
result = futuretask.get();
}
catch
(interruptedexception e) {
futuretask.cancel(
true
);
}
catch
(executionexception e) {
futuretask.cancel(
true
);
}
catch
(exception e) {
futuretask.cancel(
true
);
// 超时后,进行相应处理
}
finally
{
system.out.println(
"task@"
+ i +
":result="
+ result);
}
}
|
spring配置文件 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
<?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:p=
"http://www.springframework.org/schema/p"
xmlns:aop=
"http://www.springframework.org/schema/aop"
xmlns:tx=
"http://www.springframework.org/schema/tx"
xsi:schemalocation="
http:
//www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http:
//www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http:
//www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
<!-- 配置数据源 -->
<bean id=
"datasource"
class
=
"org.apache.commons.dbcp.basicdatasource"
destroy-method=
"close"
p:driverclassname=
"com.mysql.jdbc.driver"
p:url=
"jdbc:mysql://localhost:3306/mb_main?useunicode=true&characterencoding=utf-8&useserverprepstmts=true"
p:username=
"root"
p:password=
"1234"
/>
<!-- 配置jdbc模板 -->
<bean id=
"jdbctemplate"
class
=
"org.springframework.jdbc.core.jdbctemplate"
p:datasource-ref=
"datasource"
/>
<!-- 事务管理器 -->
<bean id=
"transactionmanager"
class
=
"org.springframework.jdbc.datasource.datasourcetransactionmanager"
p:datasource-ref=
"datasource"
/>
<tx:advice id=
"jdbctxadvice"
transaction-manager=
"transactionmanager"
>
<tx:attributes>
<tx:method name=
"*"
/>
</tx:attributes>
</tx:advice>
<!-- 使用aop/tx命名空间配置事务管理,这里对service包下的服务类方法提供事务 -->
<aop:config>
<aop:pointcut id=
"jdbcservicemethod"
expression=
"within(com.baobaotao.service..*)"
/>
<aop:advisor pointcut-ref=
"jdbcservicemethod"
advice-ref=
"jdbctxadvice"
/>
</aop:config>
<!-- 配置dao
<bean id=
"loginlogdao"
class
=
"com.baobaotao.dao.loginlogdao"
p:jdbctemplate-ref=
"jdbctemplate"
/>
<bean id=
"userdao"
class
=
"com.baobaotao.dao.userdao"
p:jdbctemplate-ref=
"jdbctemplate"
/>
<bean id=
"userservice"
class
=
"com.baobaotao.service.userservice"
p:userdao-ref=
"userdao"
p:loginlogdao-ref=
"loginlogdao"
/>
-->
<bean id=
"threadpooltaskexecutor"
class
=
"org.springframework.scheduling.concurrent.threadpooltaskexecutor"
>
<!-- 核心线程数,默认为
1
-->
<property name=
"corepoolsize"
value=
"10"
/>
<!-- 最大线程数,默认为integer.max_value -->
<property name=
"maxpoolsize"
value=
"50"
/>
<!-- 队列最大长度,一般需要设置值>=notifyscheduledmainexecutor.maxnum;默认为integer.max_value
<property name=
"queuecapacity"
value=
"1000"
/>
-->
<!-- 线程池维护线程所允许的空闲时间,默认为60s -->
<property name=
"keepaliveseconds"
value=
"300"
/>
<!-- 线程池对拒绝任务(无线程可用)的处理策略,目前只支持abortpolicy、callerrunspolicy;默认为后者 -->
<property name=
"rejectedexecutionhandler"
>
<!-- abortpolicy:直接抛出java.util.concurrent.rejectedexecutionexception异常 -->
<!-- callerrunspolicy:主线程直接执行该任务,执行完之后尝试添加下一个任务到线程池中,可以有效降低向线程池内添加任务的速度 -->
<!-- discardoldestpolicy:抛弃旧的任务、暂不支持;会导致被丢弃的任务无法再次被执行 -->
<!-- discardpolicy:抛弃当前任务、暂不支持;会导致被丢弃的任务无法再次被执行 -->
<bean
class
=
"java.util.concurrent.threadpoolexecutor$callerrunspolicy"
/>
</property>
</bean>
</beans>
|
测试类 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package
com.paul.threadpool;
import
java.util.concurrent.arrayblockingqueue;
import
java.util.concurrent.threadpoolexecutor;
import
java.util.concurrent.timeunit;
import
org.junit.test;
import
org.springframework.beans.factory.annotation.autowired;
import
org.springframework.scheduling.concurrent.threadpooltaskexecutor;
import
org.springframework.test.context.contextconfiguration;
import
org.springframework.test.context.junit4.abstractjunit4springcontexttests;
@contextconfiguration
public
class
testthreadpool
extends
abstractjunit4springcontexttests{
private
static
int
producetasksleeptime =
10
;
private
static
int
producetaskmaxnumber =
1000
;
@autowired
private
threadpooltaskexecutor threadpooltaskexecutor;
public
threadpooltaskexecutor getthreadpooltaskexecutor() {
return
threadpooltaskexecutor;
}
public
void
setthreadpooltaskexecutor(
threadpooltaskexecutor threadpooltaskexecutor) {
this
.threadpooltaskexecutor = threadpooltaskexecutor;
}
@test
public
void
testthreadpoolexecutor()
{
// 构造一个线程池
final
threadpoolexecutor threadpool =
new
threadpoolexecutor(
2
,
4
,
600
,
timeunit.seconds,
new
arrayblockingqueue<runnable>(
3
),
new
threadpoolexecutor.callerrunspolicy());
for
(
int
i =
1
; i <= producetaskmaxnumber; i++) {
try
{
thread.sleep(producetasksleeptime);
}
catch
(interruptedexception e1) {
e1.printstacktrace();
}
new
thread(
new
starttaskthread(threadpooltaskexecutor,i)).start();
}
}
}
|
项目截图(基于maven构建) 。
运行截图:
如果遇到cpu忙执行超过1秒的会返回null 。
总结 。
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我的支持。如果你想了解更多相关内容请查看下面相关链接 。
原文链接:http://www.blogjava.net/paulwong/archive/2011/12/07/365773.html 。
最后此篇关于Spring线程池ThreadPoolExecutor配置并且得到任务执行的结果的文章就讲到这里了,如果你想了解更多关于Spring线程池ThreadPoolExecutor配置并且得到任务执行的结果的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
Task.WaitAll 方法等待所有任务,Task.WaitAny 方法等待一个任务。如何等待任意N个任务? 用例:下载搜索结果页面,每个结果都需要一个单独的任务来下载和处理。如果我使用 WaitA
我正在查看一些像这样的遗留 C# 代码: await Task.Run(() => { _logger.LogException(LogLevel.Error, mes
如何在 Linux 中运行 cron 任务? 关注此Q&A ,我有这个 cron 任务要运行 - 只是将一些信息写入 txt 文件, // /var/www/cron.php $myfile = fo
原谅我的新手问题,但我想按顺序执行三个任务并在剧本中使用两个角色: 任务 角色 任务 角色 任务 这是我到目前为止(任务,角色,任务): --- - name: Task Role Task ho
我有一个依赖于 installDist 的自定义任务 - 不仅用于执行,还依赖于 installDist 输出: project.task('run', type: JavaExec, depends
从使用 Wix 创建的 MSI 运行卸载时,我需要在尝试删除任何文件之前强行终止在后台运行的进程。主要应用程序由一个托盘图标组成,它反射(reflect)了 bg 进程监控本地 Windows 服务的
我想编写 Ant 任务来自动执行启动服务器的任务,然后使用我的应用程序的 URL 打开 Internet Explorer。 显然我必须执行 startServer先任务,然后 startApplic
使用 ASP.NET 4.5,我正在尝试使用新的 async/await 玩具。我有一个 IDataReader 实现类,它包装了一个特定于供应商的阅读器(如 SqlDatareader)。我有一个简
使用命令 gradle tasks可以得到一份所有可用任务的报告。有什么方法可以向此命令添加参数并按任务组过滤任务。 我想发出类似 gradle tasks group:Demo 的命令筛选所有任务并
除了sshexec,还有什么办法吗?任务要做到这一点?我知道您可以使用 scp 复制文件任务。但是,我需要执行其他操作,例如检查是否存在某些文件夹,然后将其删除。我想使用类似 condition 的东
假设我有字符串 - "D:\ApEx_Schema\Functions\new.sql@@\main\ONEVIEW_Integration\3" 我需要将以下内容提取到 diff 变量中 - 文档名
我需要编写一个 ant 任务来确定某个文件是否是只读的,如果是,则失败。我想避免使用自定义选择器来为我们的构建系统的性质做这件事。任何人都有任何想法如何去做?我正在使用 ant 1.8 + ant-c
这是一个相当普遍的计算机科学问题,并不特定于任何操作系统或框架。 因此,我对与在线程池上切换任务相关的开销感到有些困惑。在许多情况下,给每个作业分配自己的特定线程是没有意义的(我们不想创建太多硬件线程
我正在使用以下 Ansible playbook 一次性关闭远程 Ubuntu 主机列表: - hosts: my_hosts become: yes remote_user: my_user
如何更改 Ant 中的当前工作目录? Ant documentation没有 任务,在我看来,最好的做法是不要更改当前工作目录。 但让我们假设我们仍然想这样做——你会如何做到这一点?谢谢! 最佳答案
是否可以运行 cronjob每三天一次?或者也许每月 10 次。 最佳答案 每三天运行一次 - 或更短时间在月底运行一次。 (如果上个月有 31 天,它将连续运行 2 天。) 0 0 */3 * *
如何在 Gradle 任务中执行托管在存储库中的工具? 在我的具体情况下,我正在使用 Gradle 构建一个 Android 应用程序。我添加了一项任务,将一些 protobuf 数据从文本编码为二进
我的项目有下一个结构: Root |- A |- C (depends on A) \- B (depends on A) 对于所有子项目,我们使用自己的插件生成资源:https://githu
我设置了一个具有4个节点的Hadoop群集,其中一个充当HDFS的NameNode以及Yarn主节点。该节点也是最强大的。 现在,我分发了2个文本文件,一个在node01(名称节点)上,一个在node
在 TFS 2010 中为多个用户存储任务的最佳方式是什么?我只能为一项任务分配一个。 (例如:当我计划向所有开发人员演示时) (这是一个 Scrum Msf 敏捷项目,其中任务是用户故事的一部分)
我是一名优秀的程序员,十分优秀!