Spring中配置数据源的4种形式
不管采用何种持久化技术,都需要定义数据源。Spring中提供了4种不同形式的数据源配置方式:
spring自带的DriverManagerDataSource数据源,DBCP数据源,C3P0数据源,JNDI数据源。
1.spring自带的数据源DriverManagerDataSource
XML代码:
<beans xmlns=http://www.springframework.org/schema/beans xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance xmlns:jee=http://www.springframework.org/schema/jee xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.0.xsd"> <jee:jndi-lookup id="dataSource" jndi-name=" java:comp/env/jdbc/orclight"/> </beans>
参考文章:
1.Spring配置数据源四种方式 http://www.2cto.com/kf/201301/184061.html
2.配置Spring数据源 http://www.cnblogs.com/200911/archive/2012/08/10/2631760.html
3.Spring 多数据源配置方法 http://blog.csdn.net/nickbest85/article/details/5510466
4.如何在spring框架中解决多数据源的问题 http://www.iteye.com/topic/72486