在开发基于数据库的应用系统时,需要在项目中进行数据源的配置来为数据 库的操作取得数据库连接。配置不同数据库的数据源的方法大体上都是相同的,不同的只是不同数据库的JDBC驱动类和连接URL以及相应的数据库用户名和密 码不同。下面列出8中常用的数据库的数据库数据源配置和相应的JDBC驱动包。
1、Spring中数据源配置格式
这里使用了Jakarta的DBCP开源数据库实现方案定义的数据源。
2、各种数据库及其数据源配置参数
数据库 Oracle
驱动程序 oracle.jdbc.driver.OracleDriver
URL jdbc:oracle:thin:@localhost:1521:orcl
数据库 DB2
驱动程序 com.ibm.db2.jdbc.app.DB2Driver
URL jdbc:db2://localhost:5000/testDB
数据库 SQL Server
驱动程序 com.microsoft.jdbc.sqlserver.SQLServerDriver
URL jdbc.microsoft:sqlserver://localhost:1433;DatabaseName=testDB
数据库 Sybase
驱动程序 com.sybase.jdbc.SybDriver
URL jdbc:sybase:Tds:localhost:5007/testDB
数据库 Informix
驱动程序 com.informix.jdbc.IfxDriver
URL jdbc:informixsqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver
数据库 Mysql
驱动程序 com.musql.jdbc.Driver
URL jdbc:mysql://localhost:3306/testDB
数据库 PostgreSQL
驱动程序 org.postgresql.Driver
URL jdbc:postgresql://localhost/testDB
数据库 HSQLDB
驱动程序 org.hsqldb.jdbcDriver
URL jdbc:hsqldb:hsql://llocalhost:9902
其中applicationContext.xml的配置如下:
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
org.hibernate.dialect.MySQLDialect
true
com/test/bean/User.hbm.xml