超细致讲解Spring框架|超细致讲解Spring框架 JdbcTemplate的使用
目录
- JdbcTemplate基本使用
- 1-JdbcTemplate基本使用-概述(了解)
- 2-JdbcTemplate基本使用-开发步骤(理解)
- 3-JdbcTemplate基本使用-快速入门代码实现(应用)
- 4-JdbcTemplate基本使用-spring产生模板对象分析(理解)
- 5-JdbcTemplate基本使用-spring产生模板对象代码实现(应用)
- 6-JdbcTemplate基本使用-spring产生模板对象代码实现
- 7-JdbcTemplate基本使用-常用操作-更新操作(应用)
- 8-JdbcTemplate基本使用-常用操作-查询操作(应用)
- 9-JdbcTemplate基本使用-知识要点(理解,记忆)
- 声明式事务控制
- 1.事务的概念
- 2 .基于注解的声明式事务控制
- 2.1 什么是声明式事务控制
- 2.2 使用注解配置声明式事务控制
- 2.3 注解配置声明式事务控制解析
- 2.4 知识要点
JdbcTemplate基本使用
1-JdbcTemplate基本使用-概述(了解)
JdbcTemplate是spring框架中提供的一个对象,是对原始繁琐的Jdbc API对象的简单封装。spring框架为我们提供
了很多的操作模板类。例如:操作关系型数据的JdbcTemplate和HibernateTemplate,操作nosql数据库的
RedisTemplate,操作消息队列的JmsTemplate等等。
2-JdbcTemplate基本使用-开发步骤(理解)
①导入spring-jdbc和spring-tx坐标
②创建数据库表和实体
③创建JdbcTemplate对象
④执行数据库操作
3-JdbcTemplate基本使用-快速入门代码实现(应用)
导入spring-jdbc和spring-tx坐标
org.springframework spring‐context5.2.8.RELEASE org.springframework spring‐test5.2.8.RELEASE org.springframework spring‐jdbc5.2.8.RELEASE org.springframework spring‐tx5.2.8.RELEASE org.aspectj aspectjweaver1.8.4 com.alibaba druid1.1.10 mysql mysql‐connector‐java5.1.39 javax.servlet javax.servlet‐api3.1.0 providedjavax.servlet.jsp javax.servlet.jsp‐api2.2.1 providedjunit junit4.12
创建数据库表和实体
DROP TABLE IF EXISTS account; CREATE TABLE account (id INT PRIMARY KEY AUTO_INCREMENT,NAME VARCHAR(50) NOT NULL,money DOUBLE NOT NULL); INSERT INTO account VALUES (NULL,'旺财',1000); INSERT INTO account VALUES (NULL,'小强',1000); SELECT * FROM account;
package com.summer.domain; public class Account {private int id; private String name; private double money; public int getId() {return id; } public void setId(int id) {this.id = id; } public String getName() {return name; } public void setName(String name) {this.name = name; } public double getMoney() {return money; } public void setMoney(double money) {this.money = money; }}
创建JdbcTemplate对象
执行数据库操作
//测试JdbcTemplate的开发步骤@Testpublic void test1(){//创建数据源DruidDataSource dataSource = new DruidDataSource(); dataSource.setDriverClassName("com.mysql.jdbc.Driver"); dataSource.setUrl("jdbc:mysql://localhost:3306/test"); dataSource.setUsername("root"); dataSource.setPassword("root"); //创建 模板对象JdbcTemplate template = new JdbcTemplate(); //设置数据源template.setDataSource(dataSource); //执行更新操作 (添加 修改 删除)int i = template.update("INSERT INTO account VALUES (NULL,?,?); ", "如花", 1000); System.out.println(i); }
4-JdbcTemplate基本使用-spring产生模板对象分析(理解)
我们可以将JdbcTemplate的创建权交给Spring,将数据源DataSource的创建权也交给Spring,在Spring容器内部
将数据源DataSource注入到JdbcTemplate模版对象中,然后通过Spring容器获得JdbcTemplate对象来执行操作
5-JdbcTemplate基本使用-spring产生模板对象代码实现(应用)
配置如下:
测试代码
//将spring和 junit整合s@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("classpath:applicationContext.xml")public class JdbcTemplateTest {@Autowiredprivate JdbcTemplate jdbcTemplate; //测试spring管理 JdbcTemplate@Testpublic void test2(){int i = jdbcTemplate.update("INSERT INTO account VALUES (NULL,?,?); ", "秋香", 1000); System.out.println(i); }}
6-JdbcTemplate基本使用-spring产生模板对象代码实现
将数据库的连接信息抽取到外部配置文件中,和spring的配置文件分离开,有利于后期维护
jdbc.driver=com.mysql.jdbc.Driverjdbc.url=jdbc:mysql://localhost:3306/testjdbc.username=rootjdbc.password=root
配置文件修改为:
7-JdbcTemplate基本使用-常用操作-更新操作(应用)
//将spring和 junit整合s@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("classpath:applicationContext.xml")public class JdbcTemplateCRUDTest {//注入jdbc模板@Autowiredprivate JdbcTemplate jdbcTemplate; //测试修改操作@Testpublic void testUpdate(){jdbcTemplate.update("update account set money = ? where id = ?; ",800,1); }//测试删除@Testpublic void testDelete(){jdbcTemplate.update("DELETE from account where id = ?",1); }}
8-JdbcTemplate基本使用-常用操作-查询操作(应用)
package com.summer.test; import com.summer.domain.Account; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.BeanPropertyRowMapper; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import java.util.List; //将spring和 junit整合s@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration("classpath:applicationContext.xml")public class JdbcTemplateCRUDTest {//注入jdbc模板@Autowiredprivate JdbcTemplate jdbcTemplate; //测试修改操作@Testpublic void testUpdate(){jdbcTemplate.update("update account set money = ? where id = ?; ",800,1); }//测试删除@Testpublic void testDelete(){jdbcTemplate.update("DELETE from account where id = ?",1); } //聚合查询@Testpublic void testQueryCount(){Long count = jdbcTemplate.queryForObject("select count(*) from account", Long.class); System.out.println(count); } //查询一个@Testpublic void testQueryOne(){Account account = jdbcTemplate.queryForObject("select * from account where name=?", newBeanPropertyRowMapper(Account.class), "旺财"); System.out.println(account); } //查询所有@Testpublic void testQueryAll(){List accountList = jdbcTemplate.query("select * from account", newBeanPropertyRowMapper(Account.class)); System.out.println(accountList); }}
9-JdbcTemplate基本使用-知识要点(理解,记忆)
①导入spring-jdbc和spring-tx坐标
②创建数据库表和实体
③创建JdbcTemplate对象
JdbcTemplate jdbcTemplate = newJdbcTemplate(); jdbcTemplate.setDataSource(dataSource);
④执行数据库操作
更新操作:
jdbcTemplate.update (sql,params)
查询操作:
jdbcTemplate.query (sql,Mapper,params)
jdbcTemplate.queryForObject(sql,Mapper,params)
声明式事务控制
1.事务的概念
概念:
事务是一组操作的执行单元,相对于数据库操作来讲,事务管理的是一组SQL指令,比如增加,修改,删除等,事
务的一致性,要求,这个事务内的操
作必须全部执行成功,如果在此过程种出现了差错,比如有一条SQL语句没有执行成功,那么这一组操作都将全部
回滚。
仅用四个词解释事务(ACID)
1.atomic(原子性):要么都发生,要么都不发生。
2.consistent(一致性):数据应该不被破坏。
3.Isolate(隔离性):用户间操作不相混淆
4.Durable(持久性):永久保存,例如保存到数据库中等
2 .基于注解的声明式事务控制
2.1 什么是声明式事务控制 Spring 的声明式事务顾名思义就是采用声明的方式来处理事务。这里所说的声明,就是指在配置文件中声明,用在Spring 配置文件中声明式的处理事务来代替代码式的处理事务
声明式事务处理的作用
- 事务管理不侵入开发的组件。具体来说,业务逻辑对象就不会意识到正在事务管理之中,事实上也应该如此,因为事务管理是属于系统层面的服务,而不是业务逻辑的一部分,如果想要改变事务管理策划的话,也只需要在定义文件中重新配置即可
- 在不需要事务管理的时候,只要在设定文件上修改一下,即可移去事务管理服务,无需改变代码重新编译,这样维护起来极其方便
引入aop、tx命名空间
2.2 使用注解配置声明式事务控制 编写 AccoutDao
@Repository("accountDao")public class AccountDaoImpl implements AccountDao {@Autowiredprivate JdbcTemplate jdbcTemplate; public void out(String outMan, double money) {jdbcTemplate.update("update account set money=money‐? where name=?",money,outMan); } public void in(String inMan, double money) {jdbcTemplate.update("update account set money=money+? where name=?",money,inMan); }}
2.编写 AccoutService
@Service("accountService")@Transactionalpublic class AccountServiceImpl implements AccountService {@Autowiredprivate AccountDao accountDao; @Transactional(isolation = Isolation.READ_COMMITTED,propagation = Propagation.REQUIRED)public void transfer(String outMan, String inMan, double money) {accountDao.out(outMan,money); int i = 1/0; accountDao.in(inMan,money); }}
编写 applicationContext.xml 配置文件
2.3 注解配置声明式事务控制解析 ① 使用 @Transactional 在需要进行事务控制的类或是方法上修饰,注解可用的属性同 xml 配置方式,例如隔离级别、传播行为等。
②注解使用在类上,那么该类下的所有方法都使用同一套注解参数配置。
③使用在方法上,不同的方法可以采用不同的事务参数配置。
④ Xml 配置文件中要开启事务的注解驱动
2.4 知识要点 注解声明式事务控制的配置要点
- 事务通知的配置 (
@Transactional
注解配置 ) - 事务注解驱动的配置
推荐阅读
- 为什么你的路演总会超时()
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- 松软可口易消化,无需烤箱超简单,新手麻麻也能轻松成功~
- 原生家庭之痛与超越
- BNC公链|BNC公链 | Eth2.0测试网Topaz已质押超100万枚ETH
- 89㎡挤出小三房,电视墙装的超好看!
- Android超简单实现沉浸式状态栏
- 超级行动力第二次作业-行动大于学习的秘密
- Day10_要想看起来毫不费力,必须付出超乎常人的努力
- 演讲手势