Example usage for org.apache.ibatis.session SqlSession interface-usage

List of usage examples for org.apache.ibatis.session SqlSession interface-usage

Introduction

In this page you can find the example usage for org.apache.ibatis.session SqlSession interface-usage.

Usage

From source file com.aspectran.mybatis.SqlSessionAgent.java

/**
 * The SqlSession Agent.
 */
public class SqlSessionAgent implements SqlSession, ActivityContextAware {

    private final String relevantAspectId;

From source file com.baomidou.mybatisplus.MybatisSqlSessionTemplate.java

/**
 * Copy SqlSessionTemplate
 *
 * @see org.mybatis.spring.SqlSessionTemplate
 */
public class MybatisSqlSessionTemplate implements SqlSession, DisposableBean {

From source file com.github.dbutils.mybatis.extend.MybatisSqlSessionTemplate.java

/**
 * Thread safe, Spring managed, {@code SqlSession} that works with Spring
 * transaction management to ensure that that the actual SqlSession used is the
 * one associated with the current Spring transaction. In addition, it manages
 * the session life-cycle, including closing, committing or rolling back the
 * session as necessary based on the Spring transaction configuration.

From source file com.ocean.ddl.mybatis.spring.support.SqlSessionTemplate.java

/**
 * Thread safe, Spring managed, {@code SqlSession} that works with Spring transaction management to ensure that that the
 * actual SqlSession used is the one associated with the current Spring transaction. In addition, it manages the session
 * life-cycle, including closing, committing or rolling back the session as necessary based on the Spring transaction
 * configuration. <p> The template needs a SqlSessionFactory to create SqlSessions, passed as a constructor argument. It
 * also can be constructed indicating the executor type to be used, if not, the default executor type, defined in the

From source file com.raycloud.cobarclient.mybatis.spring.MySqlSessionTemplate.java

public class MySqlSessionTemplate implements SqlSession, InitializingBean, DisposableBean {
    private Log log = LogFactory.getLog(MySqlSessionTemplate.class);
    protected Map<String, Environment> environmentMap = new HashMap<String, Environment>();
    protected Set<Shard> shards;
    protected Router router;

From source file com.sinotopia.mybatis.plus.MybatisSqlSessionTemplate.java

/**
 * Copy SqlSessionTemplate
 *
 * @see org.mybatis.spring.SqlSessionTemplate
 */
public class MybatisSqlSessionTemplate implements SqlSession, DisposableBean {

From source file com.yimidida.shards.session.ShardedSqlSession.java

/**
 * 
 * @see SqlSession
 * @see ShardedSqlSessionFactory
 */
public interface ShardedSqlSession extends SqlSession {

From source file com.yimidida.shards.spring.ShardedSqlSessionTemplate.java

/**
 * 
 */
public class ShardedSqlSessionTemplate implements SqlSession, InitializingBean {

    public ShardedSqlSessionTemplate(SqlSessionFactory sqlSessionFactory) {

From source file jp.co.ctc_g.jfw.core.jdbc.JxSqlSession.java

/**
 * <p>
 * ????J-Framework ??? {@link SqlSession} ??
 * SqlSession???????
 * J-Framework???????????
 * </p>

From source file och.comp.db.base.mybatis.SqlSessionWrapper.java

public abstract class SqlSessionWrapper implements SqlSession {

    protected SqlSession real;

    public SqlSessionWrapper(SqlSession real) {
        this.real = real;