Examples of DruidDataSourceStatLoggerImpl


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