JdbcTemplate方法介绍与增删改查操作实现

JdbcTemplate介绍

为了使 JDBC 更加易于使用,Spring 在 JDBCAPI 上定义了一个抽象层, 以此建立一个JDBC存取框架,Spring Boot Spring Data-JPA。

作为 SpringJDBC 框架的核心, JDBC 模板的设计目的是为不同类型的JDBC操作提供模板方法. 每个模板方法都能控制整个过程,并允许覆盖过程中的特定任务。

通过这种方式,可以在尽可能保留灵活性的情况下,将数据库存取的工作量降到最低。

JdbcTemplate方法介绍

JdbcTemplate主要提供以下五类方法:

1、execute方法:可以用于执行任何SQL语句,一般用于执行DDL语句;

Execute、executeQuery、executeUpdate

2、update方法及batchUpdate方法:update方法用于执行新增、修改、删除等语句;batchUpdate方法用于执行批处理相关语句 SQL SERVCER(GO SQL语句 GO) ;

3、query方法及queryForXXX方法:用于执行查询相关语句;

4、call方法:用于执行存储过程、函数相关语句。

JdbcTemplate实现增删改查

JdbcTemplate添加数据

1. 使用配置实现

1.1 创建实体类

public class Account {
 private Integer accountid;
 private String accountname;
 private Double balance;

 public Integer getAccountid() {
 return accountid;
 }

 public void setAccountid(Integer accountid) {
 this.accountid = accountid;
 }

 public String getAccountname() {
 return accountname;
 }

 public void setAccountname(String accountname) {
 this.accountname = accountname;
 }

 public Double getBalance() {
 return balance;
 }

 public void setBalance(Double balance) {
 this.balance = balance;
 }
}

实体类

1.2 创建Dao层

//查询所有所有账户
public List<Account> getAllAccounts();

.3 创建Dao层实现类并继承JdbcDaoSupport接口

public class AccountDaoImpl extends JdbcDaoSupport implements AccountDao {

 @Override
 public List<Account> getAllAccounts() {
 JdbcTemplate jdbcTemplate = getJdbcTemplate();
 String sql = "select * from accounts";

 //RowMapper:接口 封装了记录的行映射关系
 List<Account> lists = jdbcTemplate.query(sql, new RowMapper<Account>() {

  @Override
  public Account mapRow(ResultSet resultSet, int i) throws SQLException {
  //创建Account对象
  Account account = new Account();
  //从ResultSet中解数据保到Accounts对象中
  account.setAccountid(resultSet.getInt("accountid"));
  account.setAccountname(resultSet.getString("accountname"));
  account.setBalance(resultSet.getDouble("balance"));

  return account;
  }
 });

return account;

}

实现查询方法

1.4创建Service层

//查询所有所有账户
public List<Account> getAllAccounts();

1.5创建Service层实现类

AccountDao accountDao;
@Override
public List<Account> getAllAccounts() {
 List<Account> allAccounts = accountDao.getAllAccounts();
 return allAccounts;
}

1.6 编写applicationContext.xml文件

<!--识别到配置文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!--配置数据源-->
<!--spring内置的数据源:提供连接的,不负责管理,使用连接池-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
 <property name="driverClassName" value="${jdbc.driver}"></property>
 <property name="url" value="${jdbc.url}"></property>
 <property name="username" value="${jdbc.username}"></property>
 <property name="password" value="${jdbc.password}"></property>
</bean>
<!--构建jdbcTemplate-->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
 <property name="dataSource" ref="dataSource"></property>
</bean>

<bean id="accountDao" class="cn.spring.accounttest.dao.impl.AccountDaoImpl">
 <property name="jdbcTemplate" ref="jdbcTemplate"></property>
</bean>
<!--Service-->
<bean id="accountService" class="cn.spring.accounttest.service.impl.AccountServiceImpl">
 <property name="accountDao" ref="accountDao"></property>
</bean>

applicationContext.xml

1.7编写测试类

@Test
public void getAllAccount(){
 ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
 //从spring容器中获取Service对象
 AccountService accountService = (AccountService)context.getBean("accountService");
 List<Account> allAccounts = accountService.getAllAccounts();
 for (Account account:allAccounts) {
 System.out.println("账户名:"+account.getAccountname()+",余额为:"+account.getBalance());
 }
}

查询测试类

2. 使用注解方式实现

2.1 创建实体类

实体类

2.2 创建Dao层

查询方法

2.3 创建Dao层实现类

@Repository
public class AccountDaoImpl implements AccountDao {

 @Autowired
 private JdbcTemplate jdbcTemplate;

 Account account = new Account();
 @Override
 public List<Account> getAllAccounts() {

  String sql = "select * from accounts";

  //自动映射
  RowMapper<Account> rowMapper = new BeanPropertyRowMapper<>(Account.class);
  List<Account> query = jdbcTemplate.query(sql, rowMapper);
  for (Account account : query) {
   System.out.println(account);
  }
  return query;
  }
 }

Dao实现类

2.4创建Service层

查询方法

2.5创建Service层实现类

实现查询方法

2.6编写applicationContext.xml文件

<!--扫描注解:包扫描器-->
<context:component-scan base-package="cn.spring"/>

<!--识别到配置文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!--配置数据源-->
<!--spring内置的数据源:提供连接的,不负责管理,使用连接池-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
 <property name="driverClassName" value="${jdbc.driver}"></property>
 <property name="url" value="${jdbc.url}"></property>
 <property name="username" value="${jdbc.username}"></property>
 <property name="password" value="${jdbc.password}"></property>
</bean>
<!--构建jdbcTemplate-->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
 <property name="dataSource" ref="dataSource"></property>
</bean>

applicationContext.xml

2.7编写测试类

查询测试类

JdbcTemplate实现增删改操作

使用注解方式实现,配置式同添加操作

1.创建Dao层

//删除账户
public int delAccount(int id);

//添加用户
public int addAccount(Account account);

//修改账户
public int updaAccount(Account account);

增删改方法

2.创建Dao曾实现类

@Override
 public int delAccount(int id) {

  String sql="delete from accounts where accountid=2";
  int count = jdbcTemplate.update(sql);
  return count;
 }

@Override
 public int addAccount(Account account) {
  String sql="insert into Accounts(accountname,balance) values(?,?)";
  int count = jdbcTemplate.update(sql,account.getAccountname(),account.getBalance());
  return count;
 }

 @Override
 public int updaAccount(Account account) {
  String sql="update accounts set accountname=?,balance=? where accountid=?";
  int count = jdbcTemplate.update(sql, account.getAccountname(),account.getBalance(),account.getAccountid() );
  return count;
 }

增删改方法实现类

3. 创建Service层

4. 创建Service层实现类

5. 编写applicationContext.xml文件

6. 编写测试类

@Test
public void delAccount(){
 ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
 AccountService accountService =(AccountService) context.getBean("accountServiceImpl");
 int i = accountService.delAccount(2);
 if (i>0){
  System.out.println("删除成功");
 }
}

@Test
public void addAccount(){
 ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
 AccountService accountServiceImpl = (AccountService) context.getBean("accountServiceImpl");
 Account account=new Account();
 account.setAccountname("刘磊");
 account.setBalance(Double.valueOf(784));
 int count = accountServiceImpl.addAccount(account);
 if (count>0){
  System.out.println("添加成功");
 }
}

@Test
public void updaAcccount(){
 ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
 AccountService accountServiceImpl = (AccountService) context.getBean("accountServiceImpl");
 Account account=new Account();
 account.setAccountid(10);
 account.setAccountname("刘磊");
 account.setBalance(Double.valueOf(784));
 int count = accountServiceImpl.updaAccount(account);
 if (count>0){
  System.out.println("修改成功");
 }
}

增删改测试类

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。

(0)

相关推荐

  • Spring 中jdbcTemplate 实现执行多条sql语句示例

    说一下Spring框架中使用jdbcTemplate实现多条sql语句的执行: 很多情况下我们需要处理一件事情的时候需要对多个表执行多个sql语句,比如淘宝下单时,我们确认付款时要对自己银行账户的表里减去订单所需的钱数,即需要更新银行账户的表,同时需要更新淘宝订单的表将订单状态改为"已付款",这就需要先后执行多个sql(仅仅用于表达执行多的SQL的举例说明,具体淘宝如何实现并不是很清楚~~~~~); 但如果这中间出现电脑断网断电等问题,仅将我们银行账户的钱扣掉了,订单状态并没有改,那我

  • SpringBoot使用JdbcTemplate操作数据库

    前言 本文是对SpringBoot使用JdbcTemplate操作数据库的一个介绍,提供一个小的Demo供大家参考. 操作数据库的方式有很多,本文介绍使用SpringBoot结合JdbcTemplate. 新建项目 新建一个项目.pom文件中加入Jdbc依赖,完整pom如下: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM

  • springboot使用JdbcTemplate完成对数据库的增删改查功能

    首先新建一个简单的数据表,通过操作这个数据表来进行演示 DROP TABLE IF EXISTS `items`; CREATE TABLE `items` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `name` varchar(10) DEFAULT NULL, `detail` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE

  • spring的jdbctemplate的crud的基类dao

    复制代码 代码如下: import java.util.List; /*** * 基本接口 *  * @author xyq * @param <T> *  */public interface BaseDaoInf<T> { /***  * 查询接口  *   * @return  */ public List<T> find(String sql, Object[] parameters, Class<T> cl); /***  *  添加,更新,删除接

  • Java 使用JdbcTemplate 中的queryForList发生错误解决办法

    Java 使用JdbcTemplate 中的queryForList发生错误解决办法          在开发项目中遇到JdbcTemplate 中的queryForList发生错误,很是头疼,在网上找了相关资料,可以帮忙解决,这里记录下, 一.问题描述:  查询时使用JdbcTemplate 中的queryForList发生错误,如下: 查询方法如下: jdbcTemplate.queryForList(selectSql.toString(), entityClass) 查询sql如下: s

  • SpringBoot JdbcTemplate批量操作的示例代码

    前言 在我们做后端服务Dao层开发,特别是大数据批量插入的时候,这时候普通的ORM框架(Mybatis.hibernate.JPA)就无法满足程序对性能的要求了.当然我们又不可能使用原生的JDBC进行操作,那样尽管效率会高,但是复杂度会上升. 综合考虑我们使用Spring中的JdbcTemplate和具名参数namedParameterJdbcTemplate来进行批量操作. 改造前 在开始讲解之前,我们首先来看下之前的JPA是如何批量操作的. 实体类User: public class App

  • 使用jdbcTemplate查询返回自定义对象集合代码示例

    1.在UserInfo.java中添加一个Map转换为UserInfo的方法 public static UserInfo toObject(Map map) { UserInfo userInfo = new UserInfo(); userInfo.setId((Integer) map.get(id)); userInfo.setUname((String) map.get(uname)); userInfo.setUnumber((Integer) map.get(unumber));

  • 详解spring boot中使用JdbcTemplate

    本文将介绍如何将spring boot 与 JdbcTemplate一起工作. Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中. JdbcTemplate 是在JDBC API基础上提供了更抽象的封装,并提供了基于方法注解的事务管理能力. 通过使用SpringBoot自动配置功能并代替我们自动配置beans. 数据源配置 在maven中,我们需要增加spring-boot-starter-jdbc

  • spring实现jdbctemplate添加事务支持示例

    复制代码 代码如下: public interface JdbcTemplate extends JdbcOperations {public abstract void beginTranstaion(); public abstract void commit(); public abstract void rollback();} 复制代码 代码如下: public class JdbcTemplateImpl extends org.springframework.jdbc.core.J

  • Spring Boot中使用jdbctemplate 操作MYSQL数据库实例

    最近在学习使用Spring Boot连接数据库,今天学习了使用jdbctemplate 操作MYSQL数据库,下面就留个笔记 不废话,先来代码 pom文件: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org

随机推荐