我正在使用DataSource和DataSourceTransactionManager弹簧豆,并将它们连接到JobRepository bean中。其中之一不应该是生命周期感知的,或者在我的 Spring 应用程序关闭后具有关闭连接的功能。除非我在退出之前手动调用 DataSourceUtils.releaseConnection(...),否则我的进程挂起。我在这里错过了什么吗?我的代码中是否有其他错误会导致这种情况?
是否需要使用连接池?如何使 spring 正确管理连接生命周期。
@Bean
public DataSource dataSource(@Value("${batch_db.url}") String dataSourceUrl, AWSCredentials awsCredentials) {
DriverManagerDataSource dataSource = new DriverManagerDataSource();
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
dataSource.setUrl(dataSourceUrl);
dataSource.setUsername(awsCredentials.getAWSAccessKeyId());
dataSource.setPassword(awsCredentials.getAWSSecretKey());
return dataSource;
}
@Bean
@DependsOn(value = "dataSource")
public DataSourceTransactionManager transactionManager(DataSource dataSource) {
DataSourceTransactionManager transactionManager = new DataSourceTransactionManager();
transactionManager.setDataSource(dataSource);
return transactionManager;
}
@Bean
@DependsOn(value = "dataSource")
public JobRepository jobRepository(DataSource dataSource, PlatformTransactionManager transactionManager) throws Exception {
JobRepositoryFactoryBean jobRepository = new JobRepositoryFactoryBean();
jobRepository.setDataSource(dataSource);
jobRepository.setTransactionManager(transactionManager);
return jobRepository.getJobRepository();
}
根据 javadoc for DriverManagerDataSource
(http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/jdbc/datasource/DriverManagerDataSource.html),每次从它建立连接时,该类都会盲目地创建一个新连接。 从那里,没有额外的连接管理,因此由您来管理它们。 如果要让其他人管理连接,则需要使用适当的连接池。