com.github.drinkjava2.jtransactions.grouptx.GroupTxConnectionManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsqlbox Show documentation
Show all versions of jsqlbox Show documentation
jSqlBox is a full function DAO tool
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with this
* work for additional information regarding copyright ownership. The ASF
* licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.github.drinkjava2.jtransactions.grouptx;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import javax.sql.DataSource;
import com.github.drinkjava2.jtransactions.ConnectionManager;
import com.github.drinkjava2.jtransactions.TransactionsException;
/**
* DataSourceManager determine how to get or release connection from DataSource,
* it can be different transaction strategies like JDBC/SpringManaged/JTA..
*
* @author Yong Zhu
* @since 1.0.0
*/
public class GroupTxConnectionManager implements ConnectionManager {
private int transactionIsolation = Connection.TRANSACTION_READ_COMMITTED;
DataSource[] dataSources;
public GroupTxConnectionManager(DataSource... dataSources) {
this.dataSources = dataSources;
}
public GroupTxConnectionManager(Integer transactionIsolation, DataSource... dataSources) {
this.transactionIsolation = transactionIsolation;
this.dataSources = dataSources;
}
private ThreadLocal inTransation = new ThreadLocal() {
@Override
protected Boolean initialValue() {
return false;
}
};
private ThreadLocal