我正在尝试使用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 作为数据库。
有没有人遇到过这个问题?请让我知道可能出了什么问题。