Spring整合DbUtils(IOC实战)

Spring整合DbUtils(IOC实战)

一、什么是DbUtils

DbUtils是Apache的一款用于简化Dao代码的工具类,它底层封装了JDBC技术

核心对象

QueryRunner queryRunner = new QueryRunner(DataSource dataSource);

核心方法

int update():   执行增删改语句
 T query():     执行查询语句
    ResultSetHandler<T>  这是一个接口,主要作用是将数据库返回的记录封装到实体对象中

二、实现

  1. 准备数据库环境:
CREATE DATABASE `spring_db`; 
USE `spring_db`; 
CREATE TABLE `account` ( `
id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(32) DEFAULT NULL, 
`money` double DEFAULT NULL,
PRIMARY KEY (`id`) 
) ; 

insert into `account`(`id`,`name`,`money`) values (1,'tom',1000), (2,'jerry',1000);
  1. 创建java项目,导入坐标
<dependencies> 
    <dependency> 
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId> 
        <version>5.1.47</version>
    </dependency> 
    <dependency> 
        <groupId>com.alibaba</groupId> 
        <artifactId>druid</artifactId> 
        <version>1.1.9</version> 
    </dependency> 
    <dependency> 
        <groupId>commons-dbutils</groupId> 
        <artifactId>commons-dbutils</artifactId> 
        <version>1.6</version> 
    </dependency> 
    <dependency> 
        <groupId>org.springframework</groupId> 
        <artifactId>spring-context</artifactId> 
        <version>5.1.5.RELEASE</version> 
    </dependency> 
    <dependency> 
        <groupId>junit</groupId> 
        <artifactId>junit</artifactId>
        <version>4.12</version> 
    </dependency>
</dependencies>

  1. 编写Account实体类

    public class Account {
        private Integer id;
        private String name;
        private Double money;
    }
    
  2. 编写AccountDao接口和实现类

public interface AccountDao {
    public List<Account> findAll();
    public Account findById(Integer id); 
    public void save(Account account);
    public void update(Account account); 
    public void delete(Integer id); 
}
public class AccountDaoImpl implements AccountDao { 
    private QueryRunner queryRunner; 
    public void setQueryRunner(QueryRunner queryRunner) { 
        this.queryRunner = queryRunner; 
    }
    @Override 
    public List<Account> findAll() { 
        List<Account> list = null; 
        // 编写sql 
        String sql = "select * from account"; 
        try {
            // 执行sql 
            list = queryRunner.query(sql, new BeanListHandler<Account> (Account.class)); 
        } catch (SQLException e) {
            e.printStackTrace(); 
        }
        return list;
    }
    @Override 
    public Account findById(Integer id) { 
        Account account = null; 
        // 编写sql 
        String sql = "select * from account where id = ?";
        try {
            // 执行sql
            account = queryRunner.query(sql, new BeanHandler<Account> (Account.class), id); 
        } catch (SQLException e) { 
            e.printStackTrace(); 
        }
        return account; 
    }
    @Override
    public void save(Account account) { 
        // 编写sql 
        String sql = "insert into account values(null,?,?)"; 
        // 执行sql 
        try {
            queryRunner.update(sql, account.getName(), account.getMoney()); 
        } catch (SQLException e) { 
            e.printStackTrace(); 
        } 
    }
    @Override
    public void update(Account account) { 
        // 编写sql
        String sql = "update account set name = ?,money = ? where id = ?"; 
        // 执行sql 
        try {               queryRunner.update(sql,account.getName(),account.getMoney(),account.getId()); 
        } catch (SQLException e) { 
            e.printStackTrace();
        } 
    }@Override 
    public void delete(Integer id) {
        // 编写sql 
        String sql = "delete from account where id = ?"; 
        // 执行sql 
        try {
            queryRunner.update(sql, id); 
        } catch (SQLException e) {
            e.printStackTrace(); 
        } 
    } 
}
  1. 编写AccountService接口和实现类
public interface AccountService{
    public List<Account> findAll();
    public Account findById(Integer id); 
    public void save(Account account); 
    public void update(Account account); 
    public void delete(Integer id);
}
public class AccountServiceImpl implements AccountService {
    private AccountDao accountDao; 
    public void setAccountDao(AccountDao accountDao) { 
        this.accountDao = accountDao;
    }
    @Override 
    public List<Account> findAll() {
        return accountDao.findAll(); 
    }
    @Override 
    public Account findById(Integer id) {
        return accountDao.findById(id); 
    }
    @Override
    public void save(Account account) { 
        accountDao.save(account);
    }
    @Override 
    public void update(Account account) {
        accountDao.update(account); 
    }
    @Override 
    public void delete(Integer id) { 
        accountDao.delete(id);
    } 
}
  1. 编写spring核心配置文件

applicationContext.xml

<?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"> 
    <!--把数据库连接池交给IOC容器--> 
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"> 		          <property name="driverClassName" value="com.mysql.jdbc.Driver"> </property> 
        <property name="url" value="jdbc:mysql://localhost:3306/spring_db"> </property> 
        <property name="username" value="root"></property>
        <property name="password" value="root"></property>
    </bean> 
    <!--把QueryRunner交给IOC容器--> 
    <bean id="queryRunner" class="org.apache.commons.dbutils.QueryRunner"> 			     <constructor-arg name="ds" ref="dataSource"></constructor-arg> 
    </bean> 
    <!--把AccountDao交给IOC容器--> 
    <bean id="accountDao" class="com.lagou.dao.impl.AccountDaoImpl"> 
        <property name="queryRunner" ref="queryRunner"></property> 
    </bean> 
    <!--把AccountService交给IOC容器--> 
    <bean id="accountService" class="com.lagou.service.impl.AccountServiceImpl"> 			<property name="accountDao" ref="accountDao"></property>
    </bean>
</beans>
  1. 编写测试代码

    public class AccountServiceTest {
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
        AccountService accountService = applicationContext.getBean(AccountService.class); 
        //测试保存 
        @Test
        public void testSave() {
            Account account = new Account(); 
            account.setName("lucy"); account.setMoney(100d); 
            accountService.save(account); 
        }
      //测试查询 
        @Test
        public void testFindById() { 
            Account account = accountService.findById(3); 
            System.out.println(account); }
        //测试查询所有 
        @Test
        public void testFindAll() {
            List<Account> accountList = accountService.findAll();
            for (Account account : accountList) { 
                System.out.println(account);
            } 
        }
        //测试修改
        @Test 
        public void testUpdate() { 
            Account account = new Account(); account.setId(3); 
            account.setName("jack"); account.setMoney(2000d); 
            accountService.update(account); 
        }
        //测试删除
        @Test 
        public void testDelete() {
            accountService.delete(3);
        } 
    }
    
  2. 抽取jdbc配置文件

    applicationContext.xml加载jdbc.properties配置文件获得连接信息

    首先,需要引入context命名空间和约束路径:

    * 命名空间:
    		xmlns:context="http://www.springframework.org/schema/context"
    * 约束路径:
    		http://www.springframework.org/schema/context 			   http://www.springframework.org/schema/context/spring-context.xsd
    
    <context:property-placeholder location="classpath:jdbc.properties"/> 
        <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"> 	
            <property name="driverClassName" value="${jdbc.driver}"></property>
            <property name="url" value="${jdbc.url}"></property> 
            <property name="username" value="${jdbc.username}"></property> 
            <property name="password" value="${jdbc.password}"></property> 
        </bean>
    
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

王斐

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值