Examples of DriverManagerDataSource


Examples of org.springframework.jdbc.datasource.DriverManagerDataSource

    assertTrue(invocations.contains("addResource mapping2.hbm.jar"));
    assertTrue(invocations.contains("newSessionFactory"));
  }

  public void testLocalSessionFactoryBeanWithDataSourceAndProperties() throws Exception {
    final DriverManagerDataSource ds = new DriverManagerDataSource();
    final Set invocations = new HashSet();
    LocalSessionFactoryBean sfb = new LocalSessionFactoryBean() {
      protected Configuration newConfiguration() {
        return new Configuration() {
          public Configuration addInputStream(InputStream is) {
View Full Code Here

Examples of org.springframework.jdbc.datasource.DriverManagerDataSource

      protected SessionFactory newSessionFactory(Configuration config) {
        return sessionFactory;
      }
    };
    sfb.setMappingResources(new String[0]);
    sfb.setDataSource(new DriverManagerDataSource());
    sfb.setExposeTransactionAwareSessionFactory(false);
    sfb.afterPropertiesSet();
    assertTrue(sessionFactory == sfb.getObject());
    sfb.destroy();
    factoryControl.verify();
View Full Code Here

Examples of org.springframework.jdbc.datasource.DriverManagerDataSource

          }
        };
      }
    };
    sfb.setMappingResources(new String[0]);
    sfb.setDataSource(new DriverManagerDataSource());
    MockControl interceptorControl = MockControl.createControl(Interceptor.class);
    Interceptor entityInterceptor = (Interceptor) interceptorControl.getMock();
    interceptorControl.replay();
    sfb.setEntityInterceptor(entityInterceptor);
    try {
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.