正常情况下,我们在实现类中想要晕用模板类需要在配置文件中注入连接池,再将连接池注入给模板类,然后在实现类中得到。
1 <!-- 配置C3P0连接池 --> 2 <bean id = "dataSource" class = "com.mchange.v2.c3p0.ComboPooledDataSource"> 3 <property name="driverClass" value = "com.mysql.jdbc.Driver"/> 4 <property name="jdbcUrl" value = "jdbc:mysql:///spring_day03"/> 5 <property name="user" value = "root"/> 6 <property name="password" value = "123456"/> 7 </bean> 8 9 <!-- 配置JDBC模板类 --> 10 <bean id = "jdbcTemplate" class = "org.springframework.jdbc.core.JdbcTemplate"> 11 <property name="dataSource" ref = "dataSource"></property> 12 </bean> 13 14 <!--配置持久层--> 15 <bean id = "accountDao" class = "com.itheima.demo1.AccountDaoImpl" > 16 <property name="jdbcTemplate" ref = "jdbcTemplate"></property> 17 </bean>
1 public void dao{ 2 3 private JdbcTemplate jdbcTemplate; 4 public void setJdbcTemplate(JdbcTemplate jdbcTemplate){ 5 this.jdbcTemplate = jdbcTemplate; 6 } 7 8 }
但是,有一个JdbcDaoSupport类,继承了它之后就可以不用配置模板类,具体看源码
public final void setDataSource(DataSource dataSource){ if(this.jdbcTemplate == null || dataSource != this.jdbcTemplate.getDataSource()) this.jdbcTemplate = createJdbcTemplate(dataSource); initTemplateConfig(); }
源码中说的很清楚了,如果你没有提供模板类,它会根据连接池(dataSource)来新建一个模板类,这样,我们在配置文件中只需要配置连接池就好了,不用再配置模板类,模板类的工作交给它来做。
<!-- 配置C3P0连接池 --> <bean id = "dataSource" class = "com.mchange.v2.c3p0.ComboPooledDataSource"> <property name="driverClass" value = "com.mysql.jdbc.Driver"/> <property name="jdbcUrl" value = "jdbc:mysql:///spring_day03"/> <property name="user" value = "root"/> <property name="password" value = "123456"/> </bean> <bean id = "accountDao" class = "com.itheima.demo1.AccountDaoImpl" > <property name = "dataSource" ref = "dataSource"/> </bean>
那么我们怎么用模板类呢,不用担心,父类JdbcDaoSuppor中有相关的获取方法,可以直接拿来用
1 //扣钱 2 @Override 3 public void outMoney(String out, double money) { 4 this.getJdbcTemplate().update(sql, args); 5 6 }
参考 黑马JAVAEE教学视频
时间: 2024-10-14 12:59:17