JDBCTemplate开发步骤
① 导入spring-jdbc和spring-tx坐标
1 <!-- 导入 spring 的 jdbc 坐标 封装了jdbc--> 2 <dependency> 3 <groupId>org.springframework</groupId> 4 <artifactId>spring-jdbc</artifactId> 5 <version>5.0.5.RELEASE</version> 6 </dependency> 7 <!-- 导入 spring 的 tx 坐标 transaction事务 --> 8 <dependency> 9 <groupId>org.springframework</groupId> 10 <artifactId>spring-tx</artifactId> 11 <version>5.0.5.RELEASE</version> 12 </dependency>
② 创建数据库表和实体
③ 创建JdbcTemplate对象:
创建JdbcTemplate对象最重要就是注入数据源对象jdbcTemplate.setDataSource(数据源对象); 数据源对象:c3p0,dbcp,druid
当然数据源对象需要先配置驱动、jdbc连接、用户名和密码
在实际开发中,JDBCTemplate对象和数据源对象都可以交给Spring创建,在applicationContext.xml配置:
1 <!-- 数据源 DataSource--> 2 <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> 3 <property name="driverClass" value="com.mysql.jdbc.Driver"></property> 4 <property name="jdbcUrl" value="jdbc:mysql:///test"></property> 5 <property name="user" value="root"></property> 6 <property name="password" value="root"></property> 7 </bean> 8 <!--JdbcTemplate--> 9 <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> 10 <property name="dataSource" ref="dataSource"></property> 11 </bean>
本文摘自 :https://www.cnblogs.com/