Examples of SessionFactoryServiceRegistry


Examples of org.hibernate.service.spi.SessionFactoryServiceRegistry

  @Override
  public void setConfiguration(String persistenceUnit,
      HibernateConfiguration hibernateConfiguration) {
   
    final SessionFactoryServiceRegistry serviceRegistry = hibernateConfiguration.getServiceRegistry();
    synchronized (this.delayedDataSources) {
      this.dialectResolver = serviceRegistry.getService(DialectResolver.class);
   
      for (final Tuple<DataSource, ValidationQueryRegistrationHandler> delayedDataSource : this.delayedDataSources) {
        final String validationQuery = this.getValidationQuery(delayedDataSource.first);
        delayedDataSource.second.setValidationQuery(validationQuery);
      }
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.