Spring
文章目录
什么是JdbcTemplate
JdbcTemplate
是Spring框架中提供的一个对象,对原始的JDBC API
进行简单封装,其用法与DBUtils
类似。
JdbcTemplate对象的创建
- 配置数据源
JdbcTemplate
对象在执行sql语句时也需要一个数据源,这个数据源可以使用C3P0
或者DBCP
,也可以使用Spring的内置数据源DriverManagerDataSource.
使用Spring内置的数据源DriverManagerDataSource.
。在bean.xml
里面配置
<!--配置数据源-->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/db_Spring?useUnicode=true&characterEncoding=utf8"></property>
<property name="username" value="root"></property>
<property name="password" value="52151"></property>
</bean>
- 创建
JdbcTemplate
对象
在bean.xml
里面创建
<!--配置JdbcTemplate-->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"></property>
</bean>
JdbcTemplate
的基本操作
package com.yll.jdbctemplate;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DriverManagerDataSource;
import java.sql.DatabaseMetaData;
import java.sql.DriverPropertyInfo;
/**
* JdbcTemplate的最基本用法
* */
public class JdbcTemplateDemo1 {
public static void main(String[] args) {
//1.获取容器
ApplicationContext as = new ClassPathXmlApplicationContext("bean.xml");
//2.获取对象
JdbcTemplate jt = as.getBean("jdbcTemplate",JdbcTemplate.class);
//3.执行操作
jt.execute("insert into account(name,money)values('zczc',1312.1)");
}
}
JdbcTemplate的增删改查操作
package com.yll.jdbctemplate;
/**
* JdbcTemplate CRUD
* */
public class JdbcTemplateDemo3 {
public static void main(String[] args) {
//1.获取容器
ApplicationContext as = new ClassPathXmlApplicationContext("bean.xml");
//2.获取对象
JdbcTemplate jt = as.getBean("jdbcTemplate",JdbcTemplate.class);
//3.执行操作
//保存
jt.update("insert into account(name,money)value(?,?)","eee",123.2);
//更新
jt.update("update account set name = ?,money = ? where id = ?","bbb",5135153.1,1006);
//删除
jt.update("delete from account where id = ?",1006);
//查询所有
// List<Account> accounts = jt.query("select * from account where money > ?",new AccountRowMapper(),10000f);
List<Account> accounts = jt.query("select * from account where money > ?",new BeanPropertyRowMapper<Account>(Account.class),200000f);
for (Account account :accounts){
System.out.println(account);
}
//查询一个
List<Account> accounts = jt.query("select * from account where id = ?",new BeanPropertyRowMapper<Account>(Account.class),1001);
System.out.println(accounts.isEmpty()?"没有内容":accounts.get(0));
//查询返回一行一列(聚合查询)
Long count = jt.queryForObject("select count(*) from account where money > ?",Long.class,10020f);
System.out.println(count);
}
}
/**
* 定义Account的封装
* */
class AccountRowMapper implements RowMapper<Account>{
/**
* 把结果集中的数据封装到Account中,然后由spring把每个Account加到集合中
* */
public Account mapRow(ResultSet rs, int i) throws SQLException {
Account account = new Account();
account.setId(rs.getInt("id"));
account.setName(rs.getString("name"));
account.setMoney(rs.getFloat("money"));
return account;
}
}
关于查询操作
-
JdbcTemplate
的查询操作使用其query()
方法,其参数如下:String sql
: SQL语句RowMapper<T> rowMapper
: 指定如何将查询结果ResultSet对象转换为T对象.@Nullable Object... args
: SQL语句的参数
其中
RowMapper类
类似于DBUtils
的ResultSetHandler
类,可以自己写一个实现类
,但常用Spring框架内置的实现类BeanPropertyRowMapper<T>(T.class)
-
聚合查询
执行聚合查询的方法为queryForObject()
方法,其参数如下:String sql
: SQL语句Class<T> requiredType
: 返回类型的字节码@Nullable Object... args
: SQL语句的参数
在Dao层直接使用JdbcTemplate
在Dao层使用JdbcTemplate
,需要给Dao注入JdbcTemplate
对象
package com.yll.dao.impl;
import com.yll.dao.IAccountDao;
import com.yll.domain.Account;
import org.springframework.jdbc.core.BeanPropertyRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import java.util.List;
public class AccountDaoImpl extends JdbcDaoSupport implements IAccountDao {
public Account findAccountById(Integer accountId) {
List<Account> accounts = getJdbcTemplate().query("select * from account where id = ?",new BeanPropertyRowMapper<Account>(Account.class),accountId);
return accounts.isEmpty()?null:accounts.get(0);
}
public Account findAccountByName(String accountName) {
List<Account> accounts = getJdbcTemplate().query("select * from account where name = ?",new BeanPropertyRowMapper<Account>(Account.class),accountName);
if(accounts.isEmpty()){
return null;
}
if(accounts.size()>1){
throw new RuntimeException("结果集不唯一");
}
return accounts.get(0);
}
public void updateAccount(Account account) {
getJdbcTemplate().update("update account set name = ?,money = ? where id = ?",account.getName(),account.getMoney(),account.getId());
}
}
JdbcDaoSupport类
自己写的
package com.yll.dao.impl;
import org.springframework.jdbc.core.JdbcTemplate;
public class JdbcDaoSupport {
private JdbcTemplate jdbcTemplate;
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
this.jdbcTemplate = jdbcTemplate;
}
public JdbcTemplate getJdbcTemplate() {
return jdbcTemplate;
}
}
在Dao层对象继承JdbcDaoSupport类
在实际项目中,我们会创建许多DAO对象,若每个DAO对象都注入一个JdbcTemplate对象,会造成代码冗余.
- 实际的项目中我们可以让DAO对象继承Spring内置的
JdbcDaoSupport类
.在JdbcDaoSupport类
中定义了JdbcTemplate
和DataSource
成员属性,在实际编程中,只需要向其注入DataSource
成员即可,DataSource
的set
方法中会注入JdbcTemplate
对象. - DAO的实现类中调用父类的
getJdbcTemplate()
方法获得JdbcTemplate()
对象.
在bean.xml
中,我们只要为DAO对象注入DataSource
对象即可,让JdbcDaoSupport
自动调用JdbcTemplate
的set方法
注入JdbcTemplate
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.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://localhost:3306/数据库名"></property>
<property name="username" value="用户名"></property>
<property name="password" value="密码"></property>
</bean>
<!-- 配置账户的持久层-->
<bean id="accountDao" class="com.java.dao.impl.AccountDaoImpl">
<!--不用我们手动配置JdbcTemplate成员了-->
<!--<property name="jdbcTemplate" ref="jdbcTemplate"></property>-->
<property name="dataSource" ref="dataSource"></property>
</bean>
</beans>
在实现DAO接口时,我们通过super.getJdbcTemplate()
方法获得JdbcTemplate对象.
public class AccountDaoImpl extends JdbcDaoSupport implements IAccountDao {
@Override
public Account findAccountById(Integer id) {
//调用继承自父类的getJdbcTemplate()方法获得JdbcTemplate对象
List<Account> list = getJdbcTemplate().query("select * from account whereid = ? ", new AccountRowMapper(), id);
return list.isEmpty() ? null : list.get(0);
}
@Override
public Account findAccountByName(String name) {
//调用继承自父类的getJdbcTemplate()方法获得JdbcTemplate对象
List<Account> accounts = getJdbcTemplate().query("select * from account wherename = ? ", new BeanPropertyRowMapper<Account>(Account.class), name);
if (accounts.isEmpty()) {
return null;
} else if (accounts.size() > 1) {
throw new RuntimeException("结果集不唯一,不是只有一个账户对象");
}
return accounts.get(0);
}
@Override
public void updateAccount(Account account) {
//调用继承自父类的getJdbcTemplate()方法获得JdbcTemplate对象
getJdbcTemplate().update("update account set money = ? where id = ? ", account.getMoney(), account.getId());
}
}
但是这种配置方法存在一个问题: 因为我们不能修改JdbcDaoSupport
类的源代码,DAO层的配置就只能基于xml配置,而不再可以基于注解配置了.
来源:CSDN
作者:木昜errr
链接:https://blog.csdn.net/qq_40046426/article/details/104224910