`
zhangfeilo
  • 浏览: 399183 次
  • 性别: Icon_minigender_1
  • 来自: 昆明
社区版块
存档分类
最新评论

spring3之JdbcTemplate详解

阅读更多

1、JdbcTemplate操作数据库

Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中。同时,为了支持对properties文件的支持,spring提供了类似于EL表达式的方式,把dataSource.properties的文件参数引入到参数配置之中,<context:property-placeholder location="classpath:jdbc.properties" />。

实例代码如下:
提供数据源的相关配置信息:jdbc.properties
driverClassName=org.gjt.mm.mysql.Driver
url=jdbc\:mysql\://localhost\:3306/stanley?useUnicode\=true&characterEncoding\=UTF-8
username=root
password=123456
initialSize=1
maxActive=500
maxIdle=2
minIdle=1

提供spring的配置文件,将jdbc.properties与JdbcTemplate粘合起来的配置文件:beans.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:context="http://www.springframework.org/schema/context"
             xmlns:aop="http://www.springframework.org/schema/aop"
             xmlns:tx="http://www.springframework.org/schema/tx"
             xsi:schemaLocation="http://www.springframework.org/schema/beans
                     http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
                     http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
                     http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
                     http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

    <context:property-placeholder location="classpath:jdbc.properties"/>
<!-- dataSource可以为c3p0、proxool等 -->
    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
         <property name="driverClassName" value="${driverClassName}"/>
         <property name="url" value="${url}"/>
         <property name="username" value="${username}"/>
         <property name="password" value="${password}"/>
            <!-- 连接池启动时的初始值 -->
     <property name="initialSize" value="${initialSize}"/>
     <!-- 连接池的最大值 -->
     <property name="maxActive" value="${maxActive}"/>
     <!-- 最大空闲值.当经过一个高峰时间后,连接池可以慢慢将已经用不到的连接慢慢释放一部分,一直减少到maxIdle为止 -->
     <property name="maxIdle" value="${maxIdle}"/>
     <!--    最小空闲值.当空闲的连接数少于阀值时,连接池就会预申请去一些连接,以免洪峰来时来不及申请 -->
     <property name="minIdle" value="${minIdle}"/>
    </bean>

  <bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
        </bean>
<!--Caused by: java.lang.NoClassDefFoundError: org/aopalliance/intercept/MethodInterceptor
aop错误引入spring.jar
-->
  <aop:config>
<!--
1execution(* *(..))
表示匹配所有方法
2execution(public * com. savage.service.UserService.*(..))
表示匹配com.savage.server.UserService中所有的公有方法
3execution(* com.savage.server..*.*(..))
表示匹配com.savage.server包及其子包下的所有方法
-->
        <aop:pointcut id="transactionPointcut" expression="execution(* cn.comp.service..*.*(..))"/>
        <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointcut"/>
  </aop:config>

  <tx:advice id="txAdvice" transaction-manager="txManager">
        <tx:attributes>
            <tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED"/>
            <tx:method name="*"/>
        </tx:attributes>
  </tx:advice>

  <bean id="personService" class="cn.comp.service.impl.PersonServiceBean">
    <property name="dataSource" ref="dataSource"/>
  </bean>
</beans>

提供POJO的java类:Person.java
public class Person {
  private Integer id;
  private String name;
  
  public Person(){}
  
  public Person(String name) {
    this.name = name;
  }
  public Integer getId() {
    return id;
  }
  public void setId(Integer id) {
    this.id = id;
  }
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
}

提供对Person的操作接口:PersonService.java
public interface PersonService {
  
  public void save(Person person);
  
  public void update(Person person);
  
  public Person getPerson(Integer personid);
  
  public List<Person> getPersons();
  
  public void delete(Integer personid) throws Exception;
}

提供对接口的实现类:PersonServiceBean.java
public class PersonServiceBean implements PersonService {
  private JdbcTemplate jdbcTemplate;
  
  public void setDataSource(DataSource dataSource) {
    this.jdbcTemplate = new JdbcTemplate(dataSource);
  }
  
  public void delete(Integer personid) throws Exception{
    jdbcTemplate.update("delete from person where id=?"new Object[]{personid},
        new int[]{java.sql.Types.INTEGER});
  }
  
  public Person getPerson(Integer personid) {    
    return (Person)jdbcTemplate.queryForObject("select * from person where id=?"new Object[]{personid},
        new int[]{java.sql.Types.INTEGER}, new PersonRowMapper());
  }

  @SuppressWarnings("unchecked")
  public List<Person> getPersons() {
    return (List<Person>)jdbcTemplate.query("select * from person"new PersonRowMapper());
  }

  public void save(Person person) {
    jdbcTemplate.update("insert into person(name) values(?)"new Object[]{person.getName()},
        new int[]{java.sql.Types.VARCHAR});
  }

  public void update(Person person) {
    jdbcTemplate.update("update person set name=? where id=?"new Object[]{person.getName(), person.getId()},
        new int[]{java.sql.Types.VARCHAR, java.sql.Types.INTEGER});
  }
}

提供在查询对象时,记录的映射回调类:PersonRowMapper.java
public class PersonRowMapper implements RowMapper {

  public Object mapRow(ResultSet rs, int index) throws SQLException {
    Person person = new Person(rs.getString("name"));
    person.setId(rs.getInt("id"));
    return person;
  }
}

【注意】:由于dbcp的jar包对common-pool和commons-collections的jar包有依赖,所有需要把他们一起引入到工程中。【 commons-dbcp-1.2.1.jar, commons-pool-1.2.jar, commons-collections-3.1.jar】, 参考文档《JDBC高级部分》:http://tianya23.blog.51cto.com/1081650/270849

2、JdbcTemplate事务
事务的操作首先要通过配置文件,取得spring的支持, 再在java程序中显示的使用@Transactional注解来使用事务操作。

在xml配置文件中增加对事务的支持:
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
            <property name="dataSource" ref="dataSource"/>
        </bean>
  <tx:annotation-driven transaction-manager="txManager"/>
  
  <bean id="personService" class="cn.comp.service.impl.PersonServiceBean">
    <property name="dataSource" ref="dataSource"/>
  </bean>

在java程序中显示的指明是否需要事务,当出现运行期异常Exception或一般的异常Exception是否需要回滚
@Transactional
public class PersonServiceBean implements PersonService {
  private JdbcTemplate jdbcTemplate;
  
  public void setDataSource(DataSource dataSource) {
    this.jdbcTemplate = new JdbcTemplate(dataSource);
  }
  // unchecked ,
  // checked
  @Transactional(noRollbackFor=RuntimeException.class)
  public void delete(Integer personid) throws Exception{
    jdbcTemplate.update("delete from person where id=?"new Object[]{personid},
        new int[]{java.sql.Types.INTEGER});
    throw new RuntimeException("运行期例外");
  }
  @Transactional(propagation=Propagation.NOT_SUPPORTED)
  public Person getPerson(Integer personid) {    
    return (Person)jdbcTemplate.queryForObject("select * from person where id=?"new Object[]{personid},
        new int[]{java.sql.Types.INTEGER}, new PersonRowMapper());
  }

  @Transactional(propagation=Propagation.NOT_SUPPORTED)
  @SuppressWarnings("unchecked")
  public List<Person> getPersons() {
    return (List<Person>)jdbcTemplate.query("select * from person"new PersonRowMapper());
  }

  public void save(Person person) {
    jdbcTemplate.update("insert into person(name) values(?)"new Object[]{person.getName()},
        new int[]{java.sql.Types.VARCHAR});
  }

  public void update(Person person) {
    jdbcTemplate.update("update person set name=? where id=?"new Object[]{person.getName(), person.getId()},
        new int[]{java.sql.Types.VARCHAR, java.sql.Types.INTEGER});
  }
 @Transactional(rollbackFor = Exception.class)
//出现异常Exception时回滚该方法事务
    public void insertUser() throws Exception {
        jdbcTemplate.update("insert into user (name) values ('01');");
        jdbcTemplate.update("update user set name=a where id=0;");
}
}
在默认情况下,Spring会对RuntimeException异常进行回滚操作,而对Exception异常不进行回滚。可以显示的什么什么样的异常需要回滚,什么样的异常不需要回滚, 通过 @Transactional(noRollbackFor=RuntimeException.class)设置要求运行时异常不回滚 或者通过RollbackFor=Exception.class来要求需要捕获的异常回滚。

【注意】Spring对数据库的操作提供了强大的功能,比如RowMapper接口封装数据库字段与Java属性的映射、查询返回List的函数等,但是里面还要写一堆SQL语句还是比较烦人的,在这部分建议使用ibatis或hibernate来代替, 不知道Spring后期的版本会不会把这个整合到里面。

 

后台抛出异常,查看数据库,记录插入进去了,说明我们配置事务不对RuntimeException回滚生效了.
既然可以配置不对RuntimeException回滚,那我们也可以配置对Exception进行回滚,主要用到的是
@Transactional(rollbackFor=Exception.class)
对于一些查询工作,因为不需要配置事务支持,我们配置事务的传播属性:
@Transactional(propagation=Propagation.NOT_SUPPORTED,readOnly=true)
readOnly=true表示事务中不允许存在更新操作.
关于事务的传播属性有下面几种配置:
REQUIRED:业务方法需要在一个事务中运行,如果方法运行时,已经处于一个事务中,那么加入到该事务中,否则自己创建一个新的事务.(Spring默认的事务传播属性)
NOT_SUPPORTED:声明方法不需要事务,如果方法没有关联到一个事务,容器不会为它开启事务,如果方法在一个事务中被调用,该事务被挂起,在方法调用结束后,原先的事务便会恢复执行
REQUIRESNEW:不管是否存在事务,业务方法总会为自己发起一个新的事务,如果方法运行时已经存在一个事务,则该事务会被挂起,新的事务被创建,知道方法执行结束,新事务才结束,原先的事务才恢复执行.
MANDATORY:指定业务方法只能在一个已经存在的事务中执行,业务方法不能自己发起事务,如果业务方法没有在事务的环境下调用,则容器会抛出异常
SUPPORTS:如果业务方法在事务中被调用,则成为事务中的一部分,如果没有在事务中调用,则在没有事务的环境下执行
NEVER:指定业务方法绝对不能在事务范围内运行,否则会抛出异常.
NESTED:如果业务方法运行时已经存在一个事务,则新建一个嵌套的事务,该事务可以有多个回滚点,如果没有事务,则按REQUIRED属性执行. 注意:业务方法内部事务的回滚不会对外部事务造成影响,但是外部事务的回滚会影响内部事务
关于使用注解的方式来配置事务就到这里,
我们还可以使用另外一种方式实现事务的管理,通过xml文件的配置,主要通过AOP技术实现:

 

 

0
3
分享到:
评论

相关推荐

    Spring--JdbcTemplate.pdf

    JdbcTemplate是Spring中常用的持久层技术之一,它支持Spring的声明式事务管理,能够与Spring的其他框架组件无缝整合。 描述中提到的"一图详解(脑图)"意味着文档中可能包含了一个清晰的图示,这个图示将详细展示...

    Spring-JdbcTemplate

    ### Spring-JdbcTemplate详解 #### 一、Spring框架与JdbcTemplate概览 Spring框架是一个开源的轻量级Java应用开发框架,旨在简化企业级应用的开发。其核心特性包括依赖注入(Dependency Injection,DI)、面向切面...

    图书管理系统( Spring+Spring MVC+JdbcTemplate).rar

    《图书管理系统:基于Spring+SpringMVC+JdbcTemplate的实现详解》 图书管理系统是信息化建设中的重要组成部分,它能够高效地管理和维护图书馆的资源,提供便捷的服务给读者和管理员。本系统采用主流的Spring框架、...

    Spring JdbcTemplate方法详解

    JdbcTemplate主要提供以下五类方法;JdbcTemplate类支持的回调类;并附例子

    Spring笔记之整合JdbcTemplate.doc

    ### Spring与JdbcTemplate整合详解 #### 一、JdbcTemplate简介及使用 **1.1 JdbcTemplate概述** JdbcTemplate是Spring框架中的一个重要组成部分,它提供了一种简单而强大的方式来访问数据库,通过封装JDBC API,...

    Spring JdbcTemplate整合使用方法及原理详解

    Spring JdbcTemplate 整合使用方法及原理详解 Spring JdbcTemplate 是 Spring 框架中的一部分,提供了一个简单的方式来与数据库进行交互。它可以帮助开发者快速地执行数据库操作,无需关心底层的 JDBC 详细实现。...

    详解在spring中使用JdbcTemplate操作数据库的几种方式

    在Spring框架中,JdbcTemplate是用于简化数据库操作的工具,它提供了一种声明式的方式处理SQL,降低了数据库访问的复杂性。本篇文章将详细介绍如何在Spring中使用JdbcTemplate进行数据库操作,包括设置依赖、创建...

    基于Spring MVC, Spring, JdbcTemplate的学生信息管理系统.zip

    《基于Spring MVC、Spring、JdbcTemplate的学生信息管理系统详解》 在信息技术高度发展的今天,信息管理系统已经成为各类组织管理和处理数据的核心工具。本项目“基于Spring MVC、Spring、JdbcTemplate的学生信息...

    Struts 2+Hibernate+Spring整合开发技术详解随书源码18

    在"Struts 2+Hibernate+Spring整合开发技术详解"中,作者蒲子明深入讲解了如何将这三个框架有效地结合在一起。第18章可能涉及的是项目整合的高级话题或者特定场景的应用,由于文件名只给出了“第18章”,具体章节...

    5分钟快速学会spring boot整合JdbcTemplate的方法

    【Spring Boot 整合 JdbcTemplate 知识点详解】 一、Spring Boot 框架简介 Spring Boot 是由 Pivotal 团队开发的 Java 应用程序框架,旨在简化新 Spring 应用的初始化和开发流程。它通过提供默认配置来消除冗余的...

    spring_JdbcTemplete使用详解

    ### Spring JDBC 模板类(JdbcTemplate)使用详解 #### 一、Spring JDBC 概述 Spring 提供了一个强大的模板类 `JdbcTemplate` 来简化 JDBC 操作。通过使用 `JdbcTemplate`,开发者能够减少大量的样板代码,提高...

    spring3.rar

    《Spring 3技术详解》 在Java开发领域,Spring框架无疑是最重要的组件之一,尤其是在Spring 3版本中,它带来了许多重大的改进和增强,使得它成为企业级应用开发的首选框架。Spring 3的出现进一步巩固了其在轻量级...

    spring框架技术详解及使用指导(电子书PDF)

    5. **模版**:Spring提供了诸如JdbcTemplate、JmsTemplate等模板类,简化了数据库和消息队列的操作。 6. **Spring Boot**:近年来,Spring Boot成为了快速开发Spring应用的首选,它通过默认配置、自动配置和起步...

    详解spring boot中使用JdbcTemplate

    在Spring Boot中,JdbcTemplate是Spring框架提供的一个用于简化JDBC操作的工具类,它为开发者提供了更加方便、健壮的数据库访问接口。通过使用JdbcTemplate,我们可以避免编写大量重复的JDBC模板代码,比如打开和...

    spring 所有功能详解

    ### Spring七大功能详解 #### 一、核心容器(Spring Core) **核心容器**提供了Spring框架的基础功能,通过Bean的方式组织和管理Java应用中的各种组件及其之间的关系。在Spring框架中,Bean Factory扮演着核心角色...

    spring接管jdbc详解

    Spring 接管 JDBC 详解 Spring 框架中提供了对 JDBC 的支持,使得开发者可以更方便地访问数据库。在本文中,我们将详细介绍 Spring 是如何接管 JDBC 的,并提供一个简单的示例来展示如何使用 Spring 来访问数据库。...

    springMVC+JDBCTemplate在线装机系统

    《SpringMVC与JDBCTemplate结合实现在线装机系统详解》 在现代软件开发中,构建一个在线装机系统可以极大地提升效率,减少人为错误。本系统利用SpringMVC作为控制层框架,配合JDBCTemplate进行数据访问,旨在提供...

Global site tag (gtag.js) - Google Analytics