JAVAEE框架之Spring JdbcTemplate

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介: JAVAEE框架之Spring JdbcTemplate

七.JdbcTemplate

概念:Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中。目的是使JDBC更加易于使用。JdbcTemplate是Spring的一部分。 JdbcTemplate处理了资源的建立和释放。

作用:

1.不需要管理连接

2.不需要设置参数

3.可以返回实体类

常用方法:

  • execute方法:可以用于执行任何SQL语句,一般用于执行DDL语句;
  • update方法及batchUpdate方法:update方法用于执行新增、修改、删除等语句;batchUpdate方法用于执行批处理相关语句;
  • query方法及queryForXXX方法:用于执行查询相关语句;
  • call方法: 用于执行存储过程、函数相关语句。

7.1使用步骤

准备工作:要有数据库、数据表

hr库,大家也可以自己建立一个数据库、数据表。

7.1.1 导入jar依赖

<!--导入相应的jar依赖-->
<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.2.5.RELEASE</version>
    </dependency>
    <!--增加spring-jdbc的依赖-->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-jdbc</artifactId>
        <version>5.2.5.RELEASE</version>
    </dependency>
    <!--增加对mysql 连接的jar依赖-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.19</version>
        </dependency>
    <!--增加对junit的jar依赖-->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.13</version>
    </dependency>
</dependencies>

7.1.2 配置数据源

数据源是什么???DataSource

//1.spring jdbc数据源;看下这个单词:DriverManager +DataSource
DriverManagerDataSource dataSource=new DriverManagerDataSource();
//手动设置驱动 url  用户名 密码;如果你的是5.1; com.mysql.jdbc.Driver
dataSource.setDriverClassName("com.mysql.cj.jdbc.Driver");
dataSource.setUrl("jdbc:mysql://localhost:3306/hr");
dataSource.setUsername("root");
dataSource.setPassword("root");

7.1.3 创建JdbcTemplate对象

//2.创建JdbcTemplate对象;
JdbcTemplate jdbcTemplate=new JdbcTemplate(); //new JdbcTemplate(dataSource)
jdbcTemplate.setDataSource(dataSource); //将上面的数据源对象,建立和JdbcTemplate对象的关联;

7.1.4 执行 增删改操作

//3.执行增删改查的操作;
jdbcTemplate.execute("delete  from account where id=1");

存在的问题是什么呢???

1.数据库配置的代码,放到了java里面,根据“高内聚,低耦合”原则,应该尽量做到分离;

<?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">
    <!--通过spring配置文件来实现低耦合-->
    <!--1.配置DataSource数据源-->
    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.cj.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/hr?useTimezone=true&amp;serverTimezone=CTT&amp;useUnicode=true&amp;characterEncoding=utf8&amp;useSSL=false"/>
        <property name="username" value="root"/>
        <property name="password" value="root"/>
    </bean>
    <!--配置JdbcTemplate-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <!--这个对应setDataSource方法,将set后的方法名首字母小写-->
        <property name="dataSource" ref="dataSource"/>
    </bean>
</beans>

测试类:

//1.要通过Spring来访问xml;new 完之后,Alt+Enter自动出来前面的变量名,然后名字可以自行修改
       ClassPathXmlApplicationContext  ac= new ClassPathXmlApplicationContext("beans.xml");
        //2.通过spring 配置文件来获取响应的对象
       JdbcTemplate jdbcTemplate= (JdbcTemplate) ac.getBean("jdbcTemplate");
jdbcTemplate.update("insert account(uid,money) values (10,99999)");
System.out.println("插入数据完毕");

针对Junit的知识点扩充:

额外的补充了一个知识点:

@Before:void方法之前

@After: void方法之后

@Test:用于单元测试的void方法

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;
/**
 * Created by 张晨光 on 2020/6/29 15:52
 */
public class TestJdbcTemplateTwo {
    ClassPathXmlApplicationContext ac;
    JdbcTemplate jdbcTemplate;
    /**
     * 这个注解是在junit单元测试,常规的void方法之前进行;
     */
    @Before
    public void before(){
        System.out.println("开始了...");
        //1.要通过Spring来访问xml;new 完之后,Alt+Enter自动出来前面的变量名,然后名字可以自行修改
         ac= new ClassPathXmlApplicationContext("beans.xml");
        //2.通过spring 配置文件来获取响应的对象
        jdbcTemplate= (JdbcTemplate) ac.getBean("jdbcTemplate");
    }
    /**
     * 这个注解是在junit单元测试,常规的void方法之后进行;
     */
    @After
    public void after(){
        System.out.println("整体结束...");
    }
    @Test
    public void test(){        //3.执行操作--》增加操作;
        jdbcTemplate.update("insert account(uid,money) values (10,99999)");
        System.out.println("插入数据完毕");
    }
    @Test
    public void testUpdate(){
        //3.执行操作--》增加操作;
        jdbcTemplate.update("update account set money=9988 where uid=10");
        System.out.println("更新数据完毕");
    }
    @Test
    public void testDelete(){
        //3.执行操作--》增加操作;
        jdbcTemplate.update("delete  from account where uid=10");
        System.out.println("删除数据完毕");
    }
}

2.要扩充连接池技术,下次讲;

“低耦合"实现,使用Spring框架

总结:

1.已经学习过了Spring框架,对于复杂的企业业务逻辑,进行解耦操作,降低系统的复杂度;

2.Spring框架封装了原生 JDBC,就是JdbcTemplate,可以实现对数据库的增删改查操作,注意需要依赖于DataSource数据源类;

作业:

使用spring来对JdbcTemplate进行注入,实现增删改业务操作。

7.2 RowMapper

Spring提供的对数据库查询数据封装的接口。

通过实现接口,实现接口mapRow方法(),通过对数据的封装就是通过mapRow方法实现

@FunctionalInterface
public interface RowMapper<T> {
    @Nullable
    T mapRow(ResultSet var1, int var2) throws SQLException;
}

BeanPropertyRowMapper这是对RowMapper的实现类,它可以把ResultSet和实体类的字段进行实现自动映射,可以给同名字段进行封装。自动将一行数据映射到指定类的实例, 首先将这个类实例化,然后通过名称匹配的方式,映射到属性中去。

7.2.1 查询数据

//需要提前去预习知识点:RowMapper
//        List<Account> accounts = jdbcTemplate.query("select * from account where money>?", new AccountRowMapper(), 2200);
        /*List<Account> accounts = jdbcTemplate.query("select * from account where money>?", new BeanPropertyRowMapper<Account>(Account.class), 2200);
        for(Account account:accounts){
            System.out.println(account);
        }*/
        //单一的账户
        /*List<Account> accounts = jdbcTemplate.query("select * from account where money=?", new BeanPropertyRowMapper<Account>(Account.class), 8899);
        System.out.println(accounts.get(0));*/
        //返回一行一列的数据;
        Integer count=jdbcTemplate.queryForObject("select Max(money) from account where money>?", Integer.class, 2200);
        System.out.println(count);

7.2.2 分层设计实现

作;
jdbcTemplate.update(“delete from account where uid=10”);
System.out.println(“删除数据完毕”);
}
}
2.要扩充连接池技术,下次讲;
“低耦合"实现,使用Spring框架
总结:
1.已经学习过了Spring框架,对于复杂的企业业务逻辑,进行解耦操作,降低系统的复杂度;
2.Spring框架封装了原生 JDBC,就是JdbcTemplate,可以实现对数据库的增删改查操作,注意需要依赖于DataSource数据源类;
作业:
使用spring来对JdbcTemplate进行注入,实现增删改业务操作。
## 7.2 RowMapper
> Spring提供的对数据库查询数据封装的接口。
>
> 通过实现接口,实现接口mapRow方法(),通过对数据的封装就是通过mapRow方法实现
@FunctionalInterface
public interface RowMapper {
@Nullable
T mapRow(ResultSet var1, int var2) throws SQLException;
}
BeanPropertyRowMapper这是对RowMapper的实现类,它可以把ResultSet和实体类的字段进行实现自动映射,可以给同名字段进行封装。自动将一行数据映射到指定类的实例, 首先将这个类实例化,然后通过名称匹配的方式,映射到属性中去。
### 7.2.1 查询数据
//需要提前去预习知识点:RowMapper
// List accounts = jdbcTemplate.query(“select * from account where money>?”, new AccountRowMapper(), 2200);
/List accounts = jdbcTemplate.query(“select * from account where money>?”, new BeanPropertyRowMapper(Account.class), 2200);
for(Account account:accounts){
System.out.println(account);
}/
//单一的账户
/List accounts = jdbcTemplate.query(“select * from account where money=?”, new BeanPropertyRowMapper(Account.class), 8899);
System.out.println(accounts.get(0));/
//返回一行一列的数据;
Integer count=jdbcTemplate.queryForObject(“select Max(money) from account where money>?”, Integer.class, 2200);
System.out.println(count);
### 7.2.2 分层设计实现


相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
目录
相关文章
|
24天前
|
XML 安全 Java
|
27天前
|
缓存 NoSQL Java
什么是缓存?如何在 Spring Boot 中使用缓存框架
什么是缓存?如何在 Spring Boot 中使用缓存框架
39 0
|
2天前
|
设计模式 XML Java
【23种设计模式·全精解析 | 自定义Spring框架篇】Spring核心源码分析+自定义Spring的IOC功能,依赖注入功能
本文详细介绍了Spring框架的核心功能,并通过手写自定义Spring框架的方式,深入理解了Spring的IOC(控制反转)和DI(依赖注入)功能,并且学会实际运用设计模式到真实开发中。
【23种设计模式·全精解析 | 自定义Spring框架篇】Spring核心源码分析+自定义Spring的IOC功能,依赖注入功能
|
9天前
|
IDE Java 测试技术
互联网应用主流框架整合之Spring Boot开发
通过本文的介绍,我们详细探讨了Spring Boot开发的核心概念和实践方法,包括项目结构、数据访问层、服务层、控制层、配置管理、单元测试以及部署与运行。Spring Boot通过简化配置和强大的生态系统,使得互联网应用的开发更加高效和可靠。希望本文能够帮助开发者快速掌握Spring Boot,并在实际项目中灵活应用。
27 5
|
20天前
|
缓存 Java 数据库连接
Spring框架中的事件机制:深入理解与实践
Spring框架是一个广泛使用的Java企业级应用框架,提供了依赖注入、面向切面编程(AOP)、事务管理、Web应用程序开发等一系列功能。在Spring框架中,事件机制是一种重要的通信方式,它允许不同组件之间进行松耦合的通信,提高了应用程序的可维护性和可扩展性。本文将深入探讨Spring框架中的事件机制,包括不同类型的事件、底层原理、应用实践以及优缺点。
49 8
|
1月前
|
存储 Java 关系型数据库
在Spring Boot中整合Seata框架实现分布式事务
可以在 Spring Boot 中成功整合 Seata 框架,实现分布式事务的管理和处理。在实际应用中,还需要根据具体的业务需求和技术架构进行进一步的优化和调整。同时,要注意处理各种可能出现的问题,以保障分布式事务的顺利执行。
51 6
|
1月前
|
Java Kotlin 索引
学习Spring框架特性及jiar包下载
Spring 5作为最新版本,更新了JDK基线至8,修订了核心框架,增强了反射和接口功能,支持响应式编程及Kotlin语言,引入了函数式Web框架,并提升了测试功能。Spring框架可在其官网下载,包括文档、jar包和XML Schema文档,适用于Java SE和Java EE项目。
33 0
|
SQL Java 关系型数据库
Spring的JdbcTemplate的简单使用(七)
Spring的JdbcTemplate的简单使用(七)
111 0
Spring的JdbcTemplate的简单使用(七)
|
消息中间件 NoSQL Java
Spring JdbcTemplate基本使用
Spring JdbcTemplate基本使用
260 0
Spring JdbcTemplate基本使用
|
SQL Java 关系型数据库
spring jdbcTemplate使用
(1)springJdbcContext.xml  Java代码                springApp                      ...
827 0