我开始移植到java线程池而不是拥有我的框架用于池化线程。所以,我为这个目标写了一个样本。实际上,最大的要求是如果执行太晚则停止正在运行的线程。另外,为了达到这个目的,我使用了cancel
类的Future
方法。总之,问题是在取消它之后运行的线程没有停止并且它继续执行。我的代码是:
public class ThreadPoolWarmup
{
static class CountDownClock1 implements Callable<Boolean>
{
public Boolean call() throws Exception
{
String threadName = Thread.currentThread().getName();
long i = 0;
for (; ; )
{
if ((i % 1000000000) == 0)
System.out.println(i + ", ");
i++;
}
}
}
public static void main(String[] args)
{
Future<Boolean> f1 = null;
try
{
ApplicationContext context = new ClassPathXmlApplicationContext("threadpool.xml");
ThreadPoolTaskExecutor taskExecutor = (ThreadPoolTaskExecutor) context.getBean("taskExecutor");
f1 = taskExecutor.submit(new CountDownClock1());
Boolean b1 = f1.get(15,TimeUnit.SECONDS);
System.out.println("Reslt is ===========>>>>> " + b1);
}
catch (Exception t)
{
t.printStackTrace();
boolean c1 = f1.cancel(true);
System.out.println("Cancel result ======>>>>>>>>> " + c1);
}
}
}
弹簧上下文(threadpool.xml
)也是:
<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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<bean id="taskExecutor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor">
<property name="corePoolSize" value="3" />
<property name="maxPoolSize" value="3" />
<property name="WaitForTasksToCompleteOnShutdown" value="true" />
<property name="queueCapacity" value="-1"/>
<property name="keepAliveSeconds" value="30"/>
</bean>
当我运行该程序时,我得到了以下结果:
0,
1000000000,
2000000000,
3000000000,
4000000000,
5000000000,
java.util.concurrent.TimeoutException
at java.util.concurrent.FutureTask.get(FutureTask.java:205)
at thread.ThreadPoolWarmup.main(ThreadPoolWarmup.java:38)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
Cancel result ======>>>>>>>>> true
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)
6000000000,
7000000000,
8000000000,
9000000000,
10000000000,
11000000000,
12000000000,
13000000000,
14000000000,
(我没有写出所有输出,因为它会一直持续下去。)
我告诉了你我的问题,我有另一个问题:当我取消线程并停止它时,线程返回线程池并且可以执行另一个任务吗?
答案 0 :(得分:1)
如果已经运行,您的任务就完全无法解决,因为任务没有执行任何操作来检查线程是否被中断。
如果你将你的循环变成while(!Thread.currentThread().isInterrupted())
,cancel(true)
可以尝试中断线程,然后循环会注意到它。
在任务中使用可中断操作也会使其可取消。