Package org.apache.deltaspike.jpa.impl.datasource

Examples of org.apache.deltaspike.jpa.impl.datasource.ConfigurableDataSource


    @Test
    public void testConfigurableDataSource() throws Exception
    {
        // we do not use @Inject as this is normally instantiated
        // via newInstance()
        ConfigurableDataSource cds = new ConfigurableDataSource();
        Connection connection = cds.getConnection();
        Assert.assertNotNull(connection);
    }
View Full Code Here

TOP

Related Classes of org.apache.deltaspike.jpa.impl.datasource.ConfigurableDataSource

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.