Spring通过c3p0配置bean连接数据库

这篇文章主要为大家详细介绍了Spring通过c3p0配置bean连接数据库,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

Spring配置bean连接数据库两种方法

(1)直接在.xml文件内部配置:

(2)将参数放在外部文件中,然后再读入配置文件

外部的配置文件

user=root password=wangjian driverclass=com.MysqL.jdbc.Driver jdbcurl=jdbc:MysqL://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false

测试函数

package com.primary.spring.beans.properties; import java.sql.sqlException; import javax.sql.DataSource; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClasspathXmlApplicationContext; public class Main { public static void main(String[] args) throws sqlException { ApplicationContext ctx = new ClasspathXmlApplicationContext("beans-properties.xml"); DataSource dataSource = (DataSource) ctx.getBean("dataSource"); System.out.println(dataSource.getConnection()); } }

测试结果:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程之家。

相关文章

HashMap是Java中最常用的集合类框架,也是Java语言中非常典型...
在EffectiveJava中的第 36条中建议 用 EnumSet 替代位字段,...
介绍 注解是JDK1.5版本开始引入的一个特性,用于对代码进行说...
介绍 LinkedList同时实现了List接口和Deque接口,也就是说它...
介绍 TreeSet和TreeMap在Java里有着相同的实现,前者仅仅是对...
HashMap为什么线程不安全 put的不安全 由于多线程对HashMap进...