首页 > 其他 > 详细

创建 连接池

时间:2021-03-10 19:48:34      阅读:46      评论:0      收藏:0      [点我收藏+]
import com.github.houbb.thread.pool.datasource.PooledDataSource;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @author: Supermap·F
 * @descripition:
 * @date: created in 9:34 2020/8/20
 * @modify: Copyright (c) Supermap All Rights Reserved.
 */
@Configuration
public class ThirdDataSource {

    @Value("${driver-name}")
    private String config_driverName;

    @Value("${db-config.db-url}")
    private String config_url;

    @Value("${name}")
    private String config_username;

    @Value("${password}")
    private String config_password;

    @Bean
    public PooledDataSource unpooledDataSource(){
        PooledDataSource dataSource = new PooledDataSource();
        dataSource.setDriverClass(config_driverName);
        dataSource.setJdbcUrl(config_url);
        dataSource.setUser(config_username);
        dataSource.setPassword(config_password);
        dataSource.setMinSize(3);
        dataSource.setMaxSize(10);
        dataSource.init();
        return dataSource;
    }

}
如何调用   

注入

@Autowired
   private ThirdDataSource thirdDataSource;


方法内调用:

PooledDataSource pooledDataSource = thirdDataSource.unpooledDataSource();
connection = pooledDataSource.getConnection();
statement = connection.createStatement();
String deleteSql = "delete from t_user";
statement.executeUpdate(deleteSql);

 

创建 连接池

原文:https://www.cnblogs.com/tuxiaoer/p/14513517.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!