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"/>
    <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>

<aop:config>
        <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});
  }
}

在默认情况下,Spring会对RuntimeException异常进行回滚操作,而对Exception异常不进行回滚。可以显示的什么什么样的异常需要回滚,什么样的异常不需要回滚, 通过 @Transactional(noRollbackFor=RuntimeException.class)设置要求运行时异常不回滚 或者通过RollbackFor=Exception.class来要求需要捕获的异常回滚。

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

JdbcTemplate详解的更多相关文章

  1. Spring JdbcTemplate详解

    为了使 JDBC 更加易于使用,Spring 在 JDBCAPI 上定义了一个抽象层, 以此建立一个JDBC存取框架. 作为 SpringJDBC 框架的核心, JDBC 模板的设计目的是为不同类型的 ...

  2. Spring JdbcTemplate详解(转)

    原文地址:http://www.cnblogs.com/caoyc/p/5630622.html   尊重原创,请访问原文地址 JdbcTemplate简介 Spring对数据库的操作在jdbc上面做 ...

  3. Spring JdbcTemplate详解及项目中的运用

    1.Spring对不同的持久化支持: Spring为各种支持的持久化技术,都提供了简单操作的模板和回调 ORM持久化技术 模板类 JDBC org.springframework.jdbc.core. ...

  4. 【转载】Spring JdbcTemplate详解

    JdbcTemplate简介 Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中. JdbcTempla ...

  5. Spring JdbcTemplate详解(9)

    JdbcTemplate简介 Spring对数据库的操作在jdbc上面做了深层次的封装,使用spring的注入功能,可以把DataSource注册到JdbcTemplate之中. JdbcTempla ...

  6. (转)Spring JdbcTemplate 方法详解

    Spring JdbcTemplate方法详解 文章来源:http://blog.csdn.net/dyllove98/article/details/7772463 JdbcTemplate主要提供 ...

  7. Spring4 JDBC详解

    Spring4 JDBC详解 在之前的Spring4 IOC详解 的文章中,并没有介绍使用外部属性的知识点.现在利用配置c3p0连接池的契机来一起学习.本章内容主要有两个部分:配置c3p0(重点)和 ...

  8. Java编程配置思路详解

    Java编程配置思路详解 SpringBoot虽然提供了很多优秀的starter帮助我们快速开发,可实际生产环境的特殊性,我们依然需要对默认整合配置做自定义操作,提高程序的可控性,虽然你配的不一定比官 ...

  9. spring4配置文件详解

    转自: spring4配置文件详解 一.配置数据源 基本的加载properties配置文件 <context:property-placeholder location="classp ...

随机推荐

  1. 岭回归和lasso回归(转)

    回归和分类是机器学习算法所要解决的两个主要问题.分类大家都知道,模型的输出值是离散值,对应着相应的类别,通常的简单分类问题模型输出值是二值的,也就是二分类问题.但是回归就稍微复杂一些,回归模型的输出值 ...

  2. linux 常用find

    磁盘查找文件内容: find .|xargs grep x find . -exec grep x{} \; 磁盘查找文件名称: find / -name "httpd.conf" ...

  3. select 1 与 select null (转)

    1.Select 1 在这里我主要讨论的有以下几个select 语句: table表是一个数据表,假设表的行数为10行,以下同. 1:select  1 from table 2:select cou ...

  4. Asp.net实现同页面内多图片自动上传并带预览显示

    FileUpload控件实现单按钮图片自动上传并带预览显示 1.实现原理: 此方法适合针对有后台生成的图片相关内容,例如购物网站商品展示页面中的封面图片,图片的数量由后台访问数据库,并加载到页面.这种 ...

  5. Monkey原理初步和改良优化--Android自动化测试学习历程

    章节:自动化基础篇——Monkey原理初步和改良优化(第三讲) 主要讲解内容与笔记: 一.理论知识: 直接看文档,来了解monkey的概念.基本原理,以及如何使用. First,what is And ...

  6. 【原创】java删除未匹配的文件夹FileFileFilter,FileUtils,删除目录名字不是某个名字的所有文件夹及其子文件夹

    闲着无聊,写了个小程序. 需求: 举例: 比如我的E盘有一个test的目录,test的结构如下: 要求除了包含hello的目录不删除以外,其他的所有文件夹都要删除. 代码如下: package com ...

  7. OC -网络请求 - NSURLConnection - POST

    #import "ViewController.h" @interface ViewController () @end @implementation ViewControlle ...

  8. FormValidator表单验证

    所需的库文件 红色框内是所需要的JavaScript库文件. <%@ page language="java" contentType="text/html; ch ...

  9. No handlers could be found for logger “apscheduler.executors.default”?

    Call logging.basicConfig() before instantiating the scheduler. That lets you see what the real probl ...

  10. Santa Claus and a Place in a Class

    /* Santa Claus is the first who came to the Christmas Olympiad, and he is going to be the first to t ...