Package org.camunda.bpm.engine.impl.db

Examples of org.camunda.bpm.engine.impl.db.DbSqlSessionFactory


    // wrap the SqlSessionFactory using a statement logger
    StatementLogSqlSessionFactory wrappedSessionFactory = new StatementLogSqlSessionFactory(sqlSessionFactory);
    processEngineConfiguration.setSqlSessionFactory(wrappedSessionFactory);

    // replace the sqlSessionFacorty used by the DbSqlSessionFactory as well
    DbSqlSessionFactory dbSqlSessionFactory = processEngineConfiguration.getDbSqlSessionFactory();
    dbSqlSessionFactory.setSqlSessionFactory(wrappedSessionFactory);
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.impl.db.DbSqlSessionFactory

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.