栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

SSM框架之Spring JdbcTemplate基本使用

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

SSM框架之Spring JdbcTemplate基本使用

目录

1.JdbcTemplate概述

2.JdbcTemplate开发步骤

3.Spring产生JdbcTemplate对象

4.提取jdbc.properties

5.JdbcTemplate简单操作


1.JdbcTemplate概述

Spring框架提供的一个对象,是对原始繁琐的JdbcAPI对象的简单封装。spring框架为我们提供了很多的操作模板类。例如:操作关系型数据的JdbcTemplate和HibernateTemplate,操作nosql数据库的RedisTemplate,操作消息队列的JmsTemplate等等。

2.JdbcTemplate开发步骤
  • 导入spring-jdbc和spring-tx坐标

  org.springframework
  spring-jdbc
  5.3.19


  org.springframework
  spring-tx
  5.3.19
  • 创建数据库表和实体
Create tables account(name varchar(20),money double);
package com.caoyan.domain;

public class Account {
    private String name;
    private double money;

    public String getName() {
        return this.name;
    }

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

    public double getMoney() {
        return this.money;
    }

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

    @Override
    public String toString() {
        return "{" +
                " name='" + getName() + "'" +
                ", money='" + getMoney() + "'" +
                "}";
    }

}

  • 创建JdbcTemplate对象
  • 执行数据库操作
package com.caoyan.test;

import java.beans.PropertyVetoException;

import com.mchange.v2.c3p0.ComboPooledDataSource;

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

public class JdbcTemplateTest {
    @Test
    // 测试JdbcTemplate开发步骤
    public void test1() throws PropertyVetoException {
        // 创建数据源对象
        ComboPooledDataSource dataSource = new ComboPooledDataSource();
        dataSource.setDriverClass("com.mysql.jdbc.Driver");
        dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/test");
        dataSource.setUser("root");
        dataSource.setPassword("123456");
        JdbcTemplate jdbcTemplate = new JdbcTemplate();
        // 设置数据源对象,知道数据库在哪
        jdbcTemplate.setDataSource(dataSource);
        // 执行操作
        int row = jdbcTemplate.update("insert into account values(?,?)", "tom", 5000);
        System.out.println(row);
    }
}

3.Spring产生JdbcTemplate对象

将JdbcTemplate的创建权交给Spring,将数据源DataSource的创建权也交给Spring,在Spring容器内部将数据源DataSource注入到JdbcTemplate模板对象中。



    
    
        
        
        
        
    
    
    
        
    
@Test
// 测试Spring产生jdbcTemplate对象
public void test2() {
    ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
    JdbcTemplate jdbcTemplate = app.getBean(JdbcTemplate.class);
    int row = jdbcTemplate.update("insert into account values(?,?)", "zhangsan", 15000);
    System.out.println(row);
}

4.提取jdbc.properties
jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test
jdbc.username=root
jdbc.password=123456


    
    
    
    
        
        
        
        
    
    
    
        
    

5.JdbcTemplate简单操作
    @Test
    // 查询所有
    public void testQueryAll() {
        List accountList = jdbcTemplate.query("select*from account",
                new BeanPropertyRowMapper(Account.class));
        System.out.println(accountList);
    }

    @Test
    // 查询单个
    public void testQueryOne() {
        Account account = jdbcTemplate.queryForObject("select * from account where name=?",
                new BeanPropertyRowMapper(Account.class), "tom");
        System.out.println(account);
    }

    @Test
    // 计数
    public void testCount() {
        Long count = jdbcTemplate.queryForObject("select count(*) from account", Long.class);
        System.out.println(count);
    }

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/821993.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号