6465666768697071727374
@Bean public PlatformTransactionManager transactionManager() throws SQLException { DataSourceTransactionManager txmgr = new DataSourceTransactionManager(); txmgr.setDataSource(dataSource()); txmgr.afterPropertiesSet(); return txmgr; } @Bean
6869707172737475767778