1. 程式人生 > >day39-Spring 16-Spring的JDBC模板:設置參數到屬性文件

day39-Spring 16-Spring的JDBC模板:設置參數到屬性文件

pro sna tex rop 幫我 combo odin c3p0連接池 asi

<?xml version="1.0" encoding="UTF-8"?>
<!-- 引入beans的頭 -->
<beans 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.xsd"
> <!-- 配置Spring默認的連接池 --> <!-- 這個類由Spring來幫我們創建,它默認情況下只創建一次,因為是單例的. --> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <
property name="url" value="jdbc:mysql:///spring3_day02"></property> <property name="username" value="root"></property> <property name="password" value=""></property> </bean> <!-- 配置DBCP連接池 --> <bean id="dataSource1" class="org.apache.commons.dbcp.BasicDataSource"
> <property name="driverClassName" value="com.mysql.jdbc.Driver"></property> <property name="url" value="jdbc:mysql:///spring3_day02"></property> <property name="username" value="root"></property> <property name="password" value=""></property> </bean> <!-- 配置C3P0連接池 --> <bean id="dataSource2" class="com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverClass" value="com.mysql.jdbc.Driver"></property> <property name="jdbcUrl" value="jdbc:mysql:///spring3_day02"></property> <property name="user" value="root"></property> <property name="password" value=""></property> </bean> <!-- 定義jdbctemplate --> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name="dataSource" ref="dataSource2"></property><!-- 把上面定義好的連接池註入進來了 --> </bean> </beans>

每一次去修改裏面的參數都要修改Spring的核心配置文件.


技術分享

技術分享

第一種方式要寫的東西比較多,所以一般會使用context標簽,要使用context標簽就要引入context標簽的頭.

技術分享

day39-Spring 16-Spring的JDBC模板:設置參數到屬性文件