一:引入jar包:
1、数据驱动jar包:
dbcp依赖的包:
spring的事务包和数据库包:
IOC包AOP包、log4j的包:
所有的jar包:
编写测试类:
注入JdbcTemplate类,该类的父类有方法 setDatasource:
在直接配置文件依赖注入这个Datasource。
然后在配置文件中注入BasicDatabsource这个类。
<bean class="org.apache.commons.dbcp.BasicDataSource" id="basicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/day_spring" />
<property name="username" value="root" />
<property name="password" value="root" />
</bean> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate" >
<property name="dataSource" ref="basicDataSource" />
</bean>
测试类代码:
package jd.com.springjdtem; import org.apache.commons.dbcp.BasicDataSource;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import javax.annotation.Resource; @RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class temptest { @Resource(name = "jdbcTemplate")
private JdbcTemplate jdbcTemplate; // public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
// this.jdbcTemplate = jdbcTemplate;
// } @Test
public void testtemp(){
jdbcTemplate.update("INSERT INTO t_account VALUEs (NULL ,?,?) ","tom",);
} }
需要注意的是:不能再测试类使用set方法,将jdbctemplate注入。使用Resource 注入。否则报空指针的问题!!!!!!!!!!!