Examples of SessionFactoryImpl


Examples of org.hibernate.internal.SessionFactoryImpl

    Properties copy = new Properties();
    copy.putAll( properties );
    ConfigurationHelper.resolvePlaceHolders( copy );
    Settings settings = buildSettings( copy, serviceRegistry );

    return new SessionFactoryImpl(
        this,
        mapping,
        serviceRegistry,
        settings,
        sessionFactoryObserver
View Full Code Here

Examples of org.hibernate.internal.SessionFactoryImpl

    Properties copy = new Properties();
    copy.putAll( properties );
    ConfigurationHelper.resolvePlaceHolders( copy );
    Settings settings = buildSettings( copy, serviceRegistry );

    return new SessionFactoryImpl(
        this,
        mapping,
        serviceRegistry,
        settings,
        sessionFactoryObserver
View Full Code Here

Examples of org.idevlab.rjc.SessionFactoryImpl

  private volatile RjcSubscription subscription;
  private volatile RedisNodeSubscriber subscriber;

  public RjcConnection(org.idevlab.rjc.ds.RedisConnection connection, int dbIndex) {
    SingleDataSource connectionDataSource = new SingleDataSource(connection);
    session = new SessionFactoryImpl(connectionDataSource).create();
    subscriber = new RedisNodeSubscriber();
    subscriber.setDataSource(new SingleDataSource(new CloseSuppressingRjcConnection(connection)));
    client = new Client(connection);

    this.dbIndex = dbIndex;
View Full Code Here

Examples of org.neo4j.server.webadmin.rest.SessionFactoryImpl

    private final Database database;

    public RouteSearchResource( @Context Database database,
            @Context HttpServletRequest req, @Context OutputFormat output )
    {
        this( new SessionFactoryImpl( req.getSession( true ) ), database,
                output );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.