• 在线客服

  • 扫描二维码
    下载博学谷APP

  • 扫描二维码
    关注博学谷微信公众号

  • 意见反馈

原创 Spring JdbcTemplate基本使用详解

发布时间:2020-04-14 14:26:25 浏览 3994 来源:博学谷 作者:照照

    本文将和大家聊聊SpringJdbcTemplate基本使用,内容包括JdbcTemplate概述、JdbcTemplate开发步骤、Spring产生JdbcTemplate对象、JdbcTemplate的常用操作。其中本文会详细为大家讲解JdbcTemplate开发步骤,帮助大家了解Spring JdbcTemplate基本使用。下面一起来看看吧!

     

    JdbcTemplate

     

    一、JdbcTemplate概述

     

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

     

    二、JdbcTemplate开发步骤

     

    1、导入spring-jdbcspring-tx坐标

     

     

    <!--导入springjdbc坐标-->

     

    <dependency>

     

      <groupId>org.springframework</groupId>
     

    <artifactId>spring-jdbc</artifactId>
     

    <version>5.0.5.RELEASE</version>

     

    </dependency>

     

    <!--导入springtx坐标-->

     

    <dependency>
     

    <groupId>org.springframework</groupId>
     

    <artifactId>spring-tx</artifactId>
     

    <version>5.0.5.RELEASE</version>

     

    </dependency>

     

    2、创建数据库表和实体

     

    public class Account {

     

        private String name;

     

        private double money;

     

        //省略getset方法

     

    }

     

    3、创建JdbcTemplate对象

     

    4、执行数据库操作

     

    //1、创建数据源对象

     

    ComboPooledDataSource dataSource = new ComboPooledDataSource();

     

    dataSource.setDriverClass("com.mysql.jdbc.Driver");

     

    dataSource.setJdbcUrl("jdbc:mysql://localhost:3306/test");

     

    dataSource.setUser("root");

     

    dataSource.setPassword("root");

     

    //2、创建JdbcTemplate对象

     

    JdbcTemplate jdbcTemplate = new JdbcTemplate();

     

    //3、设置数据源给JdbcTemplate

     

    jdbcTemplate.setDataSource(dataSource);

     

    //4、执行操作

     

    jdbcTemplate.update("insert into account values(?,?)","tom",5000);

     

    三、Spring产生JdbcTemplate对象

     

    我们可以将JdbcTemplate的创建权交给Spring,将数据源DataSource的创建权也交给Spring,在Spring容器内部将数据源DataSource注入到JdbcTemplate模版对象中,配置如下:

     

    <!--数据源DataSource-->

     

    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">

     

        <property name="driverClass" value="com.mysql.jdbc.Driver"></property>

     

        <property name="jdbcUrl" value="jdbc:mysql:///test"></property>
     

       <property name="user" value="root"></property>

     

        <property name="password" value="root"></property>

     

    </bean>

     

    <!--JdbcTemplate-->

     

    <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
     

       <property name="dataSource" ref="dataSource"></property>

     

    </bean>

     

    从容器中获得JdbcTemplate进行添加操作

     

    @Test

     

    public void testSpringJdbcTemplate() throws PropertyVetoException {

     

        ApplicationContext applicationContext = new

     

    ClassPathXmlApplicationContext("applicationContext.xml");

     

        JdbcTemplate jdbcTemplate = applicationContext.getBean(JdbcTemplate.class);

     

        jdbcTemplate.update("insert into account values(?,?)","lucy",5000);

     

    }

     

    四、JdbcTemplate的常用操作

     

    修改操作

     

    @RunWith(SpringJUnit4ClassRunner.class)

     

    @ContextConfiguration("classpath:applicationContext.xml")

     

    public class JdbcTemplateCRUDTest {

     

        @Autowired

     

        private JdbcTemplate jdbcTemplate;

     

        @Test

     

        //测试修改操作

     

        public void testUpdate(){

     

            jdbcTemplate.update("update account set money=? where name=?",1000,"tom");

     

        }

     

    }

     

    删除和查询全部操作

     

    @Test

     

    public void testDelete(){

     

        jdbcTemplate.update("delete from account where name=?","tom");

     

    }

     

    @Test

     

    public void testQueryAll(){

     

        List<Account> accounts = jdbcTemplate.query("select * from account", new

     

    BeanPropertyRowMapper<Account>(Account.class));

     

        for (Account account : accounts) {

     

            System.out.println(account.getName());

     

        }

     

    }

     

    查询单个数据操作操作

     

    @Test

     

    //测试查询单个对象操作

     

    public void testQueryOne(){

     

        Account account = jdbcTemplate.queryForObject("select * from account where name=?", new

     

    BeanPropertyRowMapper<Account>(Account.class), "tom");

     

        System.out.println(account.getName());

     

    }

     

    @Test

     

    //测试查询单个简单数据操作(聚合查询)

     

    public void testQueryCount(){

     

        Long aLong = jdbcTemplate.queryForObject("select count(*) from account", Long.class);

     

        System.out.println(aLong);

     

    }

     

    以上就是Spring JdbcTemplate基本使用详解,大家都看懂了吗?关于JdbcTemplate的更多内容,尽在JavaEE在线就业班课程,欢迎大家来博学谷官网体验免费的试听课程~

    申请免费试学名额    

在职想转行提升,担心学不会?根据个人情况规划学习路线,闯关式自适应学习模式保证学习效果
讲师一对一辅导,在线答疑解惑,指导就业!

上一篇: Java网络编程学习大纲整理 下一篇: 声明式事务控制学习笔记整理

相关推荐 更多

热门文章

  • 前端是什么
  • 前端开发的工作职责
  • 前端开发需要会什么?先掌握这三大核心关键技术
  • 前端开发的工作方向有哪些?
  • 简历加分-4步写出HR想要的简历
  • 程序员如何突击面试?两大招带你拿下面试官
  • 程序员面试技巧
  • 架构师的厉害之处竟然是这……
  • 架构师书籍推荐
  • 懂了这些,才能成为架构师
  • 查看更多

扫描二维码,了解更多信息

博学谷二维码