使用c3p0链接数据库

C3P0是一个开源的JDBC连接池,它实现了数据源和JNDI绑定,支持JDBC3规范和JDBC2的标准扩展。目前使用它的开源项目有Hibernate,Spring等。

最近跟着教程学习spring, 在讲java bean的时候提到了这个, 使用xml配置文件可以配置jdbc, 首先在IDEA打开一个Spring文件, 然后添加三个包:

mchange-commons-java-0.2.11.jar
c3p0-0.9.5.2.jar
mysql-connector-java-5.1.42-bin.jar

添加到工程后, 新建一个spring的配置文件, 配置如下:


<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="root"/>
        <property name="password" value="ABCabc123#"/>
        <property name="driverClass" value="com.mysql.jdbc.Driver"/>
        <property name="jdbcUrl" value="jdbc:mysql:///demo"/>
    bean>
beans>

这样就完成了链接JDBC, 测试一下:

public class Main {
    public static void main(String[] args) throws SQLException {
        ApplicationContext context = new ClassPathXmlApplicationContext("beans-properties.xml");

        DataSource source = (DataSource) context.getBean("dataSource");
        System.out.println(source.getConnection());

    }
}

运行一下, 没有报错, 运行结果:

com.mchange.v2.c3p0.impl.NewProxyConnection@319b92f3

你可能感兴趣的:(spring)