栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

C3P0连接MySQL

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C3P0连接MySQL

@Test
    public void testC3P0() throws IOException, PropertyVetoException, SQLException {
        // 设置c3p0连接数据源
        ComboPooledDataSource comboPooledDataSource = new ComboPooledDataSource();
        // 读取配置文件
        Properties properties = new Properties();
        properties.load(new FileInputStream("src\com\sky\chapter25\jdbc.properties"));
        String user = (String) properties.get("user");
        String password = (String) properties.get("password");
        String url = (String) properties.get("url");
        String driver = (String) properties.get("driver");
        // 将连接的相关属性添加到DataSource
        comboPooledDataSource.setUser(user);
        comboPooledDataSource.setPassword(password);
        comboPooledDataSource.setJdbcUrl(url);
        comboPooledDataSource.setDriverClass(driver);

        // 初始化连接数
        comboPooledDataSource.setInitialPoolSize(10);
        comboPooledDataSource.setMaxPoolSize(50);
        Connection connection = comboPooledDataSource.getConnection();
        System.out.println(connection);
        connection.close();
    }

    // 将c3p0-config.xml放在src目录下
    @Test
    public void testC3P02() throws SQLException {
        ComboPooledDataSource comboPooledDataSource = new ComboPooledDataSource("ywj");
        Connection connection = comboPooledDataSource.getConnection();
        System.out.println(connection);
    }


  

  com.mysql.cj.jdbc.Driver
  
  	jdbc:mysql://localhost:3306/sky_db01?serverTimezone=UTC&useSSL=false
  
  		root
  		
  	1111
  	
    5
    
    10
    
    5
   
    10

	
    5 
    
    
    2
  

jdbc:mysql://localhost:3306/sky_db01?serverTimezone=UTC&useSSL=false
这个地方的url中‘;’在xml文件中会报错所以要是用'&'来代替分号

这里是c3p0的jar包和xml配置文件
链接:https://pan.baidu.com/s/1N1dHdb-LGzqqFqlO64V_gg
提取码:yjwt

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/713397.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号