Package org.hibernate.service.spi

Examples of org.hibernate.service.spi.Wrapped


   * @return the DataSource, or {@code null} if none found
   * @see org.hibernate.engine.spi.SessionFactoryImplementor#getConnectionProvider
   */
  public static DataSource getDataSource(SessionFactory sessionFactory) {
    if (getConnectionProviderMethod != null && sessionFactory instanceof SessionFactoryImplementor) {
      Wrapped cp = (Wrapped) ReflectionUtils.invokeMethod(getConnectionProviderMethod, sessionFactory);
      if (cp != null) {
        return cp.unwrap(DataSource.class);
      }
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.service.spi.Wrapped

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.