commons-dbutils实现增删改查(spring新注解)

1、maven依赖

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.ly.spring</groupId>
    <artifactId>spring04</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>5.0.2.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.6</version>
        </dependency>
        <dependency>
            <groupId>commons-dbutils</groupId>
            <artifactId>commons-dbutils</artifactId>
            <version>1.6</version>
        </dependency>
        <dependency>
            <groupId>c3p0</groupId>
            <artifactId>c3p0</artifactId>
            <version>0.9.0.2</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.10</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

2、实体类

package com.ly.spring.domain;

import java.io.Serializable;

public class Account implements Serializable {
    private Integer id;
    private Integer uid;
    private double money;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getUid() {
        return uid;
    }

    public void setUid(Integer uid) {
        this.uid = uid;
    }

    public double getMoney() {
        return money;
    }

    public void setMoney(double money) {
        this.money = money;
    }

    @Override
    public String toString() {
        return "Account{" +
                "id=" + id +
                ", uid=" + uid +
                ", money=" + money +
                ‘}‘;
    }
}

3、Service接口

package com.ly.spring.service;

import com.ly.spring.domain.Account;

import java.sql.SQLException;
import java.util.List;

public interface IAccountService {
    public List<Account> findAll() throws SQLException;
    public Account findOne(Integer id) throws SQLException;
    public void save(Account account) throws SQLException;
    public void update(Account account) throws SQLException;
    public void delete(Integer id) throws SQLException;
}

4、Service实现类

package com.ly.spring.service.impl;

import com.ly.spring.dao.IAccountDao;
import com.ly.spring.domain.Account;
import com.ly.spring.service.IAccountService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import java.sql.SQLException;
import java.util.List;

@Service("accountService")
public class AccountServiceImpl implements IAccountService {
    @Autowired
    private IAccountDao accountDao;
    public List<Account> findAll() throws SQLException {
        return accountDao.findAll();
    }

    @Override
    public Account findOne(Integer id) throws SQLException {
        return accountDao.findOne(id);
    }

    @Override
    public void save(Account account) throws SQLException {
        accountDao.save(account);
    }

    @Override
    public void update(Account account) throws SQLException {
        accountDao.update(account);
    }

    @Override
    public void delete(Integer id) throws SQLException {
        accountDao.delete(id);
    }
}

5、Dao接口

package com.ly.spring.dao;

import com.ly.spring.domain.Account;

import java.sql.SQLException;
import java.util.List;

public interface IAccountDao {
    public List<Account> findAll() throws SQLException;
    public Account findOne(Integer id) throws SQLException;
    public void save(Account account) throws SQLException;
    public void update(Account account) throws SQLException;
    public void delete(Integer id) throws SQLException;
}

6、Dao实现类

package com.ly.spring.dao.impl;

import com.ly.spring.dao.IAccountDao;
import com.ly.spring.domain.Account;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanHandler;
import org.apache.commons.dbutils.handlers.BeanListHandler;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;

import java.sql.SQLException;
import java.util.List;

@Repository("accountDao")
public class AccountDaoImpl implements IAccountDao {
    @Autowired
    private QueryRunner queryRunner;
    public List<Account> findAll() throws SQLException {
        return queryRunner.query("select * from account",new BeanListHandler<Account>(Account.class));
    }

    @Override
    public Account findOne(Integer id) throws SQLException {
        return queryRunner.query("select * from account where id = ?",new BeanHandler<Account>(Account.class),id);
    }

    @Override
    public void save(Account account) throws SQLException {
        queryRunner.update("insert into account(uid,money) values(?,?)",account.getUid(),account.getMoney());
    }

    @Override
    public void update(Account account) throws SQLException {
        queryRunner.update("update account set money = ? where id = ?",account.getMoney(),account.getId());
    }

    @Override
    public void delete(Integer id) throws SQLException {
        queryRunner.update("delete from account where id = ?",id);
    }
}

7、jdbc资源文件

jdbc.url = jdbc:mysql://localhost:3306/db01
jdbc.driver = com.mysql.jdbc.Driver
jdbc.username = root
jdbc.password = root

8、spring主配置类

package com.ly.spring.config;
import org.springframework.context.annotation.*;
//@Configuration:用于标记此类为配置类
/**
 * @Configuration说明:
 * 1、若该类为new AnnotationConfigApplicationContext()的入参类型,则可以省略@Configuration注解
 * 2、若该类是配置类但不是new AnnotationConfigApplicationContext()的入参类型(JdbcConfig.java),
 * 且引入该配置类的方式是@ComponentScan而非@Import时,不可以省略@Configuration注解
 * 3、若是通过@Import引入的该配置类(JdbcConfig.java),则被引入的配置类可省略@Configuration注解
 * 4、@ComponentScan({"com.ly.spring","xx.xxx"})可以配置多个
 */
@Configuration
//@ComponentScan:用于指定spring注解扫描的包
@ComponentScan("com.ly.spring")
//@PropertySource:指定外部properties文件
@PropertySource("classpath:db.properties")
//@Import:引入另外一个配置类
/**
 * @Import说明
 * 1、若需要引入的类通过@ComponentScan可以被扫描到,且该类有@Configuration注解则不需要配置@Import注解引入该配置类
 * 2、使用@Import引入配置类时,该配置类可以省略@Configuration注解
 * 3、@Import({JdbcConfig.class,xxx.class}) 可以引入多个
 */
@Import(JdbcConfig.class)
public class SpringConfiguration {

}

9、jdbc配置类

package com.ly.spring.config;

import com.mchange.v2.c3p0.ComboPooledDataSource;
import org.apache.commons.dbutils.QueryRunner;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Scope;

import javax.sql.DataSource;

//@Configuration:用于标记此类为配置类
@Configuration
public class JdbcConfig {
    //@Value:用于读取资源文件中指定key对用的值
    @Value("${jdbc.url}")
    private String jdbcUrl;
    @Value("${jdbc.driver}")
    private String jdbcDriver;
    @Value("${jdbc.username}")
    private String username;
    @Value("${jdbc.password}")
    private String password;

    //@Bean用于在spring容器中创建方法返回值类型的bean,创建的bean默认id为方法名
    //@Bean配置了name属性时即指定了创建的bean对应的id
    @Bean
    //@Scope:指定创建的bean的作用范围,默认是单例的
    @Scope("singleton")
    //当方法中有参数且没有@Qualifier注解指定bean的id时,会自动从spring容器中按照@Autowired注解的方式去注入bean
    //当方法中有参数且有@Qualifier注解指定bean的id时,会根据指定的id去spring容器中寻找对应的bean
    public QueryRunner getQueryRunner(@Qualifier("dataSource") DataSource dataSource) {
        return new QueryRunner(dataSource);
    }

    //name指定创建的bean在spring容器中的id
    @Bean(name = "dataSource")
    public DataSource getDataSource() {
        try {
            ComboPooledDataSource comboPooledDataSource = new ComboPooledDataSource();
            comboPooledDataSource.setDriverClass(jdbcDriver);
            comboPooledDataSource.setJdbcUrl(jdbcUrl);
            comboPooledDataSource.setUser(username);
            comboPooledDataSource.setPassword(password);
            return comboPooledDataSource;
        }catch (Exception e) {
            throw new RuntimeException(e);
        }
    }
}

10、测试类

package com.ly.spring.test;

import com.ly.spring.config.JdbcConfig;
import com.ly.spring.config.SpringConfiguration;
import com.ly.spring.domain.Account;
import com.ly.spring.service.IAccountService;
import org.apache.commons.dbutils.QueryRunner;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;

import javax.sql.DataSource;
import java.sql.SQLException;
import java.util.List;

public class MainTest {
    private AnnotationConfigApplicationContext context;
    private IAccountService accountService;
    @Before
    public void init() {
        //通过注解获取spring容器
        //可以同时指定多个配置类
        //context = new AnnotationConfigApplicationContext(SpringConfiguration.class, JdbcConfig.class);
        context = new AnnotationConfigApplicationContext(SpringConfiguration.class);
        accountService = context.getBean("accountService",IAccountService.class);
    }

    @Test
    public void testScope() {
        DataSource dataSource1 = context.getBean("dataSource", DataSource.class);
        DataSource dataSource2 = context.getBean("dataSource", DataSource.class);
        System.out.println(dataSource1 == dataSource2);

        QueryRunner queryRunner1 = context.getBean("getQueryRunner", QueryRunner.class);
        QueryRunner queryRunner2 = context.getBean("getQueryRunner", QueryRunner.class);
        System.out.println(queryRunner1);
        System.out.println(queryRunner1 == queryRunner2);
    }

    @Test
    public void findAll() throws SQLException {
        List<Account> accounts = accountService.findAll();
        System.out.println(accounts);
    }

    @Test
    public void findOne() throws SQLException {
        Account account = accountService.findOne(3);
        System.out.println(account);
    }

    @Test
    public void save() throws SQLException {
        Account account = new Account();
        account.setUid(52);
        account.setMoney(6000);
        accountService.save(account);
    }

    @Test
    public void update() throws SQLException {
        Account account = new Account();
        account.setId(5);
        account.setMoney(100000);
        accountService.update(account);
    }
    @Test
    public void delete() throws SQLException {
        accountService.delete(5);
    }
}

11、补充spring整合junit,修改如下:

11.1、引入spring-test的jar包

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>5.0.2.RELEASE</version>
    <scope>test</scope>
</dependency>

11.2、在测试类中使用@RunWith注解替换junit的main方法

11.3、在测试类中使用@ContextConfiguration注解指定spring配置文件的位置或者spring配置类

package com.ly.spring.test;

import com.ly.spring.config.SpringConfiguration;
import com.ly.spring.domain.Account;
import com.ly.spring.service.IAccountService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import java.sql.SQLException;
import java.util.List;
//@RunWith:用于替换junit的main方法
@RunWith(SpringJUnit4ClassRunner.class)
//@ContextConfiguration:用于指定spring配置文件的位置或者spring配置类
/**
 * @ContextConfiguration说明
 * 1、locations用于指定spring配置文件的位置locations = "classpath:bean.xml"
 * 2、classes用于指定spring配置类
 */
@ContextConfiguration(classes = SpringConfiguration.class)
public class MainTest {
    @Autowired
    private IAccountService accountService;

    @Test
    public void findAll() throws SQLException {
        List<Account> accounts = accountService.findAll();
        System.out.println(accounts);
    }

    @Test
    public void findOne() throws SQLException {
        Account account = accountService.findOne(3);
        System.out.println(account);
    }

    @Test
    public void save() throws SQLException {
        Account account = new Account();
        account.setUid(52);
        account.setMoney(6000);
        accountService.save(account);
    }

    @Test
    public void update() throws SQLException {
        Account account = new Account();
        account.setId(5);
        account.setMoney(100000);
        accountService.update(account);
    }
    @Test
    public void delete() throws SQLException {
        accountService.delete(5);
    }
}

11.4、SpringJUnit4ClassRunner requires JUnit 4.12 or higher报错解决

需升级junit版本4.12及以上

<dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.12</version>
    <scope>test</scope>
</dependency>

原文地址:https://www.cnblogs.com/liuyang-520/p/12341579.html

时间: 2024-11-05 12:23:24

commons-dbutils实现增删改查(spring新注解)的相关文章

使用DbUtils实现增删改查——ResultSetHandler 接口的实现类

在上一篇文章中<使用DbUtils实现增删改查>,发现运行runner.query()这行代码时.须要自己去处理查询到的结果集,比較麻烦.这行代码的原型是: public Object query(Connection conn, String sql, ResultSetHandler<T> rsh, Object... params) 当中ResultSetHandler是一个接口,实际上.万能的Apache已经为我们提供了众多好用的实现类,如今举比例如以下: public c

使用DbUtils实现增删改查

commons-dbutils 是 Apache 组织提供的一个开源 JDBC工具类库,它是对JDBC的简单封装,学习成本极低,并且使用dbutils能极大简化jdbc编码的工作量,同时也不会影响程序的性能.因此dbutils成为很多不喜欢hibernate的公司的首选. /** * DbUtils的用法:利用DbUtils实现增删改查操作 * @project_name Day12 * @class_name DbUtilsDemo1 * @author Dovinya * @data 201

Dbutils数据库增删改查

1 package com.example.day5_xutildemo; 2 3 import java.util.ArrayList; 4 import java.util.List; 5 6 import com.baidu.vo.Car; 7 import com.lidroid.xutils.DbUtils; 8 import com.lidroid.xutils.db.sqlite.Selector; 9 import com.lidroid.xutils.exception.DbE

开源工具DbUtils的使用(数据库的增删改查)

一.DbUtils简介: DBUtils是apache下的一个小巧的JDBC轻量级封装的工具包,其最核心的特性是结果集的封装,可以直接将查询出来的结果集封装成JavaBean,这就为我们做了最枯燥乏味.最容易出错的一大部分工作. 下载地址:http://commons.apache.org/proper/commons-dbutils/download_dbutils.cgi 下载上图中的红框部分,然后解压.解压之后的文件如下 : 上图中红框部分的文件就是我们所需要的内容. 二.核心方法: Db

ztree使用系列三(ztree与springmvc+spring+mybatis整合实现增删改查)

在springmvc+spring+mybatis里整合ztree实现增删改查,上一篇已经写了demo,下面就只贴出各层实现功能的代码: Jsp页面实现功能的js代码如下: <script> //用于捕获分类编辑按钮的 click 事件,并且根据返回值确定是否允许进入名称编辑状态 function beforeEditName(treeId, treeNode) { var zTree = $.fn.zTree.getZTreeObj("treeDemo"); zTree.

Java Web(十) JDBC的增删改查,C3P0等连接池,dbutils框架的使用

前面做了一个非常垃圾的小demo,真的无法直面它,菜的抠脚啊,真的菜,好好努力把.菜鸡. --WH 一.JDBC是什么? Java Data Base Connectivity,java数据库连接,在需要存储一些数据,或者拿到一些数据的时候,就需要往数据库里存取数据,那么java如何连接数据库呢?需要哪些步骤? 1.注册驱动 什么是驱动? 驱动就是JDBC实现类,通俗点讲,就是能够连接到数据库功能的东西就是驱动,由于市面上有很多数据库,Oracle.MySql等等,所以java就有一个连接数据库

MySQL数据库学习笔记(十二)----开源工具DbUtils的使用(数据库的增删改查)

[声明] 欢迎转载,但请保留文章原始出处→_→ 生命壹号:http://www.cnblogs.com/smyhvae/ 文章来源:http://www.cnblogs.com/smyhvae/p/4085684.html 联系方式:[email protected] [正文] 这一周状态不太好,连续打了几天的点滴,所以博客中断了一个星期,现在继续. 我们在之前的几篇文章中学习了JDBC对数据库的增删改查.其实在实际开发中,一般都是使用第三方工具类,但是只有将之前的基础学习好了,在使用开源工具的

EasyUI + Spring MVC + hibernate实现增删改查导入导出

(这是一个故事……) 前言 作为一个JAVA开发工程师,我觉得最基本是需要懂前端.后台以及数据库. 练习的内容很基础,包括:基本增删改查.模糊查询.分页查询.树菜单.上传下载.tab页 主管发我一个已经搭建好的框架平台,在平台上进行编码,不限制技术. 虽然说不限制技术,但还是得根据已经搭建的框架平台进行编码. 所以首先第一步,分析框架平台结构组成. 入手:看目录.看配置.看jar包.看js库.看数据库... 不难发现项目是基于:Spring + Hibernate + Spring MVC +

spring学习(四)spring的jdbcTemplate(增删改查封装)

Spring的jdbcTemplate操作 1.Spring框架一站式框架 (1)针对javaee三层,每一层都有解决技术 (2)到dao 层,使用 jdbcTemplate 2.Spring对不同的持久化都进行了封装 (1)jdbcTemplate  对  jdbc 进行封装 3.jdbcTemplate 使用和 dbutils 使用很相似,都是对数据库进行 crud 操作 4.使用jdbcTemplate 实现增删改查操作 增加: 1.导入 jdbcTemplate 相关jar 包 一定要导