Package org.makersoft.shards

Examples of org.makersoft.shards.ShardedConfiguration


* @see SqlSessionFactoryBuilder
*/
public class ShardedSqlSessionFactoryBuilder {
 
  public ShardedSqlSessionFactory build(List<ShardConfiguration> shardConfigs, ShardStrategyFactory shardStrategyFactory) {
    ShardedConfiguration configuration = new ShardedConfiguration(shardConfigs, shardStrategyFactory, null);
    return configuration.buildShardedSessionFactory();
  }
View Full Code Here


    ShardedConfiguration configuration = new ShardedConfiguration(shardConfigs, shardStrategyFactory, null);
    return configuration.buildShardedSessionFactory();
  }

  public ShardedSqlSessionFactory build(List<ShardConfiguration> shardConfigs, ShardStrategyFactory shardStrategyFactory, IdGenerator idGenerator) {
    ShardedConfiguration configuration = new ShardedConfiguration(shardConfigs, shardStrategyFactory, idGenerator);
    return configuration.buildShardedSessionFactory();
  }
View Full Code Here

        shardConfigs.add(shardConfiguration);
      }
     
    }
   
    ShardedConfiguration configuration = new ShardedConfiguration(shardConfigs, this.shardStrategyFactory, idGenerator);
    shardedSqlSessionFactory = configuration.buildShardedSessionFactory();
  }
View Full Code Here

TOP

Related Classes of org.makersoft.shards.ShardedConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.