Spring连接jdbc

1.在工程里加入如下jar包
Spring连接jdbc
2.在配置文件中,配置数据源,配置JDBCTemplate
整个配置文件代码如下

<?xml version="1.0" encoding="UTF-8"?>
<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">

	<!-- 配置数据源c3p0数据源 -->
	<bean id="ds" class="com.mchange.v2.c3p0.ComboPooledDataSource">
		<property name="user" value="root"></property>
		<property name="password" value="root"></property>
		<property name="jdbcUrl" value="jdbc:mysql://localhost:3306/user"></property>
		<property name="driverClass" value="com.mysql.jdbc.Driver"></property>
	</bean>
	
	<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
		<property name="dataSource" ref="ds"></property>
	</bean>
</beans>

写个测试类 ,里面是个查询方法,如图:
Spring连接jdbc