我是java.util.concurrent包的新手,并编写了一个从DB中获取一些行的简单方法。我确保我的数据库调用会抛出异常来处理它。但我没有看到异常传播给我。而是调用我的方法返回null。
在这种情况下,有人可以帮助我吗?这是我的示例方法调用
private FutureTask<List<ConditionFact>> getConditionFacts(final Member member) throws Exception {
FutureTask<List<ConditionFact>> task = new FutureTask<List<ConditionFact>>(new Callable<List<ConditionFact>>() {
public List<ConditionFact> call() throws Exception {
return saeFactDao.findConditionFactsByMember(member);
}
});
taskExecutor.execute(task);
return task;
}
我用Google搜索并在其周围找到了一些页面。但是没有看到任何具体的解决方案。专家请帮帮....
taskExecutor是org.springframework.core.task.TaskExecutor的对象
答案 0 :(得分:7)
FutureTask将在新线程中执行,如果发生异常,则将其存储在实例字段中。只有当你要求执行结果时才会得到异常,包含在ExecutionException
内:
FutureTask<List<ConditionFact>> task = getConditionFacts(member);
// wait for the task to complete and get the result:
try {
List<ConditionFact> conditionFacts = task.get();
}
catch (ExecutionException e) {
// an exception occurred.
Throwable cause = e.getCause(); // cause is the original exception thrown by the DAO
}