Spring整合Jdbc
# Spring使用Jdbc模板
# 1.JdbcTemplate基本使用
# 1.1 JdbcTemplate概述
它是spring框架中提供的一个对象,是对原始繁琐的Jdbc API对象的简单封装。spring框架为我们提供了很多的操作 模板类。例如:操作关系型数据的JdbcTemplate和HibernateTemplate,操作nosql数据库的RedisTemplate,操 作消息队列的JmsTemplate等等。
# 1.2 JdbcTemplate开发步骤
① 导入spring-jdbc和spring-tx坐标
② 创建数据库表和实体
③ 创建JdbcTemplate对象
④ 执行数据库操作
# 2.JdbcTemplate快速入门
# 2.1 导入坐标
<!--导入Spring-jdbc的坐标-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>5.1.9.RELEASE</version>
</dependency>
<!--导入Spring-tx的坐标-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>5.1.9.RELEASE</version>
</dependency>
# 2.2 创建表和实体
创建account的数据库表单,和Account的实体类。
account的数据库表单,包含id、姓名和年龄就行。
public class Account {
private Integer id;
private String name;
private Integer age;
//省略get和set方法
}
# 2.3 JdbcTemplate的使用
- 创建JdbcTemplate的对象
- 执行数据库操作
public class JdbcTest {
@Test
// 测试jdbc连接数据库的增加操作
public void jdbcTest1() throws Exception{
// 创建数据源对象
ComboPooledDataSource dataSource = new ComboPooledDataSource();
dataSource.setDriverClass("com.mysql.jdbc.Driver");
dataSource.setJdbcUrl("jdbc:mysql:///db1?useSSL=false");
dataSource.setUser("root");
dataSource.setPassword("000000");
// 使用jdbc的模板连接数据源
JdbcTemplate jdbcTemplate = new JdbcTemplate();
jdbcTemplate.setDataSource(dataSource);
// 更新数据库字段
int row1 = jdbcTemplate.update("insert into account values(?,?,?)", 1, "tom", 18);
System.out.println(row1);
}
}
# 2.4 Spring管理JdbcTemplate
我们可以将JdbcTemplate的创建权交给Spring,将数据源DataSource的创建权也交给Spring,在Spring容器内部将 数据源DataSource注入到JdbcTemplate模版对象中,配置如下:
<!--引用配置文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!--数据源的注入-->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="${jdbc.driver}"></property>
<property name="jdbcUrl" value="${jdbc.url}"></property>
<property name="user" value="${jdbc.username}"></property>
<property name="password" value="${jdbc.password}"></property>
</bean>
<!--JdbcTemplate模板-->
<bean id="jdbcTemple" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"></property>
</bean>
从容器中获得JdbcTemplate进行添加操作
@Test
public void test2() throws Exception {
ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
JdbcTemplate temple1 = app.getBean(JdbcTemplate.class);
int row2 = temple1.update("insert into account values(?,?,?)", 3, "Jack", 20);
System.out.println(row2);
}
# 2.5 JdbcTemplate的常用操作
这里列举JdbcTemplate的CURD操作,也就是读写查更新删除。
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath:applicationContext.xml")
public class JdbcTempleCURDTest {
@Autowired
private JdbcTemplate jdbcTemplate;
@Test
// 数据库的更新操作
public void test1() throws Exception {
int row1 = jdbcTemplate.update("update account set age = ? where name = ?", 30, "tom");
System.out.println(row1);
}
@Test
// 数据库的查询操作
public void test02() throws Exception {
List<Account> accountList = jdbcTemplate.query("select * from account", new BeanPropertyRowMapper<Account>(Account.class));
System.out.println(accountList);
}
@Test
// 数据库的查询操作
public void test03() throws Exception {
Account account = jdbcTemplate.queryForObject("select * from account where name = ?", new BeanPropertyRowMapper<Account>(Account.class),"tom");
System.out.println(account);
}
@Test
// 数据库的查询操作
public void test04() {
Long aLong = jdbcTemplate.queryForObject("select count(*) from account", long.class);
System.out.println(aLong);
}
@Test
// 数据库的删除操作
public void testDelete(){
jdbcTemplate.update("delete from account where name=?","tom");
}
}
上次更新: 2023/11/28, 22:03:59