以下使用Oracle10g版本作为例子。
第一种:使用spring自带的DriverManagerDataSource
配置文件如下:
[plain]
< xml version="1.0" encoding="UTF-8" >
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
[html]
< xml version="1.0" encoding="UTF-8" >
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
第二种:DBCP数据源。
需要
下载的jar包:commons-dbcp.jar,commons-pool.jar
spring的配置文件中如下:
[html]
destroy-method="close">
destroy-method="close">
第三种:C3P0数据源。
配置文件中如下:
[html]
destroy-method="close">
destroy-method="close">
第四种:使用hibernate数据源
需要hiberante核心jar包。
目前三大框架较流行,spring一般与hiberante做搭档,
数据库连接方式写在hiberante的配置文件中,在spring管理hibernate中的配置文件中,直接读取hibernate核心配置文件即可。
其中读取hibernate数据源与访问dao层的方式是配置在一块的。配置如下:
[
html]