All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.onetwo.boot.tx.TransactionManagerConfig Maven / Gradle / Ivy

package org.onetwo.boot.tx;

import javax.annotation.Resource;
import javax.sql.DataSource;

import org.springframework.context.annotation.Bean;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.transaction.PlatformTransactionManager;

//@EnableTransactionManagement 
public class TransactionManagerConfig {
	
	@Resource
	private DataSource dataSource;
	
	@Bean
    public PlatformTransactionManager txManager() {
        return new DataSourceTransactionManager(dataSource);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy