Spring--JdbcTemplate基本使用

JdbcTemplate是 spring 框架中提供的一个对象,是Spring对数据库操作在JDBC上的封装,使我们进行JDBC操作更加简单。

JdbcTemplate执行SQL语句操作时主要提供以下方法:

  • execute方法: 可以用于执行任何SQL语句,一般用于执行DDL语句,没有返回值;
  • update方法: 用于执行新增、修改、删除等DML语句,返回一个int值,表示影响的行数;
  • query方法与queryXXX方法: 用于执行查询相关DQL语句;

在使用JdbcTemplate之前要先确保自己项目中有添加:org.springframework.spring-jdbc.5.0.2.RELEASE(JdbcTemplate位于这个jar包中)以及org.springframework.spring-tx.5.0.2.RELEASE(用于进行事务与异常控制)这两个依赖(jar包)。
在这里插入图片描述

测试JdbcTemplate

以账户为例,创建数据库表:

use spring;
Drop table if exists account;
create table account(
id int primary key auto_increment,
name varchar(40),
money float
)character set utf8 collate utf8_general_ci;

insert into account (name,money) values('aaa',1000);
insert into account (name,money) values('bbb',1000);
insert into account (name,money) values('ccc',1000);

数据库表:
在这里插入图片描述
创建maven项目并在pom.xml中添加相关依赖:

<dependencies>
   <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.0.2.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.0.2.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-tx</artifactId>
        <version>5.0.3.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>8.0.11</version>
    </dependency>
</dependencies>

创建Account实体类:

/**
 * @Author: Ly
 * @Date: 2020-08-04 23:38
 */
public class Account implements Serializable {

    private Integer id;
    private String name;
    private Float money;

    public Integer getId() {
        return id;
    }

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

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Float getMoney() {
        return money;
    }

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

    @Override
    public String toString() {
        return "Account{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", money=" + money +
                '}';
    }
}

基于spring内置数据源的JdbcTemplate入门案例:

/**
 * @Author: Ly
 * @Date: 2020-08-04 23:43
 */
public class JdbcTemplateDemo1 {
    public static void main(String[] args) {
        //准备数据源:spring的内置数据源
        DriverManagerDataSource ds=new DriverManagerDataSource();
        ds.setDriverClassName("com.mysql.cj.jdbc.Driver");
        ds.setUrl("jdbc:mysql://localhost:3306/spring?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8&useSSL=false");
        ds.setUsername("root");
        ds.setPassword("123456");
        //1.创建对象JdbcTemplate
        //JdbcTemplate jt=new JdbcTemplate(ds);
        JdbcTemplate jt=new JdbcTemplate();
        //给jt设置数据源
        jt.setDataSource(ds);
        //2.执行操作
        jt.execute("insert into account(name,money)values('ccc',1000)");
    }
}

基于XML的JdbcTemplate

配置bean.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">

    <!--配置账户的持久层-->
    <bean id="accountDao" class="com.ly.dao.impl.AccountDaoImpl">
        <property name="jdbcTemplate" ref="jdbcTemplate"></property>
    </bean>
    <!--配置JdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>
    <!--配置数据源-->
    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql://localhost:3306/spring?serverTimezone=GMT%2B8&amp;useUnicode=true&amp;characterEncoding=utf-8&amp;useSSL=false"></property>
        <property name="username" value="root"></property>
        <property name="password" value="123456"></property>

    </bean>
</beans>

测试代码:

/**
 * @Author: Ly
 * @Date: 2020-08-04 23:43
 */
public class JdbcTemplateDemo2 {
    public static void main(String[] args) {
        //1.获取容器
        ApplicationContext ac=new ClassPathXmlApplicationContext("bean.xml");
        //2.获取对象
        JdbcTemplate jt=ac.getBean("jdbcTemplate",JdbcTemplate.class);

        //2.执行操作
        jt.execute("insert into account(name,money)values('dsa',1000)");
    }
}

实现CRUD操作

//保存操作
jt.update("insert into account(name,money)values(?,?)","eee",2222);

//更新操作
jt.update("update account set name=?,money=? where id=?","test",4567,1);

//删除操作
jt.update("delete from account where id=?",8);

//查询所有操作
List<Account> accounts=jt.query("select * from account where money > ?",new BeanPropertyRowMapper<Account>(Account.class),1000f);

//查询一个操作
List<Account> account=jt.query("select * from account where id = ?",new BeanPropertyRowMapper<Account>(Account.class),1);

//查询所有一行一列(使用聚合函数,但不加group by语句)
Integer count=jt.queryForObject("select count(*) from account where money>?",Integer.class,1000f);

在执行查询操作时,我们使用了BeanPropertyRowMapper,是由JdbcTemplate提供的一个返回自定义对象的一个类,我们先看一下query方法:public <T> List<T> query(String sql, RowMapper<T> rowMapper),BeanPropertyRowMapper实现了RowMapper接口用来对数据进行封装。
自定义AccountRowMapper类实现封装账户信息。

List<Account> accounts=jt.query("select * from account where money > ?",new AccountRowMapper(),1000f);

class AccountRowMapper implements RowMapper<Account>{
/**
 * 把结果集中的数据封装到Account中,然后由spring把每个Account加到集合中
 * @param rs
 * @param rowNum
 * @return
 * @throws SQLException
 */
@Override
public Account mapRow(ResultSet rs, int rowNum) throws SQLException {
    Account account=new Account();
    account.setId(rs.getInt("id"));
    account.setName(rs.getString("name"));
    account.setMoney(rs.getFloat("money"));
    return account;
}

通过持久层实现CRUD操作

账户持久层接口与实现类:

/**
 * @Author: Ly
 * @Date: 2020-08-05 12:17
 */
public interface IAccountDao {
    /**
     * 根据id查询账户
     * @param accountId
     * @return
     */
    Account findAccountById(Integer accountId);
    /**
     * 根据名称查询账户
     * @param accountName
     * @return
     */
    Account findAccountByName(String accountName);
    /**
     * 更新账户
     * @param account
     */
    void updateAccount(Account account);
}

/**
 * @Author: Ly
 * @Date: 2020-08-05 12:20
 */
public class AccountDaoImpl implements IAccountDao {

    private JdbcTemplate jdbcTemplate;

    public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
        this.jdbcTemplate = jdbcTemplate;
    }

    @Override
    public Account findAccountById(Integer accountId) {
        List<Account> accounts =jdbcTemplate.query("select * from account where id= ?",new BeanPropertyRowMapper<Account>(Account.class),accountId);
        return accounts.isEmpty()?null:accounts.get(0);
    }

    @Override
    public Account findAccountByName(String accountName) {
        List<Account> accounts =jdbcTemplate.query("select * from account where id= ?",new BeanPropertyRowMapper<Account>(Account.class),accountName);
        if(accounts.isEmpty()){
            return null;
        }
        if(accounts.size()>1){
            throw new RuntimeException("结果集不唯一");
        }
        return accounts.get(0);
    }

    @Override
    public void updateAccount(Account account) {
        jdbcTemplate.update("update account set name=?,money=? where id=?",account.getName(),account.getMoney(),account.getId());
    }
}

测试代码:

/**
 * @Author: Ly
 * @Date: 2020-08-04 23:43
 */
public class JdbcTemplateDemo {
    public static void main(String[] args) {
        //1.获取容器
        ApplicationContext ac=new ClassPathXmlApplicationContext("bean.xml");
        //2.获取对象
        IAccountDao accountDao=ac.getBean("accountDao",IAccountDao.class);

        Account account =accountDao.findAccountById(1);
        System.out.println(account);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

龙源lll

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

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

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

打赏作者

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

抵扣说明:

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

余额充值