使用Druid连接数据库

Posted gazikel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Druid连接数据库相关的知识,希望对你有一定的参考价值。

配置文件

使用properties文件配置相关数据

--driverClassName= com.mysql.cj.jdbc.Driver            驱动加载

--username=root                       连接数据库的用户名

--password=                         连接数据库的密码

--url=jdbc:mysql://127.0.0.1:3306/库名?characterEncoding=utf-8  注册驱动

 

--initialSize=                         初始化池中建立的物理连接个数

--maxActive=                         最大可活跃连接池的数量

 

导包

在lib目录下导入包:

druid-1.1.5.jar mysql-connector-java-5.1.41-bin.jar

 

数据库连接

private static DataSource source;
    static {
        try {
            Properties properties = new Properties();

            InputStream is = ClassLoader.getSystemClassLoader().getResourceAsStream("Druid.properties");
            properties.load(is);
            source = DruidDataSourceFactory.createDataSource(properties);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    public static Connection getConnection() throws SQLException {
        Connection connection = source.getConnection();
        return connection;

    }

 

以上是关于使用Druid连接数据库的主要内容,如果未能解决你的问题,请参考以下文章

Druid数据库连接池使用

day66(YAML配置,使用Druid数据库连接池,编写持久层(数据访问层)代码,关于业务逻辑层(service层)

使用 druid 连接池来优化分页语句

大数据—— 使用 Durid 进行 JDBC 连接

SpringBoot整合Druid数据连接池

Druid 连接池,重启Mysql数据库后,Druid会自动重新连接不,该在哪配置?