我正在尝试使用java.util.concurrent.Executor
执行独立任务并行。
我有以下工作代码
public class MiniTest {
private static String[] input;
static {
input = new String[] {
"task1",
"task2",
"task3",
"task4"
};
}
public static void main(String[] args) throws InterruptedException {
ExecutorService executor = Executors.newFixedThreadPool(2);
boolean atleastOnePoolStarted = false;
for (int i = 0; i < input.length; i++) {
Runnable worker = new WorkerThread(input[i] + i);
executor.execute(worker);
}
executor.shutdown();
executor.awaitTermination(15,TimeUnit.MINUTES);
System.out.println("Finished all threads");
}
}
这工作正常,我看到并行执行。
但问题是,当我将WorkerThread
替换为我的另一个类Runnable
时,并通过连接到数据库来执行存储过程调用。在这种情况下,线程正在启动,但对存储过程的实际调用似乎是以程序方式进行的,即第二个java-proc调用在第一个调用完成之前不会执行。
数据库部分工作正常,因为它是独立验证和测试的。我只需要同时打2-3个电话。我使用Sybase作为数据库。
以前有人遇到过这个问题吗?请让我知道可能出现的问题。
答案 0 :(得分:0)
有几个想法可以解决可能出错的问题: