Package com.alibaba.druid.pool

Examples of com.alibaba.druid.pool.DruidDataSourceStatLoggerImpl


    }

    public void test_connectPropertiesChange() throws Exception {
        Assert.assertTrue(dataSource.isWrapperFor(DruidDataSourceStatLogger.class));
        Assert.assertTrue(dataSource.isWrapperFor(DruidDataSourceStatLoggerImpl.class));
        DruidDataSourceStatLoggerImpl loggerImpl = dataSource.unwrap(DruidDataSourceStatLoggerImpl.class);
        Assert.assertSame(statLog, loggerImpl.getLogger());
       
        dataSource.setConnectionProperties("druid.stat.loggerName=xxx");
        Assert.assertNotSame(statLog, loggerImpl.getLogger());
    }
View Full Code Here

TOP

Related Classes of com.alibaba.druid.pool.DruidDataSourceStatLoggerImpl

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.