当前位置: 首页 > article >正文

Spring框架的JDBC模板技术

目录

 

一、JDBC模板类的使用

1.引入依赖

2.测试类

3.运行,查看数据库

二、使用Spring框架来管理模板类

1.配置文件

2.测试类

3.运行,查看数据库

三、Spring框架管理开源的连接池

1.配置开源的连接池

2.将数据库连接的信息配置到属性文件中

3.核心配置

四、Spring框架的JDBC模板的简单操作

1.测试类

2.实现类

3.之前的数据库

4.运行

(1)run1()----增

(2)运行run2()----删

​编辑

(3)运行run3()---改

(4)运行run4()---通过id查

(5)运行run5()---查询所有


JDBC模板是Spring提供的,使用模板类编写程序还变的简单

一、JDBC模板类的使用

1.引入依赖

<dependencies>
    <!--spring的核心依赖-->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>5.0.2.RELEASE</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/commons-logging/commons-logging -->
    <dependency>
        <groupId>commons-logging</groupId>
        <artifactId>commons-logging</artifactId>
        <version>1.2</version>
    </dependency>
    <!--日志-->
    <dependency>
        <groupId>log4j</groupId>
        <artifactId>log4j</artifactId>
        <version>1.2.12</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>5.0.2.RELEASE</version>
        <scope>test</scope>
    </dependency>
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
    <!-- https://mvnrepository.com/artifact/aopalliance/aopalliance -->
    <dependency>
        <groupId>aopalliance</groupId>
        <artifactId>aopalliance</artifactId>
        <version>1.0</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.springframework/spring-aspects -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-aspects</artifactId>
        <version>5.0.2.RELEASE</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
    <dependency>
        <groupId>org.aspectj</groupId>
        <artifactId>aspectjweaver</artifactId>
        <version>1.8.3</version>
    </dependency>

    <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.6</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.2.RELEASE</version>
    </dependency>
</dependencies>

2.测试类

import org.junit.Test;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DriverManagerDataSource;

public class JdbcTest {
    @Test
    public void run1(){
        //创建连接池对象,Spring框架内置了连接池对象
        DriverManagerDataSource dataSource=new DriverManagerDataSource();
        //设置四个参数
        dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        dataSource.setUrl("jdbc:mysql:///spring_db");
        dataSource.setUsername("root");
        dataSource.setPassword("2020");

        //提供模板,创建对象
        JdbcTemplate template=new JdbcTemplate(dataSource);
        //完成数据的增删改查
        template.update("insert into account values (null,?,?)","熊大","1000");
    }
}

3.运行,查看数据库

二、使用Spring框架来管理模板类

1.配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop.xsd">

    <!--配置连接池-->
    <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql:///spring_db"></property>
        <property name="username" value="root"></property>
        <property name="password" value="2020"></property>
    </bean>
    <!--配置jdbc的模板-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>

</beans>

2.测试类

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(value = "classpath:applicationContext.xml")
public class JdbcTest2 {

    @Autowired
    private JdbcTemplate jdbcTemplate;

    @Test
    public void run1(){
        jdbcTemplate.update("insert into account values (null,?,?)","熊二","500");
    }
}

3.运行,查看数据库

三、Spring框架管理开源的连接池

1.配置开源的连接池

使用的是Durid开源的连接池,引入坐标如下:

<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid</artifactId>
    <version>1.1.10</version>
</dependency>

2.将数据库连接的信息配置到属性文件中

db.properties

jdbc.driverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql:///spring_db
jdbc.username=root
jdbc.password=2020

3.核心配置

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop.xsd">


    <!--使用开源连接池
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
        <property name="url" value="jdbc:mysql:///spring_db"></property>
        <property name="username" value="root"></property>
        <property name="password" value="2020"></property>
    </bean>-->
    <!--加载属性配置文件
    <bean id="placeholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:db.properties"></property>
    </bean>-->
    
    
    
    <!--第二种写法:使用提供标签的方式-->
    <context:property-placeholder location="classpath:db.properties"></context:property-placeholder>
    <!--加载属性的文件-->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
        <property name="driverClassName" value="${jdbc.driverClassName}"></property>
        <property name="url" value="${jdbc.url}"></property>
        <property name="username" value="${jdbc.username}"></property>
        <property name="password" value="${jdbc.password}"></property>
    </bean>


    <!--配置jdbc的模板-->
    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
        <property name="dataSource" ref="dataSource"></property>
    </bean>



</beans>

四、Spring框架的JDBC模板的简单操作

1.测试类

增删改查代码

import com.qcby.pojo.Account;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

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

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(value = "classpath:applicationContext.xml")
public class JdbcTest2 {

    @Autowired
    private JdbcTemplate jdbcTemplate;

    /*增*/
    @Test
    public void run1(){
        int result=jdbcTemplate.update("insert into account values (null,?,?)","李四","700");
        System.out.println("受影响了"+result+"行");
    }

    /*删*/
    @Test
    public void run2(){
        int result=jdbcTemplate.update("delete from account where id=?",5);
        System.out.println("受影响了"+result+"行");
    }

    /*改*/
    @Test
    public void run3(){
        int result=jdbcTemplate.update("update account set name=?,money=? where id=?", "a", "500", 1);
        System.out.println("受影响了"+result+"行");
    }

    /*通过id查*/
    @Test
    public void run4(){
        Account account=jdbcTemplate.queryForObject("select * from account where id=?",new BeanMapper(),2);
        System.out.println(account);
    }

    /*查询所有数据*/
    @Test
    public void run5(){
        List<Account> accounts=jdbcTemplate.query("select * from account",new BeanMapper());
        for(Account account:accounts){
            System.out.println(account);
        }
    }

}

2.实现类

/*实现类,用来进行数据封装*/
public class BeanMapper implements RowMapper<Account> {
    public Account mapRow(ResultSet rs, int rowNum) throws SQLException, SQLException {
        Account account=new Account();
        account.setId(rs.getInt("id"));
        account.setName(rs.getString("name"));
        account.setMoney(rs.getDouble("money"));
        return account;
    }
}

3.之前的数据库

4.运行

(1)run1()----增

数据库

(2)运行run2()----删

数据库

(3)运行run3()---改

数据库

(4)运行run4()---通过id查

(5)运行run5()---查询所有


http://www.kler.cn/a/380321.html

相关文章:

  • 【广度优先搜索】——岛屿数量
  • 《AI产品经理手册》——解锁AI时代的商业密钥
  • 影刀RPA实战:嵌入python,如虎添翼
  • mac-泛洪
  • 路径规划 | ROS中多个路径规划算法可视化与性能对比分析
  • kubevirt cloud-init配置
  • Python绘制爱心
  • 计算机前沿技术-人工智能算法-大语言模型-最新研究进展-2024-10-29
  • 前端面试题22 | 什么是跨域问题?怎么解决?
  • java 对人名和电话 脱敏-replaceAll
  • HTB:Mirai[WriteUP]
  • 第七部分:1. STM32之ADC实验--单通道实验
  • 新世联科技:NG2-A-7在DAC空气捕集提取CO2的应用
  • Ps:天空替换
  • 2024-11-4 学习人工智能的Day21 openCV(3)
  • Python 单元测试中的 Mocking 与 Stubbing:提高测试效率的关键技术
  • sql专题 之 常用命令
  • React05 样式控制 classnames工具优化类名控制
  • 【算法】Prim最小生成树算法
  • 【k8s】-运维技巧-1
  • Spring Boot实战:构建校园社团信息管理系统
  • Linux基础(七):Linux文件与目录管理
  • 软件加密与授权管理:构建安全高效的软件使用体系
  • docker镜像获取不到的问题处理
  • TIDB的结构
  • 【SpringCloud详细教程】-01-一文了解微服务