一、整合的步骤

  1、步骤一:首先要获得DataSource连接池(推荐使用B方式):
要对数据库执行任何的JDBC操作,需要有一个Connection.在Spring中,Connection对象是通过DataSource获得的。

有几种方法可以得到DataSource,
其中一种方法是使用Spring提供的轻量级
org.springframework.jdbc.datasource.DriverManagerDataSource,第二种方法是使用
org.apache.commons.dbcp.BasicDataSource类。

A:使用DriverMangerDataSource获取DataSource,这种方法是轻量级的,方便测试
    public class
DataSoureProvider {
    
public static DriverManagerDataSource dataSource = new
DriverManagerDataSource();
 
    
public static DriverManagerDataSource getInstance() {
        
dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        
dataSource.setUrl("jdbc:mysql://localhost:3306/book");
        
dataSource.setUsername("y****");
        
dataSource.setPassword("h*******");
        
return dataSource;
    
}
 
    
@Test
    
public void test() {
        
DataSoureProvider.getInstance();
        
try {
            
dataSource.getConnection();
        
}
        
catch (SQLException e) {
            
e.printStackTrace();
        
}
    
}
 }

 
B:通过使用BasicDataSouce创建一个连接池
获取DataSource。应为BasicDataSource所有属性都是通过setter方法暴露在外面的,我们可以像配置其他Srping
Bean那样配置它我将数据库连接信息配置在properties文件中,利用spring的org.springframeword.beans.factory.config.PropertyPlaceholderConfigurer类进行读取装载。

注意:
使用org.apache.commons.dbcp.BasicDataSource需要引入额外的jar包,分别是,commons-dbcp-1.4.jar,commons-pool-1.2.jar
(官网下载页面:
http://commons.apache.org/) 

书写配置文件applicationContext.xml:
<?xml
version="1.0" encoding="UTF-8"?>
 <beans
    
xmlns="http://www.springframework.org/schema/beans"
    
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    
xmlns:p="http://www.springframework.org/schema/p"
    
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<bean id="dbproperty"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

<property
name="location">
            
<!-- 此位置是相对于:部署后的项目的根路径
   
   
   
  <value>/WEB-INF/connect.properties</value>
-->
  
         
<!-- 此位置是相对于:部署后的项目的类路径
-->

             
<value>connect.properties</value>

</property>
    
</bean>
    
<--
配置BasicDataSource参数,其中<value>中的参数是在connect.propertices配置文件
中拿到的,其实value值也可以直接写上的-->
    
<bean id="myDataSource"
class="org.apache.commons.dbcp.BasicDataSource">

<property
name="driverClassName">
            
<value>${db.driver}</value>

</property>
        
<property name="url">
            
<value>${db.url}</value>

</property>
        
<property name="username">
            
<value>${db.username}</value>

</property>
        
<property name="password">
            
<value>${db.password}</value>

</property>
    
</bean>

 </beans>

--------------------------------------------------------------------------------------

 
2、步骤二:使用JdbcTemplate类操作数据库:

   
Spring把JDBC中重复的操作建立成了一个模板类:org.springframework.jdbc.core.JdbcTemplate。

  
A:要使用JdbcTemplate,需要为每一个DAO配置一个JdbcTemplate实例:

  public class StudentDaoImp implements StudentDao
{
    
private JdbcTemplate jdbcTemplate;
 
    
@Override
    
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
        
this.jdbcTemplate = jdbcTemplate;
    
}
 }
 
B:如上,StudentDaoImp内配置了一个JdbcTemplate对象和它对应的setter方法。这样就可以在Spring配置文件中对其进行赋值。

<?xml version="1.0"
encoding="UTF-8"?>
 <beans
xmlns="http://www.springframework.org/schema/beans"
    
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
    
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">

<bean id="dbproperty"
        
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">

<property name="location">
            
<value>connect.properties</value>

</property>
    
</bean>
 
    
<bean id="myDataSource"
class="org.apache.commons.dbcp.BasicDataSource">

<property
name="driverClassName">
            
<value>${db.driver}</value>

</property>
        
<property name="url">
            
<value>${db.url}</value>

</property>
        
<property name="username">
            
<value>${db.username}</value>

</property>
        
<property name="password">
            
<value>${db.password}</value>

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

<constructor-arg
ref="
myDataSource"></constructor-arg>

</bean>

<bean id="studentDao"
class="com.sunflower.dao.StudentDaoImp">
        
<property name="jdbcTemplate">
            
<ref bean="jdbcTemplate"/>
        
</property>
    
</bean>
 </beans>
  C:使用JdbcTemplate插入数据:
   

  
1)插入单条数据:JdbcTemplate为我们提供了update(String sql,Object...
args)方法,方便我们进行数据的插入.
 
 
2)批量添加数据:
批量插入数据需要用到org.springframework.jdbc.core.BatchPreparedStatementSetter接口。BatchPreparedStatementSetter接口的两个方法,其中getBatchSize()方法是得到需要插入的记录的个数,setValues(PreparedStatement
ps, int index)
方法是实际进行插入的方法。
 
3)查询单条记录:
执行一条数据的查询,需要使用org.springframework.jdbc.core.RowCallbackHandler接口的实现。

4)查询多条记录:这里需要用到org.springframework.jdbc.core.RowMapper接口的实现。RowMapper接口负责把Result中的一条记录映射成一个对象。

public class StudentDaoImp implements
StudentDao {
    
private JdbcTemplate jdbcTemplate;
 
    
@Override
    
public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
        
this.jdbcTemplate = jdbcTemplate;
    
}
    
//插入单条数据
    
public void insert(Student student)
    
{
        
String sql = "insert into student (cno,name,score)
values(?,?,?)";
        
//设置传递给通配符的参数
        
Object[] params = new Object[]{student.getCno(), student.getName(),
student.getScore()};
        
jdbcTemplate.update(sql, params);

    
}
    
//批量插入数据
    public int[]
batchInsert(final List<Student>
list)
    
{
        
String sql = "insert into student (cno,name,score)
values(?,?,?)";

BatchPreparedStatementSetter setter = new
BatchPreparedStatementSetter() {

@Override
            
public void setValues(PreparedStatement ps, int index) throws
SQLException {
                
Student student = (Student) list.get(index);
                
ps.setInt(1, student.getCno());
                
ps.setString(2, student.getName());
                
ps.setDouble(3, student.getScore());
            
}

//有多少条记录要处理
            
@Override
            
public int getBatchSize() {
                
return list.size();
            
}

        
};

return jdbcTemplate.batchUpdate(sql, setter);
    
}
    
//查询单条记录

  
    
public Student getStudent(final int id) {
        
// 装载查询结果
        
final Student student = new Student();
 
        
String sql = "select s.cno,s.name,s.score from student s where sno
= ?";
        
// 设置查询参数
        
final Object[] params = new Object[] { new Integer(id) };
        
// 进行查询
        
jdbcTemplate.query(sql, params,
new RowCallbackHandler() {
            
@Override
            
public void processRow(ResultSet rs) throws SQLException {
                
student.setCno(rs.getInt("cno"));
                
student.setName(rs.getString("name"));
                
student.setScore(rs.getDouble("score"));
            
}
        
});

return student;
    
}

//查询多条记录
   
    
public List<Student> getAllStudent()
{
        
String sql = "select s.cno,s.name,s.score from student s";
 
        
return jdbcTemplate.query(sql,
new
RowMapper<Student>() {
            
@Override
            
public Student mapRow(ResultSet rs, int index) throws SQLException
{
                
Student student = new Student();
                
student.setCno(rs.getInt("cno"));
                
student.setName(rs.getString("name"));
                
student.setScore(rs.getDouble("score"));
 
                
return student;
            
}
        
});

    
}

}

另附:也可以使用org.springframework.jdbc.core.RowMapper接口查询一条记录,只要附加查询参数即可:

public Student getStudent(final int id) {
        
// 装载查询结果
        
final Student student = new Student();
 
        
String sql = "select s.cno,s.name,s.score from student s where sno
= ?";
        
// 设置查询参数
        
final Object[] params = new Object[] { new Integer(id) };
 
        
List<Student> list = jdbcTemplate.query(sql, params,
                
new
RowMapper<Student>() {
                    
@Override
                    
public Student mapRow(ResultSet rs, int index)
                            
throws SQLException {
                        
Student student = new Student();
                        
student.setCno(rs.getInt("cno"));
                        
student.setName(rs.getString("name"));
                        
student.setScore(rs.getDouble("score"));
 
                        
return student;
                    
}
                
});

return list.get(0);
    
}

二、采用注解方式配置事务处理
   1、在Spring配置文件beans元素中添加子元素:
 
<!– 声明事务管理器
-->

<bean
id="txManager"
class="org.springframework.jdbc.datasource.DataSourceTransactionManager">

<property name="dataSource"
ref="dataSource"/>
  </bean>
 <!–
采用@Transactional注解方式使用事务  -->
  <tx:annotation-driven
transaction-manager="txManager"/>

 
2、在业务逻辑的试下类中使用注解添加相应的事务

   @Service @Transactional
public class StudentServiceBean implements StudentService {
@Transactional(类型=值)
public void add(Student stu) {
   
dao.insert(stu);
}
}

Spring学习5-Spring整合JDBC及其事务处理(注解方式)的更多相关文章

  1. 【Spring学习笔记-MVC-4】SpringMVC返回Json数据-方式2

    <Spring学习笔记-MVC>系列文章,讲解返回json数据的文章共有3篇,分别为: [Spring学习笔记-MVC-3]SpringMVC返回Json数据-方式1:http://www ...

  2. 【Spring学习笔记-MVC-3】SpringMVC返回Json数据-方式1

    <Spring学习笔记-MVC>系列文章,讲解返回json数据的文章共有3篇,分别为: [Spring学习笔记-MVC-3]SpringMVC返回Json数据-方式1:http://www ...

  3. Spring学习(十一)-----Spring使用@Required注解依赖检查

    Spring学习(九)-----Spring依赖检查 bean 配置文件用于确定的特定类型(基本,集合或对象)的所有属性被设置.在大多数情况下,你只需要确保特定属性已经设置但不是所有属性.. 对于这种 ...

  4. Spring学习(六)-----Spring使用@Autowired注解自动装配

    Spring使用@Autowired注解自动装配 在上一篇 Spring学习(三)-----Spring自动装配Beans示例中,它会匹配当前Spring容器任何bean的属性自动装配.在大多数情况下 ...

  5. (转)Spring使用AspectJ进行AOP的开发:注解方式

    http://blog.csdn.net/yerenyuan_pku/article/details/69790950 Spring使用AspectJ进行AOP的开发:注解方式 之前我已讲过Sprin ...

  6. Spring整合JDBC及事务处理

    1.Spring整合JDBC DAO是数据访问对象(data access object)的简写.接口是实现松耦合的关键,Spring也鼓励使用接口,但不是强制的. 捕获异常时希望能尝试从异常状态中恢 ...

  7. spring学习 六 spring与mybatis整合

    在mybatis学习中有两种配置文件 :全局配置文件,映射配置文件.mybatis和spring整合,其实就是把mybatis中的全局配置文件的配置内容都变成一个spring容器的一个bean,让sp ...

  8. Spring学习之Spring与Mybatis的两种整合方式

    本机使用IDEA 2020.1.MySql 8.0.19,通过Maven进行构建 环境准备 导入maven依赖包 <dependencies> <dependency> < ...

  9. spring学习07(整合MyBatis)

    10.整合MyBatis 10.1 相关jar包 junit <dependency> <groupId>junit</groupId> <artifactI ...

随机推荐

  1. bootstrap和jquery mobile的对比

    最近一直在研究bootstrap这东西,确实是个好的框架,但是诸多优势背后也隐藏着一些不好的地方,对此,我把它和另一套响应式框架jquery mobile做了一下对比,我的总结如下:    1.boo ...

  2. 【MySQL】PREPARE 的应用

    简单的用set或者declare语句定义变量,然后直接作为sql的表名是不行的,mysql会把变量名当作表名.在其他的sql数据库中也是如此,mssql的解决方法是将整条sql语句作为变量,其中穿插变 ...

  3. WPF数据绑定Binding(二)

    WPF数据绑定Binding(二) 1.UI控件直接的数据绑定 UI对象间的绑定,也是最基本的形式,通常是将源对象Source的某个属性值绑定 (拷贝) 到目标对象Destination的某个属性上. ...

  4. Linux 信号捕捉

    pause函数 pause函数挂起调用它的进程,直到有任何消息到达. 调用进程必须有能力处理送达的信号,否则信号的默认部署就会发生. int pause(void); 只有进程捕获到一个信号的时候pa ...

  5. no.3 base64

    tool.chinaz.com的base64有的无法解密: 如:ZXZhbCgkX1BPU1RbcDRuOV96MV96aDNuOV9qMXVfU2gxX0oxM10pNTU2NJC3ODHHYWJI ...

  6. php基础10:字符串中插入变量

    <?php //插入字符串 //1.双引号可以解析字符串中的变量:但是前后不能跟中文符号 $username = "gaoxiong"; echo "my name ...

  7. 老王Python培训视频教程(价值500元)【基础进阶项目篇 – 完整版】

    老王Python培训视频教程(价值500元)[基础进阶项目篇 – 完整版] 教学大纲python基础篇1-25课时1.虚拟机安装ubuntu开发环境,第一个程序:hello python! (配置开发 ...

  8. 使用ObjectAnimator设置动画

    ObjectAnimator是ValueAnimator的子类,他本身就已经包含了时间引擎和值计算,所以它拥有为对象的某个属性设置动画的功能.这使得为任何对象设置动画更加的容易.你不再需要实现 Val ...

  9. Java Platform Standard Edition 8 Documentation

    下面这个图挺有用的,收藏一下. Oracle has two products that implement Java Platform Standard Edition (Java SE) 8: J ...

  10. 树莓派之web服务器搭建

    树莓派之web服务器搭建 (一)使用ufw创建防火墙 设置目的:可以完全阻止对树莓派的访问也可以用来配置通过防火墙对特点程序的访问.使用防火墙更好的保护树莓派. 准备工作 1.带有5V电源的树莓派 2 ...