Druid线程池创建Connection

2022/3/9 23:19:58

本文主要是介绍Druid线程池创建Connection,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Druid线程池创建Connection

代码实现

public class DruidTest {
    public static void main(String[] args) throws Exception {
        new DruidTest().getConnection();
    }

    public Connection getConnection() throws Exception {
        Properties properties = new Properties();
        FileInputStream is = new FileInputStream("D:\\MYcode_K\\JDBC\\learn01\\src\\druid.properties");
        properties.load(is);

        DataSource dataSource = DruidDataSourceFactory.createDataSource(properties);
        return dataSource.getConnection();
    }
}


这篇关于Druid线程池创建Connection的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程