Package org.hibernate.service.spi

Examples of org.hibernate.service.spi.Wrapped.unwrap()


   */
  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
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.