我有一个通过多个数据库运行的应用程序,并且每个数据库对所有表运行选择查询并将其转储到 hadoop。
我的设计是一次创建一个数据源连接,并使用获得的连接池在多个线程中运行选择查询。完成此数据源后,关闭连接并创建新连接。
这是异步代码
@Component
public class MySampleService {
private final static Logger LOGGER = Logger
.getLogger(MySampleService.class);
@Async
public Future<String> callAsync(JdbcTemplate template, String query) throws InterruptedException {
try {
jdbcTemplate.query(query);
//process the results
return new AsyncResult<String>("success");
}
catch (Exception ex){
return new AsyncResult<String>("failed");
}
}
这是来电者
public String taskExecutor() throws InterruptedException, ExecutionException {
Future<String> asyncResult1 = mySampleService.callAsync(jdbcTemplate,query1);
Future<String> asyncResult2 = mySampleService.callAsync(jdbcTemplate,query2);
Future<String> asyncResult3 = mySampleService.callAsync(jdbcTemplate,query3);
Future<String> asyncResult4 = mySampleService.callAsync(jdbcTemplate,query4);
LOGGER.info(asyncResult1.get());
LOGGER.info(asyncResult2.get());
LOGGER.info(asyncResult3.get());
LOGGER.info( asyncResult4.get());
//now all threads finished, close the connection
jdbcTemplate.getConnection().close();
}
我想知道这是否是正确的方法,或者做任何我缺少的开箱即用的现有/优化解决方案。我不能使用 spring-data-jpa,因为我的查询很复杂。
谢谢